• 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 Bugtracker php

_M4G0_

Well-Known Member
Joined
Feb 6, 2016
Messages
509
Solutions
16
Reaction score
99
I changed this code for the using in gesior, I would like to update to use with myaac...
errors:
Notice: Undefined variable: post in \www\system\pages\bugtracker.php on line 33
Notice
: Undefined variable: post in \system\pages\bugtracker.php on line 121
Notice
: Undefined index: action in \system\pages\bugtracker.php on line 402
@slawkens

bt2.gifbt3.gifbt4.gifbt5.gif
 
Last edited:
Solution
You can either put at the top of this file, that function:

(After <?php)

Code:
// Turn off all error reporting
error_reporting(0);

Or put a @ in the beginning of the variable.

Like this:
Code:
$action = @$_POST['action'];
You can either put at the top of this file, that function:

(After <?php)

Code:
// Turn off all error reporting
error_reporting(0);

Or put a @ in the beginning of the variable.

Like this:
Code:
$action = @$_POST['action'];
 
Solution
Back
Top