ispCP - Board - Support
RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: System Setup & Installation (/forum-32.html)
+--- Thread: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel (/thread-5228.html)

Pages: 1 2 3


RE: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - fastgraph - 12-27-2008 08:32 AM

I just switched back to fastcgi on both my servers, problem solved...
I intend to find out why it's not working but can't leave my users without webmail or panel too long...

F.


RE: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - sci2tech - 12-28-2008 02:30 AM

Maybe you do not have a DirectoryIndex index.php directive?


RE: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - eugenesan - 12-28-2008 02:38 AM

I've got it working after reseting ISPCP installation and reinstalling with fastcgi. In addition, I had to downgrade to Ubuntu's original Apache packages, which are much slower then packages prepared by Virtualmin guys.

From logs I understood that the problem is related to suPHP docroot settings.
Those settings probably must be enforced by ISPCP install script to avoid possible problems in future with different Apache flavors.

fcgid still refuses to work.


RE: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - pongraczi - 12-28-2008 05:00 AM

Thank you for your investigation!
Anyway, is there a short fastcgi vs. fcgid?
What should I loose using fastcgi instead of fcgid?


RE: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - joximu - 12-29-2008 12:36 AM

(12-28-2008 02:30 AM)sci2tech Wrote:  Maybe you do not have a DirectoryIndex index.php directive?

no - problem also exists when calling url/index.php

/J


RE: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - sci2tech - 12-29-2008 01:52 AM

I`ll install ubuntu 8.04 and 8.10 and test. Previously I did not have any problems with 8.04. But we need maintainer for all that distros, person that know better how to tweak configurations files. I can`t alone maintain more then 1 distro.


RE: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - pongraczi - 12-29-2008 02:28 AM

(12-29-2008 01:52 AM)sci2tech Wrote:  I`ll install ubuntu 8.04 and 8.10 and test. Previously I did not have any problems with 8.04. But we need maintainer for all that distros, person that know better how to tweak configurations files. I can`t alone maintain more then 1 distro.

If it could help you, I can provide a VPS with 8.10 or 8.04 to you. In this case you do not need to have a new machine/VM.
I use openvz.

Just drop me a PM if you are interesting.

Thanks,
István


RE: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - sci2tech - 12-29-2008 02:43 AM

(12-29-2008 02:28 AM)pongraczi Wrote:  If it could help you, I can provide a VPS with 8.10 or 8.04 to you. In this case you do not need to have a new machine/VM.
I use virtualbox to simulate a new machine, so thank you, but for the moment is not necessary.
Daniel


RE: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - pongraczi - 12-29-2008 03:00 AM

(12-29-2008 02:43 AM)sci2tech Wrote:  I use virtualbox to simulate a new machine, so thank you, but for the moment is not necessary.
Daniel

Ok. I will try to know more about ubuntu, regarding apache/php and its configuration.
Probably I can help you, we will see.

Cheers,
István


RE: RC7 + ubuntu 8.04 + 403 forbidden when access anything, including control panel - pongraczi - 12-29-2008 05:52 AM

Hi,

I compared a working debian config with ubuntu.
It seems only a configuration mismatch caused this problem.
The --- 00_master.conf is the original from the installation.
The +++ sites-available/00_master.conf is the working version.
Code:
# diff -u 00_master.conf sites-available/00_master.conf
--- 00_master.conf      2008-12-23 23:36:48.000000000 +0100
+++ sites-available/00_master.conf      2008-12-28 20:25:48.000000000 +0100
@@ -54,11 +54,11 @@
     <IfModule mod_fcgid.c>
         <Directory /var/www/ispcp/gui>
             FCGIWrapper /var/www/fcgi/master/php5-fcgi-starter .php
-            Options +ExecCGI MultiViews -Indexes
+            Options +ExecCGI
         </Directory>
         <Directory "/var/www/fcgi/master">
             AllowOverride None
-            Options +ExecCGI
+            Options +ExecCGI MultiViews -Indexes
             Order allow,deny
             Allow from all
         </Directory>

Please check it in your system and confirm this solution, if it also working for you.
Thanks,
István