EasySite probleem
Geplaatst: 28 nov 2004, 18:28
Als ik de eerste file common.php bewerk krijg ik de volgende fout.
phpBB : Critical Error
Could not query site config information
DEBUG MODE
SQL Error : 1146 Table 'emerge_mario.SITE_CONFIG_TABLE' doesn't exist
SELECT * FROM SITE_CONFIG_TABLE
Line : 229
File : /home/emerge/public_html/phpBB2/common.php
Dit moest ik wijzigen in de file common.php
phpBB : Critical Error
Could not query site config information
DEBUG MODE
SQL Error : 1146 Table 'emerge_mario.SITE_CONFIG_TABLE' doesn't exist
SELECT * FROM SITE_CONFIG_TABLE
Line : 229
File : /home/emerge/public_html/phpBB2/common.php
Dit moest ik wijzigen in de file common.php
Mvg,#
#-----[ OPEN ]------------------------------------------
#
common.php
#
#-----[ FIND ]------------------------------------------
#
$board_config = array();
#
#-----[ AFTER, ADD ]------------------------------------------
#
// EasySite MOD
$site_config = array();
#
#-----[ FIND ]------------------------------------------
#
if (file_exists('install') || file_exists('contrib'))
#
#-----[ BEFORE, ADD ]------------------------------------------
#
// EasySite MOD
$sql = "SELECT *
FROM " . SITE_CONFIG_TABLE;
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query site config information", "", __LINE__, __FILE__, $sql);
}
while ( $row = $db->sql_fetchrow($result) )
{
$site_config[$row['config_name']] = $row['config_value'];
}