questo è il messaggio di errore che ottengo
Codice:
phpBB : Critical Error
Error creating new session
DEBUG MODE
SQL Error : 1195 Table 'phpbb_sessions' is marked as crashed and last (automatic?) repair failed
INSERT INTO phpbb_sessions (session_id, session_user_id, session_start, session_time, session_ip, session_page, session_logged_in, session_admin) VALUES ('37298af49d21cf79ed50a8db6c302852', 2, 1184144002, 1184144002, '571e93a8', 0, 1, 0)
Line : 187
File : sessions.php
Il problema sembra stia nella tabella phpbb_sessions, ma come si fa a "ripararla" o a sistemare il problema?
Comunque sì, sono sicurA (:P) che la cosa sia avvenuta in 1/2 giorni al massimo.
EDIT: Le righe attorno alla 187 del file session.php:
Codice:
$sql = "INSERT INTO " . SESSIONS_TABLE . "
(session_id, session_user_id, session_start, session_time, session_ip, session_page, session_logged_in, session_admin)
VALUES ('$session_id', $user_id, $current_time, $current_time, '$user_ip', $page_id, $login, $admin)";
if ( !$db->sql_query($sql) )
{
message_die(CRITICAL_ERROR, 'Error creating new session', '', __LINE__, __FILE__, $sql);
}
}