Quote:
Originally Posted by Xplorer4x4
I had an old product version, but still having a database problem when I try to edit a user. I uploaded the new PHP files just to be safe. It does not happen if I disable this hack.
|
The database errors show that at least two columns, the warnings and the alerts, are missing from your user table. You can manually create them, by running the following query:
Code:
ALTER TABLE `".TABLE_PREFIX."user` add `warnings` int(5) default '0', add `alerts` int(5) default '0'
But I would suggest that you verify that no other columns are missing. These are the columns that AWS adds to your user table.
`warnings` int(5) default '0',
`warning_level` int(15) default '0',
`warning_bans` int(2) default '0',
`alerts` int(5) default '0',