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

Base table or view not found: 1146 Table 'testing.z_news_big' doesn't exist' in

Sebastian Ching

New Member
Joined
Dec 26, 2007
Messages
314
Reaction score
4
Location
Rio grande, rs, Brazil
Hi, can someone help me with this error?
im using gesior account 3.8
when im in in latestnews appear this error

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'testing.z_news_big' doesn't exist' in F:\xampp\htdocs\latestnews.php:109 Stack trace: #0 F:\xampp\htdocs\latestnews.php(109): PDO->query('SELECT image_id...') #1 F:\xampp\htdocs\index.php(64): include('F:\xampp\htdocs...') #2 {main} thrown in F:\xampp\htdocs\latestnews.php on line 109

Thankss :p
 
haha is for why not have table
z_news_big
use this query:
and works ;)
SQL:
CREATE TABLE IF NOT EXISTS `z_news_big` (
  `hide_news` tinyint(1) NOT NULL DEFAULT '0',
  `date` int(11) NOT NULL DEFAULT '0',
  `author` varchar(255) NOT NULL,
  `author_id` int(11) NOT NULL,
  `image_id` int(3) NOT NULL DEFAULT '0',
  `topic` varchar(255) NOT NULL,
  `text` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
Back
Top