• 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] Please help me! website problem

Synergy

New Member
Joined
Nov 24, 2011
Messages
334
Reaction score
0
Well heres the errors I get when I open my website
Buttons n all works but this ugly errors occurs in the top of the site

Code:
Notice: Undefined index: 1 in C:\Users\Johan\Desktop\xampp\htdocs\config-and-functions.php on line 15

Notice: Undefined index: useMD5Passwords in C:\Users\Johan\Desktop\xampp\htdocs\config-and-functions.php on line 47

Notice: Undefined index: action in C:\Users\Johan\Desktop\xampp\htdocs\index.php on line 14

Notice: Undefined index: account_login in C:\Users\Johan\Desktop\xampp\htdocs\index.php on line 38

Notice: Undefined index: password_login in C:\Users\Johan\Desktop\xampp\htdocs\index.php on line 39

Notice: Undefined variable: tickers_to_add in C:\Users\Johan\Desktop\xampp\htdocs\latestnews.php on line 20

Notice: Undefined variable: news_content in C:\Users\Johan\Desktop\xampp\htdocs\latestnews.php on line 48

Notice: Undefined variable: main_content in C:\Users\Johan\Desktop\xampp\htdocs\latestnews.php on line 97

You can check it out yourself at:
Tarama ORPG
 
Add to index.php (after <?php):
PHP:
	// set mode of website (mode, debug)
	define("MODE", "DEBUG");
	
	// when mode is realase, system hide all errors
	if (MODE == "RELEASE")
		error_reporting(0);
When u want change something, u need change mode to debug (to show errors).
 
mvjF3.png
 
Back
Top