• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved Znote AAC issue

yuitsi2

New Member
Joined
Sep 5, 2010
Messages
42
Reaction score
3
Location
Sweden
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`='1' LIMIT 1;"
(query - SQL error)
Type: select_single (select single row from database)

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

I've encountered this error when I am trying to logg in to an account. Does anyone know how to fix the issue?
 
Solution
Im having the exact same error :/

Edit: Found the solution by Xeraphus, you have to add the Code in your mySQL:

Code:
ALTER TABLE `accounts` ADD `secret` int(11);
The type should be char(16) and defaults to null.
Code:
ALTER TABLE `accounts` ADD `secret` CHAR(16) DEFAULT NULL;
Im having the exact same error :/

Edit: Found the solution by Xeraphus, you have to add the Code in your mySQL:

Code:
ALTER TABLE `accounts` ADD `secret` int(11);
 
Last edited:
Im having the exact same error :/

Edit: Found the solution by Xeraphus, you have to add the Code in your mySQL:

Code:
ALTER TABLE `accounts` ADD `secret` int(11);
The type should be char(16) and defaults to null.
Code:
ALTER TABLE `accounts` ADD `secret` CHAR(16) DEFAULT NULL;
 
Solution
Hello,
I have the same error :-(

But where do I have to put the code "
ALTER TABLE `accounts` ADD `secret` CHAR(16) DEFAULT NULL;" you say " in your mySQL" but where I can find it?
 
Hello,
I have the same error :-(

But where do I have to put the code "
ALTER TABLE `accounts` ADD `secret` CHAR(16) DEFAULT NULL;" you say " in your mySQL" but where I can find it?
If you are using TFS 1.3/1.2 launch tfs once then the error should be gone.
 
Back
Top