ispCP - Board - Support
[SOLVED] Upgrade result: 404 - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: Update/Upgrade (/forum-44.html)
+--- Thread: [SOLVED] Upgrade result: 404 (/thread-5903.html)

Pages: 1 2


RE: Upgrade result: 404 - sci2tech - 03-04-2009 02:40 AM

Next step:
/etc/apache2/sites-enabled/00_master.conf:
Code:
<Directory /var/www/ispcp/gui>
        Options -Indexes Includes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>

    <IfModule mod_fcgid.c>
        <Directory /var/www/ispcp/gui>
            FCGIWrapper /var/www/fcgi/master/php5-fcgi-starter .php
            Options +ExecCGI
        </Directory>
        <Directory "/var/www/fcgi/master">
            AllowOverride None
            Options +ExecCGI MultiViews -Indexes
            Order allow,deny
            Allow from all
        </Directory>
    </IfModule>
    <IfModule mod_fastcgi.c>
        ScriptAlias /php5/ /var/www/fcgi/master/
        <Directory "/var/www/fcgi/master">
            AllowOverride None
            Options +ExecCGI MultiViews -Indexes
            Order allow,deny
            Allow from all
        </Directory>
    </IfModule>



RE: Upgrade result: 404 - WolFree - 03-04-2009 02:51 AM

Identical.


RE: Upgrade result: 404 - sci2tech - 03-04-2009 03:24 AM

Try to remove php5-fcgi-starter from master dir, then perform an update, this time select as version RC6 to rebuild php5-fcgi-starter


RE: Upgrade result: 404 - WolFree - 03-04-2009 03:45 AM

last solution worked.

- Delete php5-fcgi-starter
- Perform Update as RC6

solved for me, thx sci2tech


RE: [SOLVED] Upgrade result: 404 - sci2tech - 03-04-2009 04:19 AM

Glad to help Wink