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

Windows Website error

bomba

Member
Joined
Feb 26, 2008
Messages
635
Reaction score
7
Location
Brazil
Warning: mysql_result() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\Tibia\Decimera\engine\function\general.php on line 102
Table 'decimera.znote_visitors_details' doesn't exist
 
Table 'decimera.znote_visitors_details' doesn't exist > just add Table
znote_visitors_details
Execute this query in your database:
Code:
CREATE TABLE IF NOT EXISTS `znote_visitors_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ip` int(11) NOT NULL,
  `time` int(11) NOT NULL,
  `type` tinyint(4) NOT NULL,
  `account_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
Last edited:
Back
Top