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

AAC Problems!

Amoaz

Faloria owner
Joined
Jan 14, 2009
Messages
1,523
Reaction score
219
Location
Sweden
Hello, been searching for a good AAC guide and cant find one (yea sure flame on).
Getting this message when im trying to make a home-page. Using Geisor AAC 0.3.6

This is the error i get. Please someone help me :)


bUmp
 
Last edited by a moderator:
0.3.6
Changed all now, made a new database, used the Gesior Account Maker for TFS 0.3.6 and still only getting to step 4 with the error occured :

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'skulltime' in 'field list'' in C:\xampp\htdocs\install.php:505 Stack trace: #0 C:\xampp\htdocs\install.php(505): PDO->query('INSERT INTO pla...') #1 {main} thrown in C:\xampp\htdocs\install.php on line 505
 
Execute these queries on your database:
PHP:
ALTER TABLE `players` CHANGE `redskulltime` `skulltime` INT NOT NULL DEFAULT 0;
ALTER TABLE `players` ADD `skull` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0 AFTER `save`;
 
Got this now when adding it :

SQL-fråga: Dokumentation

SELECT *
FROM `accounts`
WHERE 1
ALTER TABLE `players` CHANGE `redskulltime` `skulltime` INT NOT NULL DEFAULT 0;

MySQL sa: Dokumentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ALTER TABLE `players` CHANGE `redskulltime` `skulltime` INT NOT NULL DEFAULT 0' at line 1
 
Getting this message now :

ANGE `redskulltime` `skulltime` INT NOT NULL DEFAULT 0;

MySQL sa: Dokumentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ANGE `redskulltime` `skulltime` INT NOT NULL DEFAULT 0' at line 1
 
You're doing it wrong
PHP:
ALTER TABLE `players` RENAME COLUMN `redskulltime` to `skulltime`;
ALTER TABLE `players` ADD `skull` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0 AFTER `save`;
 
Getting this error code now when using
ALTER TABLE `players` RENAME COLUMN `redskulltime` to `skulltime`;
ALTER TABLE `players` ADD `skull` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0 AFTER `save`;


#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'COLUMN `redskulltime` to `skulltime`' at line 1
 
PHP:
ALTER TABLE `players` CHANGE `redskulltime` `skulltime` INT NOT NULL DEFAULT 0;
ALTER TABLE `players` CHANGE `redskull` `skull` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0;
 
Got to the last step now! Getting this error code

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'name' in 'field list'' in C:\xampp\htdocs\pot\OTS_Account.php:229 Stack trace: #0 C:\xampp\htdocs\pot\OTS_Account.php(229): PDO->query('SELECT `id`, `n...') #1 C:\xampp\htdocs\install.php(558): OTS_Account->load(1) #2 {main} thrown in C:\xampp\htdocs\pot\OTS_Account.php on line 229
 
Back
Top