3
Quote:
Dave_L wrote:
Use this query to recreate the table:
CREATE TABLE xoops_session (
sess_id varchar(32) NOT NULL default '',
sess_updated int(10) unsigned NOT NULL default '0',
sess_ip varchar(15) NOT NULL default '',
sess_data mediumblob NOT NULL,
PRIMARY KEY (sess_id),
KEY updated (sess_updated)
) TYPE=MyISAM;
I tried to recreate the table, but there is an error message like this:
======================================================
#3 - Error writing file './tpedu/xoops_session.frm' (Errcode: 28)
======================================================
Please help! Many Thanks!