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

[Gesior AAC] 0.3.4 (beta4) fixed v5

@Thorun, why is the older versions named; 0.2 +! If it doesn't work with those new TFS's?
So how could i know if this one (TFS 0.3.4PL1 +) is working with 0.3.6 ? -.-
 
this happen when i try to make a character, please help me cant findout whats wrong



The Following Errors Have Occurred:

Wrong characters configuration. Try again or contact with admin. ADMIN: Edit file config/config.php and set valid characters to copy names. Character to copyPaladin Sample doesn't exist.
 
i get this m8 : STEP 4
Add samples to DB:
News ticker sample is already in database. New sample is not needed.
News sample is already in database. New sample is not needed.

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'redskulltime' in 'field list'' in C:\xampp\htdocs\install.php:528 Stack trace: #0 C:\xampp\htdocs\install.php(528): PDO->query('INSERT INTO pla...') #1 {main} thrown in C:\xampp\htdocs\install.php on line 528
 
i get this m8 : STEP 4
Add samples to DB:
News ticker sample is already in database. New sample is not needed.
News sample is already in database. New sample is not needed.

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'redskulltime' in 'field list'' in C:\xampp\htdocs\install.php:528 Stack trace: #0 C:\xampp\htdocs\install.php(528): PDO->query('INSERT INTO pla...') #1 {main} thrown in C:\xampp\htdocs\install.php on line 528

Try this:

1. localhost/phpmyadmin
2. Press the SQL button
3. Paste and execute:
Code:
ALTER TABLE `players` ADD `redskulltime` BIGINT NOT NULL DEFAULT '0';
ALTER TABLE `players` ADD `redskull` SMALLINT NOT NULL DEFAULT '0';
4. Continue the installation :)

Post if it worked.:thumbup:
 
Sorry for double post but I can't edit.
It worked, now I've got another error when I search up a character:

Code:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'time' in 'order clause'' in C:\xampp\htdocs\characters.php:200 Stack trace: #0 C:\xampp\htdocs\characters.php(200): PDO->query('SELECT * FROM p...') #1 C:\xampp\htdocs\index.php(142): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\characters.php on line 200

I think I solve this problem with?:

Code:
ALTER TABLE `players` ADD `time` BIGINT NOT NULL DEFAULT '0';

Not sure that I have to execute this SQL query
 
Bumpp really want to have this solved
P.S I use the latest xampp



P.SS I tryed the command and it fixed last kills for me, but not characters. This is my new error:


Code:
Warning: Division by zero in C:\xampp\htdocs\characters.php  on line 164

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'time' in 'order clause'' in C:\xampp\htdocs\characters.php:200 Stack trace: #0 C:\xampp\htdocs\characters.php(200): PDO->query('SELECT * FROM p...') #1 C:\xampp\htdocs\index.php(142): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\characters.php on line 200
 
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'redskulltime' in 'field list'' in C:\xampp\htdocs\pot\OTS_Player.php:112 Stack trace: #0 C:\xampp\htdocs\pot\OTS_Player.php(112): PDO->query('SELECT `id`, `n...') #1 C:\xampp\htdocs\pot\OTS_Row_DAO.php(53): OTS_Player->load(1) #2 C:\xampp\htdocs\pot\OTS_Base_List.php(228): OTS_Row_DAO->__construct(1) #3 C:\xampp\htdocs\accountmanagement.php(58): OTS_Base_List->current() #4 C:\xampp\htdocs\index.php(178): include('C:\xampp\htdocs...') #5 {main} thrown in C:\xampp\htdocs\pot\OTS_Player.php on line 112
 
u dont need delete these lines ;s
just add this to u db

ALTER TABLE `players` ADD `redskulltime` BIGINT NOT NULL DEAFULT 0;
ALTER TABLE `players` ADD `redskull` SMALLINT NOT NULL DEAFULT 0;
ALTER TABLE `player_deaths` ADD `time` bigint(20) unsigned NOT NULL DEFAULT '0';

its must repair all..


that fix all
 
Back
Top