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

Linux Gesior Create account problem

Kippetjee

Member
Joined
Jun 17, 2009
Messages
1,197
Reaction score
11
Location
The Netherlands
Hello!

I have a problem with the create account of gesior
When u make a account on the website u will get a blank page when u make new char

But the char is still maked

some one know how fix the blank page??
 
There are errors, and your php is hiding them.

Modify php.ini:
Code:
error_reporting = E_ALL & ~E_NOTICE
Code:
display_errors = On
restart your webserver, and try to make another character
 
It should still exist in ./etc/php~/ or something like that. Either way, you could also try adding this at the top of your index.php file (just below <?, <?PHP or <?php):
PHP:
error_reporting( E_ALL & ~E_NOTICE );
ini_set( 'display_errors', 1 );
 
It should still exist in ./etc/php~/ or something like that. Either way, you could also try adding this at the top of your index.php file (just below <?, <?PHP or <?php):
PHP:
error_reporting( E_ALL & ~E_NOTICE );
ini_set( 'display_errors', 1 );



When i do that i get this error

LUA:
Warning: fopen(config/serverstatus): failed to open stream: Permission denied in /var/www/config-and-functions.php on line 452 Warning: rewind() expects parameter 1 to be resource, boolean given in /var/www/config-and-functions.php on line 458 Warning: fwrite() expects parameter 1 to be resource, boolean given in /var/www/config-and-functions.php on line 459 Warning: fclose() expects parameter 1 to be resource, boolean given in /var/www/config-and-functions.php on line 460 Warning: fopen(usercounter.dat): failed to open stream: Permission denied in /var/www/config-and-functions.php on line 468 Warning: fgets() expects parameter 1 to be resource, boolean given in /var/www/config-and-functions.php on line 469 Warning: rewind() expects parameter 1 to be resource, boolean given in /var/www/config-and-functions.php on line 471 Warning: fputs() expects parameter 1 to be resource, boolean given in /var/www/config-and-functions.php on line 472 Warning: fclose() expects parameter 1 to be resource, boolean given in /var/www/config-and-functions.php on line 473 Fatal error: Uncaught exception 'E_OTS_NotLoaded' in /var/www/pot/OTS_Player.php:1866 Stack trace: #0 /var/www/accountmanagement.php(961): OTS_Player->getSkill(0) #1 /var/www/index.php(139): include('/var/www/accoun...') #2 {main} thrown in /var/www/pot/OTS_Player.php on line 1866
 
Last edited:
LUA:
Warning: fopen(config/serverstatus): failed to open stream: Permission denied in /var/www/config-and-functions.php on line 452 Warning: rewind() expects 
parameter 1 to be resource, boolean given in /var/www/config-and-functions.php on line 458 Warning:
 fwrite() expects parameter 1 to be resource, boolean given in /var/www/config-and-functions.php on line 459 Warning: fclose() expects parameter 1 to be resource,
 boolean given in /var/www/config-and-functions.php on line 460 Warning: fopen(usercounter.dat): 
failed to open stream: Permission denied in /var/www/config-and-functions.php on line 468 Warning: fgets() expects parameter 1 to be resource, boolean given in 
/var/www/config-and-functions.php on line 469 Warning: rewind() expects parameter 1 to be 
resource, boolean given in /var/www/config-and-functions.php on line 471 Warning: fputs() expects parameter 1 to be resource, boolean given in 
/var/www/config-and-functions.php on line 472 Warning: fclose() expects parameter 1 to be resource, boolean given in
 /var/www/config-and-functions.php on line 473 Fatal error: Uncaught exception 'E_OTS_NotLoaded' in /var/www/pot/OTS_Player.php:1866
 Stack trace: #0 /var/www/accountmanagement.php(961): OTS_Player->getSkill(0) #1 /var/www/index.php(139): 
include('/var/www/accoun...') #2 {main} thrown in /var/www/pot/OTS_Player.php on line 1866
 
Back
Top