gobuybiz Posted January 25, 2006 Posted January 25, 2006 I got following error message after opent the root page. "1016 - Can't open file: 'whos_online.MYI'. (errno: 145) delete from whos_online where time_last_click < '1138203393' [TEP STOP] |" anybody know how to sovle this problem pls?
Guest Posted January 25, 2006 Posted January 25, 2006 I got following error message after opent the root page. "1016 - Can't open file: 'whos_online.MYI'. (errno: 145) delete from whos_online where time_last_click < '1138203393' [TEP STOP] |" anybody know how to sovle this problem pls? That file is corrupted. You have to do this command at your phpmyadmin sql window drop table `cre`.`x` then click "go" button after that type this command again at your sql query window CREATE TABLE `whos_online` ( `customer_id` int(11) default NULL, `full_name` varchar(64) NOT NULL default '', `session_id` varchar(128) NOT NULL default '', `ip_address` varchar(15) NOT NULL default '', `time_entry` varchar(14) NOT NULL default '', `time_last_click` varchar(14) NOT NULL default '', `last_page_url` varchar(64) NOT NULL default '', `http_referer` varchar(255) NOT NULL default '' ); then click "go" button and you're done. Enjoy
gobuybiz Posted January 25, 2006 Author Posted January 25, 2006 thank you very much Mr.phpguy, my site work now. have a nice day. That file is corrupted. You have to do this command at your phpmyadmin sql window drop table `cre`.`x` then click "go" button after that type this command again at your sql query window CREATE TABLE `whos_online` ( `customer_id` int(11) default NULL, `full_name` varchar(64) NOT NULL default '', `session_id` varchar(128) NOT NULL default '', `ip_address` varchar(15) NOT NULL default '', `time_entry` varchar(14) NOT NULL default '', `time_last_click` varchar(14) NOT NULL default '', `last_page_url` varchar(64) NOT NULL default '', `http_referer` varchar(255) NOT NULL default '' ); then click "go" button and you're done. Enjoy
Guest Posted January 25, 2006 Posted January 25, 2006 thank you very much Mr.phpguy, my site work now.have a nice day. No problem.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.