Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

errer message


omps

Recommended Posts

Posted

i get this message when someone clicks into my site

 

1016 - Can't open file: 'whos_online.MYI'. (errno: 145)

 

delete from whos_online where time_last_click < '1054581233'

 

[TEP STOP]

 

can anyone help please

live long and prosper

Posted

there are a few threads on the forum dealing with this issue

 

if you do a search for whos_online you should find most of them

 

depending on the version of php and mysql that is installed on your server, you could be encountering problems as described in these threads

 

one of the easiest things to do is use phpmyadmin to go in and do a repair and an optimization on that table, or simply drop the table and reinstall the table

Posted

so what you are saying is that i need to reinstall the "who-is on line.php" files and that should sort it?

live long and prosper

Posted

no, not the file, but the actual database table

 

if you know how to use phpmyadmin, then you should go into the database, delete the whos_online table and then recreate it by clicking on the sql button and then entering the following into the sql field and click go:

 

create table whos_online (

? customer_id int(11) ,

? full_name varchar(64) not null ,

? session_id varchar(128) not null ,

? ip_address varchar(15) not null ,

? time_entry varchar(14) not null ,

? time_last_click varchar(14) not null ,

? last_page_url varchar(64) not null

);

Posted

to see visit www.mayfordangling.co.uk and click to enter the site and you'll see

live long and prosper

Posted

ok, that is still a problem with the table in the database

 

so you used phpmyadmin and dropped and replaced the table?

Archived

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

×
×
  • Create New...