
03-02-2005, 07:58 PM
|
|
|
Join Date: Feb 2004
Location: Landen(Belgium)
Posts: 1,335
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by TRStealth
I've installed a fresh version of the AWS.
When I try to edit the options, I get the following error:
Code:
Database error in vBulletin 3.0.7:
Invalid SQL: update warning_options set
hierarchical='Yes',
automatic='No',
automaticpm='No',
autocomments='No',
warner='1',
automatic_warner='0',
collector='',
banned_limit='3',
points_before_banned='6',
warnings_before_banned='',
banned_usergroup_id='8',
troll_usergroup_id='8',
protected_usergroups='6',
aprotected_usergroups='',
restore_groupid='2',
incr_ban_days='Yes',
max_no_bans='2',
bans_mature='',
viewoption='Mgm',
multiple_per_post='Yes',
send_pm_warning='Yes',
send_em_warning='No',
email_on_ban='No',
historical='Yes',
allowoffpost='Yes',
warnings_per_page='20',
textbutoption='Text',
modoption='All',
sig_thresshold='',
avatar_thresshold=''
where oid='1'
mysql error: Unknown column 'autocomments' in 'field list'
mysql error number: 1054
Date: Wednesday 02nd of March 2005 05:27:41 PM
Script: http://forums.enclave1.net/admincp/admin_warn.php
Referer: http://forums.enclave1.net/admincp/admin_warn.php?act=manageoptions
Username: Stealth
IP Address: xx.xx.xx.xx
|
the autocomments is missing in your warning_options table you can add it by
Code:
ALTER TABLE warning_options ADD COLUMN autocomments char(3);
|