Jump to content

[SOLVED] Automatically Erasing a log at midnight everynight


JADASDesigner

Recommended Posts

I have a text log that stores IP addresses for a poll, but I want to dump it everynight at midnight, and start fresh.  I have been doing it manually for about two weeks.  Is there a way it can be done automatically?

You can run a cron job.

 

Not particularly easy to get running (still cause me headaches even now) but they're definitely the way to go to have a script or scripts run at regular intervals.

 

http://en.wikipedia.org/wiki/Cron

If you don't want to use a chronjob, you can create a column that stores a date. Then store the date of the most recent time at which the IP table was cleared. Then everytime someone accesses the site, check that date. If it's still the same day, then do nothing. If it's from the day before, clear the IP table, and replace the old time with the current time.

Or you could set a GET variable and make it trigger if that get variable isset and is equal to what it should be.

 

For the actual value I would make an md5 hash of something. That way it could be erase.php but without that variable it will not run.

Archived

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

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.