
02-02-2005, 05:36 PM
|
|
|
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by JazzleBug
Having a bit of trouble here with...
mysql error: Unknown column 'textbutoption' in 'field list'
Everything is working with the exception of the Manage Warning Options in my ACP.
Code:
Database error in vBulletin 3.0.6:
Invalid SQL: update warning_options set
hierarchical='Yes',
automatic='No',
automaticpm='No',
autocomments='No',
warner='1',
automatic_warner='',
collector='',
banned_limit='14',
points_before_banned='6',
warnings_before_banned='0',
banned_usergroup_id='8',
troll_usergroup_id='8',
protected_usergroups='6',
aprotected_usergroups='',
restore_groupid='0',
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'
where oid='1'
mysql error: Unknown column 'textbutoption' in 'field list'
mysql error number: 1054
Anyone have any thoughts?
Steph
|
Obviously this column does not exist in your database. Why? I have no idea. Did you try installing from scratch? Did you upgrade from an earlier version?
In any case, you can add that column, by using the following query:
ALTER TABLE `".TABLE_PREFIX."warning_options` ADD COLUMN textbutoption char(10)
Rgds
|