I didn't properly fix this problem... what's going on is you're using php mysql connections instead of using the Joomla $data_base_ _object_. I had to edit your mod_moolets_online.inc.php from
line 65:
| Code: : |
global $mosConfig_user, $mosConfig_db, $mosConfig_host, $mosConfig_password, $mosConfig_dbprefix;
|
to:
| Code: : |
global $mosConfig_user, $mosConfig_db, $mosConfig_host, $mosConfig_password, $mosConfig_dbprefix;
$mosConfig_user = "user";
$mosConfig_db = "database name";
$mosConfig_host = "localhost";
$mosConfig_password = "password";
$mosConfig_dbprefix = "jos_";
|
Post edited by: sstark, at: 2007/08/24 00:51