Quote:
Originally Posted by BaziCenter
I think it's better that this hack only delete the mesasges which has been posted 30 days ago or more. not to delete all of the messages every 30 days.
thanks for this hack anyway!
|
Hi,
Open visitormessagedelete.php file and
find :
$vbulletin->db->query_write("DELETE FROM " . TABLE_PREFIX . "visitormessage");
replace with:
$vbulletin->db->query_write("DELETE FROM ".TABLE_PREFIX."visitormessage where FROM_UNIXTIME(dateline )<SUBDATE(CURDATE(), INTERVAL 30 DAY )");
it will work.
You can change 30 DAY with whatever you want. You can also change cron job to run this script every day