Typ Deines phpBB Forums: Standard phpBB3
MODs installiert: Nein
Dein Wissensstand: Grundwissen
Link zu Deinem Forum: http://www.nexgo.eu.tt/forum/
PHP Version: 5.2.6-1+lenny4
MySQL Version: Latest
Was hast Du gemacht, bevor das Problem aufgetreten ist?
Normale Board3 Installation, ich habe Alle Datein hochgeladen und alles Angepasst, wies in der Anleitung steht.
Was hast Du bereits versucht um das Problem zu lösen?
Zeile aufgesucht, die Betroffene Date gelöscht, original hochgeladen und Code wieder eingefügt (Siege beschreibung)
Fehlerbeschreibung und Nachricht
Ich bekomme beim Aufruf des Forums folgendes:
Fatal error: Call to undefined function sql_table_exists() in /var/www/forum/includes/functions.php on line 4070
Daraufhin hab ich mir die Datei (funtions.php) mal angesehen, und die zeile 4070 mal rausgesucht:
Code: Select all
if(sql_table_exists(PORTAL_CONFIG_TABLE) == true)
{
$portal_config = obtain_portal_config();
}
Code: Select all
Find
Tip: This may be a partial find and not the whole line.
Code:Select all
// The following assigns all _common_ variables that may be used at any point in a template.
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code:Select all
$user->add_lang(array('mods/lang_portal', 'mods/additional_blocks'));
if (!function_exists('obtain_portal_config'))
{
include($phpbb_root_path . 'portal/includes/functions.' . $phpEx);
}
if(sql_table_exists(PORTAL_CONFIG_TABLE) == true)
{
$portal_config = obtain_portal_config();
}
Code: Select all
$user->add_lang(array('mods/lang_portal', 'mods/additional_blocks'));
if (!function_exists('obtain_portal_config'))
{
include($phpbb_root_path . 'portal/includes/functions.' . $phpEx);
}
if(sql_table_exists(PORTAL_CONFIG_TABLE) == true)
{
$portal_config = obtain_portal_config();
}
// The following assigns all _common_ variables that may be used at any point in a template.
$template->assign_vars(array(
'SITENAME' => $config['sitename'],
'SITE_DESCRIPTION' => $config['site_desc'],
'PAGE_TITLE' => $page_title,
'SCRIPT_NAME' => str_replace('.' . $phpEx, '', $user->page['page_name']),
'LAST_VISIT_DATE' => sprintf($user->lang['YOU_LAST_VISIT'], $s_last_visit),
[...]
MfG[/i]