|
Scoop likes to corrupt the sessions table.
|
|
By Vladinator
from the Ugh. department, Section Site News Posted on Sun Sep 14, 2003 at 08:48:03 AM GMT
|
 |
If you see this:
[error] DBD::mysql::st execute failed: Can't open file: 'sessions.MYD'. (errno: 145)
|

You must do this:
ssh into the server
mysql -u <mysqlusername> -p <your password> <your_db>
mysql> DROP TABLE sessions;
Then copy this into the prompt:
CREATE TABLE sessions (
last_accessed timestamp(14) NOT NULL,
id varchar(32) NOT NULL default '',
length int(11) default NULL,
a_session text,
PRIMARY KEY (id)
);
and 'exit'.
|
|
Login
|
|
|
|