Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Need help to drop these....


Guest

Recommended Posts

Posted

INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('', 'User Tracking (exclude this IP-Address)', 'CONFIG_USER_TRACKING_EXCLUDED', 'your IP', 'Do NOT record this IP Address<br>(like webmaster/owners/Beta-testers)', 1, 2, 'now()', 'now()', NULL, NULL);

INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('', 'User Tracking (your favorite WHOIS URL)', 'USER_TRACKING_WHOIS_URL', 'http://www.dnsstuff.com/tools/whois.ch?ip=', 'Put here you favorite WHOIS tracking site<br>(the IP will follow automatically after this url)', 1, 3, 'now()', 'now()', NULL, NULL);

INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('', 'Who\'s Online Refresh Time', 'WHOS_ONLINE_REFRESH', '60', 'Who\'s Online Refresh Time', 1, 3, 'now()', 'now()', NULL, NULL);

 

How do I drop these thing that I would have added in the past?

Posted

Run following command through database interface (phpmyadmin):

 

delete from configuration where configuration_key='CONFIG_USER_TRACKING_EXCLUDED' and configuration_group_id='1';

 

Do the same sql for other values added.

 

I hope this helps!

Archived

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

×
×
  • Create New...