• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Help] Account Creating

Guiility

New Member
Joined
Dec 16, 2008
Messages
5
Reaction score
0
Okay, so im trying to add from the install folder those dbs. But it gives me an error
ALTER TABLE `accounts` ADD `page_access` INT( 11 ) ;
#1060 - Duplicate column name 'page_access'

And then comes when im trying to create an account:
A Database Error Occurred
Error Number: 1054

Unknown column 'about_me' in 'field list'

SELECT id, rlname, location, about_me, nickname FROM accounts WHERE id = 2

Someone can help a little? Im bit new about Databases and MySQL's..
 
You have in db
PHP:
ALTER TABLE `accounts` ADD `page_access` INT( 11 ) ;
#1060 - Duplicate column name 'page_access'
In phpmyadmin select SQL
And paste
PHP:
ALTER TABLE accounts ADD about_me text;
 
Back
Top