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

How To Fix Error

Swev-v2

New Member
Joined
Jun 1, 2014
Messages
3
Reaction score
0
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'swev.z_news_tickers' doesn't exist' in C:\xampp\htdocs\install.php:499 Stack trace: #0 C:\xampp\htdocs\install.php(499): PDO->query('SELECT * FROM z...') #1 {main} thrown in C:\xampp\htdocs\install.php on line 499
 
You're missing the table "z_news_tickers" in database.

Run this:
Code:
CREATE TABLE IF NOT EXISTS `z_news_tickers` (
`date` int(11) NOT NULL default '1',
`author` int(11) NOT NULL,
`image_id` int(3) NOT NULL default '0',
`text` text NOT NULL,
`hide_ticker` tinyint(1) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

And this:
Code:
INSERT INTO `z_news_tickers` (`date`, `author`, `image_id`, `text`, `hide_ticker`) VALUES
(1274141844, 1, 1, 'Hello! Gesior account manager installed. .', 1);
 
Back
Top