Log in

View Full Version : How to automate database query?


viper357
06-22-2015, 10:12 AM
Hi all

The "Execute SQL Query" option, Is it possible to automate this?

I need to execute this query once a week, every week.
UPDATE rbs_banners SET m_expired=0

Thanks.

kh99
06-22-2015, 10:37 AM
You could make a plugin using hook cron_script_cleanup_daily and code like this:
if (date("N") == '1') // 1 = Monday, 7=Sunday
{
$vbulletin->db->query_write("UPDATE rbs_banners SET m_expired=0");
}


It's not perfect. For one thing if, for example, you set it up to run on Monday and for some reason the cleanup script doesn't run (like your forum is down or something), it wouldn't run until the next week. BUt it might be good enough for your purposes.

viper357
06-22-2015, 10:50 AM
That seems great, thank you. :)