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

Acc maker POT 0.3.6

perwal

New Member
Joined
Jul 14, 2011
Messages
65
Reaction score
1
Location
Poland Torun
Hey,
im download it http://otland.net/f118/release-gesior-0-3-6-a-164113/ and i can install it my website. Ok but this have pot and i have problems:

Code:
Warning: parse_ini_file(D:\Kam\Ka V5config.lua) [function.parse-ini-file]: failed to open stream: No such file or directory in D:\OtS Project\xampp\htdocs\config-and-functions.php on line 10
Database error. Unknown database type in D:\Kam\Kam V5config.lua . Must be equal to: "mysql" or "sqlite". Now is: ""
So, i cant use it acc maker? I need only 0.3.6 not pot? Any answer :) Rep

- - - Updated - - -

@@

Ok i deleted all --- in config but problems with pot:

Code:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'field list'' in D:\OtS Project\xampp\htdocs\pot\OTS_Account.php:228 Stack trace: #0 D:\OtS Project\xampp\htdocs\pot\OTS_Account.php(228): PDO->query('SELECT `id`, `n...') #1 D:\OtS Project\xampp\htdocs\index.php(27): OTS_Account->load('1') #2 {main} thrown in D:\OtS Project\xampp\htdocs\pot\OTS_Account.php on line 228

My 228 line:
Code:
// SELECT query on database
       $this->data = $this->db->query('SELECT ' . $this->db->fieldName('id') . ', ' . $this->db->fieldName('name') . ', ' . $this->db->fieldName('password') . ', ' . $this->db->fieldName('email') . ', ' . $this->db->fieldName('blocked') . ', ' . $this->db->fieldName('rlname') . ', ' . $this->db->fieldName('location') . ', ' . $this->db->fieldName('key') . ', ' . $this->db->fieldName('premium_points') . ', ' . $this->db->fieldName('page_access') . ', ' . $this->db->fieldName('premdays') . ', ' . $this->db->fieldName('lastday') . ',  ' . $this->db->fieldName('created') . ' FROM ' . $this->db->tableName('accounts') . ' WHERE ' . $this->db->fieldName('id') . ' = ' . (int) $id)->fetch();
    }
 
SQL:
ALTER TABLE `accounts` ADD `created` int(11) NOT NULL DEFAULT '0' AFTER `email_new_time`;
 
Hehe thanks u but second problems and i think that this not end ;p

Code:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'g.logo_gfx_name' in 'field list'' in D:\OtS Project\xampp\htdocs\latestnews.php:67 Stack trace: #0 D:\OtS Project\xampp\htdocs\latestnews.php(67): PDO->query('SELECT `g`.`id`...') #1 D:\OtS Project\xampp\htdocs\index.php(71): include('D:\OtS Project\...') #2 {main} thrown in D:\OtS Project\xampp\htdocs\latestnews.php on line 67
 
SQL:
ALTER TABLE `guilds` ADD `logo_gfx_name` VARCHAR( 255 ) NOT NULL DEFAULT "";
 
:(

Code:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table '8.60.z_news_tickers' doesn't exist' in D:\OtS Project\xampp\htdocs\latestnews.php:145 Stack trace: #0 D:\OtS Project\xampp\htdocs\latestnews.php(145): PDO->query('SELECT * FROM `...') #1 D:\OtS Project\xampp\htdocs\index.php(71): include('D:\OtS Project\...') #2 {main} thrown in D:\OtS Project\xampp\htdocs\latestnews.php on line 145
 
You can easily find these SQL queries on the forum by searching.

[SQl]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;[/SQl]
 
Sisyphean task, bro ;/

Code:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'z_forum.icon_id' in 'field list'' in D:\OtS Project\xampp\htdocs\latestnews.php:274 Stack trace: #0 D:\OtS Project\xampp\htdocs\latestnews.php(274): PDO->query('SELECT `z_forum...') #1 D:\OtS Project\xampp\htdocs\index.php(71): include('D:\OtS Project\...') #2 {main} thrown in D:\OtS Project\xampp\htdocs\latestnews.php on line 274
 
SQL:
ALTER TABLE `z_forum` ADD `icon_id` int(10) NOT NULL default '0';

I suggest that you try searching or write these queries by yourself. :p
 
Ok i have it when i can open my character:

Code:
Fatal error: Uncaught exception 'E_OTS_NotLoaded' in D:\OtS Project\xampp\htdocs\pot\OTS_Player.php:276 Stack trace: #0 D:\OtS Project\xampp\htdocs\characters.php(23): OTS_Player->getOldName() #1 D:\OtS Project\xampp\htdocs\index.php(93): include('D:\OtS Project\...') #2 {main} thrown in D:\OtS Project\xampp\htdocs\pot\OTS_Player.php on line 276
 
Last edited:
Replace line 276 in OTS_player.php
PHP:
throw new E_OTS_NotLoaded();
with
PHP:
return NULL;;
 
Back
Top