• 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!

Solved Znote AAC - error at login

SamX

VoltageOT Developer
Joined
Aug 27, 2010
Messages
557
Reaction score
151
Location
Canada
I'm getting the following error when trying to login on my website. Using latest version of Znote from Github.
Code:
string(183) "SELECT `a`.`secret` AS `secret`, `za`.`secret` AS `znote_secret` FROM `accounts` AS `a` INNER JOIN `znote_accounts` AS `za` ON `a`.`id` = `za`.`account_id` WHERE `a`.`id`='2' LIMIT 1;" 
(query - SQL error) 
Type: select_single (select single row from database)

Unknown column 'za.secret' in 'field list'

Thanks.
 
If using TFS 1.2:
Start the OT server.
Close the OT server.

See if you still have an error.
 
At the start when you first set up ur AAC and haven't linked your DB, you usually get an error code with a window telling you to copy+paste a code in your db SQL... Did you do that at the start?
 
At the start when you first set up ur AAC and haven't linked your DB, you usually get an error code with a window telling you to copy+paste a code in your db SQL... Did you do that at the start?
Yup, that's all done. Tried it again just incase, didn't work.
 
Updating Znote AAC from previous install?
Code:
ALTER TABLE `znote_accounts` ADD COLUMN `secret` CHAR(16) DEFAULT NULL;
 
Solution
Back
Top