Hello, i'm using openfire 3.8.2 for the very first time.
OS: Ubuntu server 12.04 LTS
openfire installed from tgz
apache + mod_proxy + mod_http_proxy + mod_rewrite
following installguide:
http://www.igniterealtime.org/builds/openfire/docs/latest/documentation/install- guide.html
Server is reachable on:
http://localhost:9090
I've added an admin account and 2 users
I've done conf using :
https://github.com/candy-chat/candy/wiki/Installing-a-Jabber-server
Created a Room
Added a group ChatEnable ClientControl Plugin
Added a group Chat bookmark that allow access autojoin to all users...
Now browsing http://localhost:7070
I obtain a white page with this content
Openfire HTTP Binding Service
Trying to bind from CandyChat .htaccess
AddDefaultCharset UTF-8
Options +MultiViews
RewriteEngine On
RewriteRule http-bind/ http://localhost:7070/ [P]
with html:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script> | |
<script type="text/javascript" src="../libs/libs.min.js?109"></script> | |
<script type="text/javascript" src="../candy.min.js?109"></script> | |
<script type="text/javascript"> | |
$(document).ready(function() { | |
Candy.init('http-bind/', { | |
core: { debug: false, autojoin: true }, | |
view: { language: 'fr', resources: '../res/' } | |
}); |
Candy.Core.connect(); | |
}); | |
</script> |
returns only Openfire HTTP Binding Service into http response
Please help me find what do i forget to obtain the chat room ?