Guest Posted December 13, 2004 Posted December 13, 2004 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?
kagg Posted December 13, 2004 Posted December 13, 2004 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!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.