Quote:
Originally Posted by pnosko31
I was looking over this mod as i was thinking of using it and discovered in mysql it creates a table called vb_warningtype and in the file in some spots it tries to use the database vb_warning_types - that may cause some problems you are having
|
Can anyone possibly help me with this situation?
I have recently noticed old warnings are not getting removed automatically via Cron.
EDIT:
Manually executing the cron job: kill_warns, shows that warningype table doesn't exist. Looking over mysql, the table is named warningtype.
So I edited kill_warns.php:
Code:
LEFT JOIN " . TABLE_PREFIX . "warningype wt ON(wt.warningtypeid = w.warned_warning_id)
to:
Code:
LEFT JOIN " . TABLE_PREFIX . "warningtype wt ON(wt.warningtypeid = w.warned_warning_id)
Tried running the cron again, this time I received the following error:
Code:
AWS - Kill warnings
Fatal error: Call to undefined function convert_array_to_bits() in /home/xxxxx/public_html/forum/includes/cron/kill_warns.php on line 114
Line 114 shows this code:
Code:
$user = array_merge($user,convert_array_to_bits($user['options'],$vbulletin->bf_misc_useroptions));
Any help would be appreciated.