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'.
<sarcasm> Thank you, Rustard, for such wonderful software. This is SO much better than slash.</sarcasm>