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

znote acc problems on account

wafuboe

Active Member
Joined
Dec 24, 2010
Messages
884
Solutions
2
Reaction score
26
ok when i log my account it appears

string(116) "SELECT `id`, `character_name`, `time` FROM `znote_deleted_characters` WHERE `original_account_id` = 5 AND `done` = 0"
(query - SQL error)
Type: select_multi (select multiple rows from database)

Table 'otserver.znote_deleted_characters' doesn't exist

and on registering acc, but it stills create it

string(117) "INSERT INTO `znote_accounts` (`account_id`, `ip`, `created`, `activekey`) VALUES ('6', '', '1449981649', '756076049')"
(query - SQL error)
Type: voidQuery (voidQuery is used for update, insert or delete from database)

Unknown column 'activekey' in 'field list
 
Table 'otserver.znote_deleted_characters' doesn't exist
This means isn't added so.

Add it by the following SQL.
Code:
CREATE TABLE IF NOT EXISTS `znote_deleted_characters` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `original_account_id` int(11) NOT NULL,
  `character_name` varchar(255) NOT NULL,
  `time` datetime NOT NULL,
  `done` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

about the other error
Unknown column 'activekey' in 'field list
Code:
ALTER TABLE znote_accounts ADD `activekey` int(11) NOT NULL
 
Back
Top