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

Gesior problem

Velington

Server/Web Developer
Joined
Jan 3, 2012
Messages
122
Reaction score
0
Location
Sweden
How to fix this bug? I got this when create account and character

PHP:
Forbidden

You don't have permission to access /ajax/check_email.php on this server.
Apache/2.2.16 (Debian) Server at coldtera.tk Port 80
 
cd /var/www
chmod 777 -R *
chown www-data .
(remember the dot).


seems you dotn have permision as in root im going to guess it, to be honest i prefer uniform server, it rocks

Actually, windows with uniform server is quicker than debian because uniform server is using mysql 5.5+. (debian uses 5.1 by default installation).

But well, I cant confirm if lighttpd + php5-cgi is quicker than apache - php - eAccelerator.

But when it comes to running the distribution, Debian is way better than windows.
 
Could it be that php is not properly enabled?

If your using lighttpd with php5-cgi

edit /etc/lighttpd/lighttpd.conf

At the bottom add:

fastcgi.server = ( ".php" => ((
"bin-path" => "/usr/bin/php5-cgi",
"socket" => "/tmp/php.socket"
)))
 
cd /var/www
chmod 777 -R *
chown www-data .
(remember the dot).




Actually, windows with uniform server is quicker than debian because uniform server is using mysql 5.5+. (debian uses 5.1 by default installation).

But well, I cant confirm if lighttpd + php5-cgi is quicker than apache - php - eAccelerator.

But when it comes to running the distribution, Debian is way better than windows.




777 is not always the best idea

set 755 to all folders and 644 to all php-files. only set cache files/folders to 777 if you have any.

enter www root and:
chmod 755 * -R
chmod 644 *.php -R
 
Back
Top