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

Solved 403 - Forbidden

Gregor

New Member
Joined
Feb 29, 2008
Messages
770
Reaction score
3
Location
UK/POLAND
Hi ! I installed lighttpd php5-cgi and phpmyadmin this morning, on debian 6.0 and I having problem to access phpmyadmin and my website. I also use this command to enable fastcgi "lighty-enable-mod fastcgi". And still getting this error
Code:
403 - Forbidden
ps. I chmod the www and everything :p

:( anyone?

Thanks

fix by Samme:

Add this at the bottom of your lighttpd configuration file:

Code:
fastcgi.server = ( ".php" => ((
	"bin-path" => "/usr/bin/php-cgi",
	"socket" => "/tmp/php.socket",
	"max-procs" => 10,
	"bin-environment" => (
	"PHP_FCGI_CHILDREN" => "16",
	"PHP_FCGI_MAX_REQUESTS" => "10000"
	),
	"bin-copy-environment" => (
	"PATH", "SHELL", "USER"
	),
	"broken-scriptfilename" => "enable"
 )))
Then
Code:
/etc/init.d/lighttpd force-reload
 
Last edited:
Back
Top