In order to insure my zen cart is not being used as a spam forwarder I need to empty or truncate my sessions table. How is this done without dropping or deleting the table? Thank you.
In order to insure my zen cart is not being used as a spam forwarder I need to empty or truncate my sessions table. How is this done without dropping or deleting the table? Thank you.
Hello Jamison,
You need simply tick tables and from the With selected drop-down menu at the bottom of the page select Empty.
An alternative you can click the SQL tab in phpMyAdmin, paste these queries:
TRUNCATE `table_name`;
and then click the Go button to execute them.
That is all.