I've posted this on Vbulletin.org with no response. Maybe someone here can help me. While this is for BBmessenger, I installed it fine....expect for this undefined variable.
Notice: Undefined variable: tableprefix in /home/-----/public_html/bbmessenger/sources/boardmodule/vb3.inc.php on line 35
Here is a copy and paste from the vb3.inc.php from that section in question:
// Load the database settings into $VAR;
function boardmodule_import_db_settings()
{
require_once ("../includes/config.php");
global $VAR;
$VAR["db_host"] = $servername;
$VAR["db_username"] = $dbusername;
$VAR["db_password"] = $dbpassword;
$VAR["db_name"] = $dbname;
$VAR["db_tblprefix"] = $tableprefix;
$VAR["db_persistant"] = $usepconnect;
^^ Any ideas whats how to fix this?! My VB3 and php are up to date. And my forums are installed in the root and there is no prefix. I checked my config file and thats set right too. As well everything is chmoded correctly. Any help would be greatly appreciated. Thanks!
Notice: Undefined variable: tableprefix in /home/-----/public_html/bbmessenger/sources/boardmodule/vb3.inc.php on line 35
Here is a copy and paste from the vb3.inc.php from that section in question:
// Load the database settings into $VAR;
function boardmodule_import_db_settings()
{
require_once ("../includes/config.php");
global $VAR;
$VAR["db_host"] = $servername;
$VAR["db_username"] = $dbusername;
$VAR["db_password"] = $dbpassword;
$VAR["db_name"] = $dbname;
$VAR["db_tblprefix"] = $tableprefix;
$VAR["db_persistant"] = $usepconnect;
^^ Any ideas whats how to fix this?! My VB3 and php are up to date. And my forums are installed in the root and there is no prefix. I checked my config file and thats set right too. As well everything is chmoded correctly. Any help would be greatly appreciated. Thanks!
Comment