primedomain wrote: http://www.phpbb.com/phpBB/viewtopic.php?t=13308
primedomain wrote: As the error message is "The table 'phpbb_sessions' is full" , empty the table manually and/or install a fix (backup first!):
http://www.phpbb.com/phpBB/viewtopic.php?t=39397
Code: Select all
message_die(CRITICAL_ERROR, 'Error creating new session', '', __LINE__, __FILE__, $sql);
Code: Select all
$error = TRUE;
if (SQL_LAYER == "mysql" || SQL_LAYER == "mysql4")
.... see details in the other topic....
message_die(CRITICAL_ERROR, "Error creating new session", "", __LINE__, __FILE__, $sql);
}
yes (or monitor the session table "manually" with your mySQL control panel, e.g. www.phpmyadmin.net (might be pre-installed). Please read the whole other topic, it explains pretty well why this happens.rfournier13 wrote: Would you recommend updating it anyway?