Is that AJAX Chat by any chance? According to the instructions here:
http://sourceforge.net/apps/mediawik...ase_Connection
if you want to use an existing database you should comment out a line:
Quote:
If you prefer to use another database for the chat, you'll need to comment out a line in lib/class/CustomAJAXChat.php, e.g. for the phpBB3 integration version, you'll have to comment out the following:
// Use the existing phpBB database connection:
$this->setConfig('dbConnection', 'link', $db->db_connect_id);
After doing this you can set the database configuration settings alike the standalone version.
|
and then follow the instructions for a standalone version by setting:
Code:
$config['dbConnection']['host'] = 'your_database_hostname';
$config['dbConnection']['user'] = 'your_database_username';
$config['dbConnection']['pass'] = 'your_database_password';
$config['dbConnection']['name'] = 'your_database_name';
which I think you could copy the needed info from the vBulletin config.php file.
Hope this helps.