Critical Error 145 for PHPBB

A

Anonymous

Guest
Hi,

This is the error i am getting. Previously, i got another error regarding php_users. I repaired that table already. Now, this error comes out. I tried to repair this table, but nothing happens. anyone know a solution?


SQL Error : 1016 Can't open file: 'phpbb_sessions.MYI'. (errno: 145)

thanks.
 
Don't know why it still doesn't work. I have dropped the table, and recreated it with this code, but the problem still presist... do i have to reinstall phpbb again?


CREATE TABLE phpbb_sessions (
session_id char(32) DEFAULT '' NOT NULL,
session_user_id mediumint(8) DEFAULT '0' NOT NULL,
session_start int(11) DEFAULT '0' NOT NULL,
session_time int(11) DEFAULT '0' NOT NULL,
session_ip char(8) DEFAULT '0' NOT NULL,
session_page int(11) DEFAULT '0' NOT NULL,
session_logged_in tinyint(1) DEFAULT '0' NOT NULL,
PRIMARY KEY (session_id),
KEY session_user_id (session_user_id),
KEY session_id_ip_user_id (session_id, session_ip, session_user_id)
);
 
ylkien said:
Don't know why it still doesn't work. I have dropped the table, and recreated it with this code, but the problem still presist... do i have to reinstall phpbb again?

Possibly. If I were you I'd ask this question over at the phpBB support forums in case someone else there has encountered it.
 
Back
Top