Wanneer ontstond het probleem? nadat ik de files heb geupload
Adres van je forum: http://www.about-us.nl/joa
Geïnstalleerde mods: Gender mod, yesterday today mod, simple quick reply mod, ip admin only mod, birthday mod, ez portal, statestieken mod, topics aanmaak in profiel, topic posters op index, gender on index mod, report post mod, cu2 mod, gastenboek mod, favoriete topic mod
Huidige template: SwiftBlue
phpBB versie: 2.0.16
Host: http://www.phpbbhost.nl
Heb je onlangs een mod of stijl geïnstalleerd? heb wel users of the day mod eruit gehaald
Heb je gezocht naar een antwoord? ja
Dit is de error:
Code: Selecteer alles
Fatal error: Call to a member function on a non-object in /usr/home/about/public_html/joa/includes/sessions.php on line 69
Code: Selecteer alles
//
if (!preg_match('/^[A-Za-z0-9]*$/', $session_id))
{
$session_id = '';
}
$page_id = (int) $page_id;
$last_visit = 0;
$current_time = time();
$expiry_time = $current_time - $board_config['session_length'];
//
// Try and pull the last time stored in a cookie, if it exists
//
$sql = "SELECT *
FROM " . USERS_TABLE . "
WHERE user_id = $user_id";
if ( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, 'Could not obtain lastvisit data from user table', '', __LINE__, __FILE__, $sql);
}
$userdata = $db->sql_fetchrow($result);
if ( $user_id != ANONYMOUS )
{
$auto_login_key = $userdata['user_password'];
if ( $auto_create )
{