Hello,
I have on my website the agenda installed and it is working very good.
But how can i flush my cache tables automatically at 0:01.

I'm not adding every day new nodes, so i now have to flush my cache tables manually otherwise i have something on today what was yesterday.

tx
Johan Jacobs

Comments

Kuldip Gohil’s picture

you can use cleaner module http://drupal.org/project/cleaner or

drupal_flush_all_caches() function in your custom module in hook_cron()to clear all cache.

and if you want to clear particular cache then you can use http://api.drupal.org/api/function/cache_clear_all/6 function in your
cron hook.