|
|
Registered User Currently Offline
|
Posts: 10
Join Date: Dec 2009
|
I'm using SEO-Board 1.1.0
All of a sudden, after having used SEO-Board for two years, it gives a fatal error when you already have a cookie.
The fatal error is produced by this part of the index.php file (in the root of the forum):
Code:
if (isset($_COOKIE[$cookiename]))
{
list($user_id, $user_pass_sha1) = @unserialize(stripslashes($_COOKIE[$cookiename]));
$user_id = addslashes($user_id);
$user_pass_sha1 = addslashes($user_pass_sha1);
if (!is_numeric($user_id))
die($lang['fatal_error']);
By adding a test line of code, I can see that there is a cookie and it produces a long string with characters, but the @unserialize produces nothing (both $user_id and $user_pass_sha1 are empty).
Any suggestions?
Regards,
Roel
|