If it is a scheduled task, you need more in your script than just that query. Something more like:
PHP Code:
<?php
/*======================================================================*\
|| #################################################################### ||
|| # Cron Job to do whatever ||
|| # Last Modified: Whenever ||
|| #################################################################### ||
\*======================================================================*/
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
if (!is_object($vbulletin->db))
{
exit;
}
All your actions here... like
$query="UPDATE whatever";
$vbulletin->db->query_write($query);
log_cron_action('Update whatever', $nextitem);
?>