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

Website error :(!

Cris2387

Member
Joined
Dec 30, 2013
Messages
177
Reaction score
9
Code:
Notice: Undefined index: sqliteDatabase in C:\Website\www\config-and-functions.php on line 23 Notice: Undefined index: useMD5Passwords in C:\Website\www\config-and-functions.php on line 25 Notice: Undefined index: passwordType in C:\Website\www\config-and-functions.php on line 25 Notice: Undefined index: passwordType in C:\Website\www\config-and-functions.php on line 27 Notice: Undefined variable: file_data in C:\Website\www\config-and-functions.php on line 372 Notice: Undefined index: action in C:\Website\www\index.php on line 15 Notice: Undefined index: account_login in C:\Website\www\index.php on line 37 Notice: Undefined index: password_login in C:\Website\www\index.php on line 38
whats?
 
Or you can disable notices in your php.ini
Code:
error_reporting = E_ALL & ~E_NOTICE
alternatively, add this to your index.php
Code:
error_reporting(E_ALL & ~E_NOTICE

however, the notices might indicate a more severe problem, such as incompatible AAC with your server/database version.
 
Back
Top