Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

please help!


gobuybiz

Recommended Posts

Posted

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?

Posted
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

Posted

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

Posted
thank you very much Mr.phpguy, my site work now.

have a nice day.

 

No problem.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...