Issue with LAMP server
-
I followed this tutorial :
https://wiki.onion.io/Tutorials/How-To-Install-LAMP-Stack-on-the-Omegaand this is the error message I have when I try 192.168.3.1:9000
Forbidden
You don't have permission to access /php/php-cgi/index.php on this server.
content of my httpd.conf different from the tutorial :
Listen 192.168.3.1:9000
ServerName www.calem.com:9000More info: I can load my console at 192.168.3.1
Any hint for me ?
Thanks!
-
Hi @SYLVAIN-MAILHIOT, try reinstalling php and apache to solve the forbidden error.
-
i have found the solution in an older discussion
https://community.onion.io/topic/159/install-lamp-ftp-and-phpmyadmin-on-your-onion-omega*Chris MacKay posted 2 months ago reply quote 2
@Josip-Mlakar said:ScriptAlias /php/ "/usr/bin"
I, too, was able to reproduce this error, after following the instructions to the letter.Upon investigation, I found this in the error_log:
"client denied by server configuration: /usr/binphp-cgi"
I adjusted the line ScriptAlias /php/ "/usr/bin" to be ScriptAlias /php/ "/usr/bin/" (notice the trailing /), and it resolved the issue.
Hope that helps!*
Cheers
Steffen
-
Thanks @Steffen-E , I will check this out later tonight