Sorry, but the tableprefix is still not being accepted.
regards
Delazar
Quote:
Warning: Table 'vbtest.forum' doesn't exist in /var/www/xxx/htdocs/test/ez_sql_mysql.php on line 204
Warning: Invalid argument supplied for foreach() in /var/www/xxx/htdocs/test/tpup.php on line 10
Done.
Now you MUST rebuild all languages in AdminCP > Languages & Phrases > Language Manager > Rebuild All Languages.
|
my db.php
PHP Code:
<?php
/**********************************************************************
* ezSQL initialisation for mySQL
*/
// Include ezSQL core
include_once "ez_sql_core.php";
// Include ezSQL database specific component
include_once "ez_sql_mysql.php";
// Initialise database object and establish a connection
// at the same time - db_user / db_password / db_name / db_host
$db = new ezSQL_mysql('my_name','my_password','my_db-name','localhost');
// If you have a database table prefix, please enter it here:
$table_prefix = 'fantasy';
?>