Hi All,
I am trying to configure MUCK on my website ( hosted on bluehost ) so that it connects to the jabber server ( jabber.org ) and I can make a chatroom using services of jabber.org with MUCKL as my frontend.
But i guess there is some issue as chat is not loading and nothing happens , my site url is
Here is my config.js
/
/* BACKENDTYPE - the type of backend to be used
*
* Either 'polling' for HTTP Polling
* Or 'binding' for HTTP Binding
*/
var BACKENDTYPE = 'polling';
/* HTTPBASE - base URI to contact HTTP Polling service
*
* This must be local to your web server which serves MUCkl. If
* HTTP Polling service is not local to your web server you have to
* define a rewrite rule which matches this address and redirects to
* the real HTTP Polling URI.
*
* [refers to step 2 of installation instructions]
*/
//var HTTPBASE = "/tomcat/JHB/";
var HTTPBASE = "/http-poll/";
/* Login Data - the user to login
*
* [refers to step 3 of installation instructions]
*/
var XMPPDOMAIN = "jabber.org"; // domain name of jabber service to be used
var AUTHTYPE = 'jabber.org';
//var AUTHHOST = "anon.localhost"; // hostname of sasl anonymous service
var MUCKLJID = "sagarwal1981"; // username
var MUCKLPASS = "abc123"; // password
/* ROOMS
*
* Which chat room to join
*
* [refers to step 4 of installation instructions]
*/
var ROOMS =
[
{
name:'saurabh',
description:'some room for testing',
server:'conference.jabber.org'//,
// logo: 'http://localhost/spongebob.png'
}
];
/* CONFERENCENOHIST
* whether to not show room history upon joining
*/
var CONFERENCENOHIST = false;
/* DEFAULT_LOCK_MINS
* time a user is being locked out if not otherwise indicated by kick reason
*/
var DEFAULT_LOCK_MINS = 1;
/* MAX_LOCK_MINS
* maximum allowed number of minutes a user may be locked out by kick reason
* on ban this is used as default value
*/
var MAX_LOCK_MINS = 60;
/* ***
* some internally used vars - don't change except you really know
* what you are doing
* ***
*/
var timerval = 5000; // poll frequency in msec
var stylesheet = "muckl.css";
var THEMESDIR = "themes";
/* debugging options */
var DEBUG = true; // turn debugging on
var DEBUG_LVL = 4; // debug-level 0..4 (4 = very noisy)
/* ** Don't touch ** */
var VERSION = "0.4.4";
Please help me.
Thanks