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

Web AAC Problem

Blitzd_OTs

Mapper
Joined
Jul 30, 2009
Messages
344
Reaction score
8
Location
United Kingdom
Right,

I downloaded and followed tut for installing geisor AAC for 0.3.4

As found on here

And i have the latest xampp,
all ports work etc etc

Problem:
Code:
 Notice: Undefined index: page in C:\xampp\htdocs\install.php on line 40

Notice: Undefined index: page in C:\xampp\htdocs\install.php on line 53

Notice: Undefined index: page in C:\xampp\htdocs\install.php on line 67

Those lines:
Code:
line 40= if($_REQUEST['page'] == '' && !isset($_REQUEST['step'])) { 
line 53= if($_REQUEST['page'] == 'menu') { 
line 67= if($_REQUEST['page'] == 'step') {

I'm sure you probaly knew what they were already as many people have this problem, however i have not found/seen a solution :/

So is there anyone with the knowledge of how to solve, then i will give Rep +.
Me and Web AAC's don't get along very well :P

//Thanks alot <3
 
Add the following code snippet at the top of your install.php and index.php files (just below the <? or <?PHP tag).
PHP:
error_reporting( E_ALL & ~E_NOTICE );
 
omg i fucking love you haha

Thanks man

repped

but also what is cause of this?

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:529 Stack trace: #0 C:\xampp\htdocs\install.php(529): PDO->query('INSERT INTO pla...') #1 {main} thrown in C:\xampp\htdocs\install.php on line 529
 
That error appears because you are not using a recommended database, for that specific AAC version (I don't know what version is recommended for what version of the AAC, so I couldn't tell you even if I wanted to. Sorry mate).
SQL:
ALTER TABLE `players` ADD `redskulltime` INT(11) DEFAULT 0;
 
Execute the code snippet I gave you in my previous post. Through your database handler (probably phpMyAdmin).
 
That specific error will at least disappear. I couldn't tell you whether the AAC would work flawlessly or not though.
 
still

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

Thanks for trying, i'll try another AAC for 0.2~ although i could of sworn that after i posted some codes already on the server, cyko saying they were 0.3~ codes :/
 
As you can notice, this time, it is a different column ("redskull" rather than "redskulltime"). So what you can do is simply substitute the "redskulltime" part of my code snippet with "redskull". And so forth with any upcoming ("Unknown Column" errors, it may require changing the table as well, so if you get any troubles with it, just post and I'll help you out).
SQL:
ALTER TABLE `players` ADD `redskull` INT(11) DEFAULT 0;
 
O thanks, well i tried a different AAC and it worked, but thank you so much for your help and codes, everything you gave me seem to have worked and i really appreciate it mate..

I will rep you once more after i spread some more around, but i owe you rep :P

Once again cheers mate
 
I'm glad you managed to find a more appropriate version of an AAC. I do not really care for reputation points so there's absolutely no need to give it to me. I do appreciate it though, but I find your joy to be payment enough!

If you ever get stuck again, please do not hesitate to send me a private message and I'll help you out as soon as I can (I am only up-to-date with web related issues though).
 
Back
Top