Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

whos_online table deleted. Need help creating new one.


Veeps

Recommended Posts

Go to phpMyAdmin sql box and paste the followin in then click go.

 

You can fine all the sql in the install dir of osc zip "oscommerce.sql"

 

DROP TABLE IF EXISTS whos_online;
CREATE TABLE whos_online (
 customer_id int,
 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
);

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...