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

Windows Need Help php scripten

ruttie239

New Member
Joined
Jul 10, 2010
Messages
95
Reaction score
1
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 1 no such table: z_news_tickers' in C:\xampp\htdocs\latestnews.php:7 Stack trace: #0 C:\xampp\htdocs\latestnews.php(7): PDO->query('SELECT * FROM "...') #1 C:\xampp\htdocs\index.php(64): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\latestnews.php on line 7






thanks for ur help
 
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 1 no such table: z_news_tickers' in C:\xampp\htdocs\latestnews.php:97 Stack trace: #0 C:\xampp\htdocs\latestnews.php(97): PDO->query('SELECT * FROM `...') #1 C:\xampp\htdocs\index.php(64): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\latestnews.php on line 97

now is this coming
 
localhost/phpmyadmin > sql
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;
Code:
INSERT INTO `z_news_tickers` (`date`, `author`, `image_id`, `text`, `hide_ticker`) VALUES
(1274141844, 1, 1, 'Hello! Gesior account manager 0.3.6 installed. Report bugs Otland.Net .', 1);
 
after i gave you a link you didn't create the table read the error !
so create it
Code:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: [COLOR="#FF0000"]General error: 1 no such table: z_news_tickers'[/COLOR] in C:\xampp\htdocs\latestnews.php:97 Stack trace: #0 C:\xampp\htdocs\latestnews.php(97): PDO->query('SELECT * FROM `...') #1 C:\xampp\htdocs\index.php(64): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\latestnews.php on line 97
TABLE Z_NEWS_TICKERS
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;
 
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 1 no such table: z_shop_offer' in C:\xampp\htdocs\shopsystem.php:85 Stack trace: #0 C:\xampp\htdocs\shopsystem.php(85): PDO->query('SELECT * FROM "...') #1 C:\xampp\htdocs\shopsystem.php(169): getOfferArray() #2 C:\xampp\htdocs\index.php(190): include('C:\xampp\htdocs...') #3 {main} thrown in C:\xampp\htdocs\shopsystem.php on line 85

Other error is fixed Thanks for that
this is new error
 
Code:
CREATE TABLE `z_shop_offer` (
  `id` int(11) NOT NULL auto_increment,
  `points` int(11) NOT NULL default '0',
  `itemid1` int(11) NOT NULL default '0',
  `count1` int(11) NOT NULL default '0',
  `itemid2` int(11) NOT NULL default '0',
  `count2` int(11) NOT NULL default '0',
  `offer_type` varchar(255) default NULL,
  `offer_description` text NOT NULL,
  `offer_name` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
Thanks for all ur help
I was looking for bugs and now this :

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 1 no such column: page_lastday' in C:\xampp\htdocs\pot\OTS_Account.php:811 Stack trace: #0 C:\xampp\htdocs\pot\OTS_Account.php(811): PDO->query('UPDATE "account...') #1 C:\xampp\htdocs\index.php(47): OTS_Account->setCustomField('page_lastday', 1313737484) #2 {main} thrown in C:\xampp\htdocs\pot\OTS_Account.php on line 811
 
Stop posting 5 times in a row, there's an edit function for a reason.
Also it's giving an PDO error, check if pdo_mysql is enabled in php.ini.
 
Fatal error: Uncaught exception 'E_OTS_NotLoaded' in C:\xampp\htdocs\pot\OTS_Player.php:276 Stack trace: #0 C:\xampp\htdocs\characters.php(23): OTS_Player->getOldName() #1 C:\xampp\htdocs\index.php(100): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\pot\OTS_Player.php on line 276

Maybe its better to search for a other aac maker?
 
Fatal error: Uncaught exception 'E_OTS_NotLoaded' in C:\xampp\htdocs\pot\OTS_Player.php:276 Stack trace: #0 C:\xampp\htdocs\characters.php(23): OTS_Player->getOldName() #1 C:\xampp\htdocs\index.php(100): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\pot\OTS_Player.php on line 276

Maybe its better to search for a other aac maker?

Yeah, that would be best, use Modern AAC and stop doubleposting!
 
A Database Error Occurred
Error Number: 1146

Table 'tfs.forums' doesn't exist

SELECT `b`.`id`, `b`.`name`, `b`.`description`, `b`.`closed`, `b`.`moderators`, `u`.`name` AS `author`, `p`.`thread_id`, `t`.`name` AS `thread_title`, `p`.`time` FROM `forums` AS `b` LEFT JOIN (SELECT `time`, `thread_id`, `board_id`, `author` FROM `posts` ORDER BY `time` DESC) AS `p` ON `p`.`board_id` = `b`.`id` LEFT JOIN `players` AS `u` ON `u`.`id` = `p`.`author` LEFT JOIN `threads` AS `t` ON `t`.`id` = `p`.`thread_id` WHERE `b`.`access` <= '0' AND `requireLogin` != '1' AND `b`.`guild` IS NULL GROUP BY `b`.`id` ORDER BY `b`.`order` ASC;

What means it?
 
Back
Top