• 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 me, web xampp.

Bajin

New Member
Joined
Dec 9, 2019
Messages
8
Reaction score
0
Code:
Query:    SELECT `players`.`name`, `z_forum`.`post_text`, `z_forum`.`post_topic`, `z_forum`.`post_smile`, `z_forum`.`id`, `z_forum`.`replies`, `z_forum`.`post_date` FROM `players`,`z_forum` WHERE `players`.`id` = `z_forum`.`author_guid` AND `z_forum`.`section` = 1 AND `z_forum`.`first_post` = `z_forum`.`id` ORDER BY `z_forum`.`last_post` DESC LIMIT 3;
SQLSTATE:    42S02
Driver code:    1146
Error message:    Table 'pokemoncastle.z_forum' doesn't exist

Fatal error: Uncaught Error: Call to a member function fetchAll() on boolean in C:\xampp\htdocs\pages\home.php:18 Stack trace: #0 C:\xampp\htdocs\engine\load.page.php(5): include() #1 C:\xampp\htdocs\index.php(31): include_once('C:\\xampp\\htdocs...') #2 {main} thrown in C:\xampp\htdocs\pages\home.php on line 18
 

#1, #5
 
You can read the error message, it says a table does not exist.

SQL:
CREATE TABLE `z_forum` (
  `id` int(11) NOT NULL auto_increment,
  `first_post` int(11) NOT NULL default '0',
  `last_post` int(11) NOT NULL default '0',
  `section` int(3) NOT NULL default '0',
  `replies` int(20) NOT NULL default '0',
  `views` int(20) NOT NULL default '0',
  `author_aid` int(20) NOT NULL default '0',
  `author_guid` int(20) NOT NULL default '0',
  `post_text` text NOT NULL,
  `post_topic` varchar(255) NOT NULL,
  `post_smile` tinyint(1) NOT NULL default '0',
  `post_date` int(20) NOT NULL default '0',
  `last_edit_aid` int(20) NOT NULL default '0',
  `edit_date` int(20) NOT NULL default '0',
  `post_ip` varchar(32) NOT NULL default '0.0.0.0',
  PRIMARY KEY  (`id`),
  KEY `section` (`section`)
) ENGINE=MyISAM AUTO_INCREMENT=1;

SQL:
ALTER TABLE `accounts` ADD `last_post` INT( 11 ) NOT NULL DEFAULT '0';
 
I was able to load the home screen, but the site itself is full of errors, I can't find a site compatible with my base date or a base date compatible with the site, I can't find one that is compatible with both to begin with editing my server.
 
Well you need to give us more information.

What are you using?
Layouts, AAC, Server version, etc etc.
 
Back
Top