• This forum has a zero tolerance policy regarding spam. If you register here to publish advertising, your user account will be deleted without further questions.

ISPCP - kein php Parsing

Powie

Registered User
Würde eigentlich auch in andere Foren passen aber eventuell ist das ein ISPCP Problem. Ist nicht meine Maschine, ich versuche aber gerade für den Besitzer das Problem einzugrenzen:

Maschine: Sebian Squeeze - Apache 2 - php 5.3
ISPCP: 1.0.7

Habe einen angelegten Kunden in ISPCP, es wird aber kein php geparsed. Scripte werden im Browser angezeigt, alles zwischen <?php und ?> verschwindet.
Error Logs Fehlanzeige, da gibt es keine Hinweise.

Wie kann ich anfangen das einzugrenzen. FCGI ?
 
Wahrscheinlich ist kein fcgi-Handler angelegt damit dieser sich auch dafuer zustaendig fuehlt.

Vermutlich bedeutet dies aber dass du IspCP schlichtwegs falsch konfiguriert hast; wie sind die Optionen da eingestellt?
 
Der Handler dafür ist existent, auf der Maschine sind sowohl php 5.2.17 als auch 5.3.3. Auf anderen Kundenaccounts läuft die php Sache problemlos... php ist für den Kunden definitiv aktiviert...
 
so sieht das aus:

Code:
<VirtualHost 10.99.1.30:80>

    <IfModule suexec_module>
           SuexecUserGroup vu2031 vu2031
    </IfModule>

    ServerAdmin     webmaster@***.de
    DocumentRoot    /var/www/virtual/***.de/htdocs

    ServerName      ***.de
    ServerAlias     www.***.de ***.de vu2031.admin.webserver1***.de

    Alias /errors   /var/www/virtual/***.de/errors/

    ErrorDocument 401 /errors/401.html
    ErrorDocument 403 /errors/403.html
    ErrorDocument 404 /errors/404.html
    ErrorDocument 500 /errors/500.html
    ErrorDocument 503 /errors/503.html

    <IfModule mod_cband.c>
        CBandUser ***.de
    </IfModule>

    # httpd awstats support BEGIN.

   # httpd awstats support END.
    # httpd dmn entry cgi support BEGIN.
    ScriptAlias /cgi-bin/ /var/www/virtual/***.de/cgi-bin/
    <Directory /var/www/virtual/***.de/cgi-bin>
        AllowOverride AuthConfig
        #Options ExecCGI
        Order allow,deny
        Allow from all
    </Directory>
    # httpd dmn entry cgi support END.

    <Directory /var/www/virtual/***.de/htdocs>
        # httpd dmn entry PHP support BEGIN.
        # httpd dmn entry PHP support END.
        Options -Indexes Includes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>

    # httpd dmn entry PHP2 support BEGIN.
    <IfModule mod_php5.c>
        php_admin_value open_basedir "/var/www/virtual/service.***.de/:/var/www/virtual/service.***.de/phptmp/:/usr
        php_admin_value upload_tmp_dir "/var/www/virtual/service.***.de/phptmp/"
        php_admin_value session.save_path "/var/www/virtual/service.***.de/phptmp/"
        php_admin_value sendmail_path '/usr/sbin/sendmail -f vu2031 -t -i'
    </IfModule>
    <IfModule mod_fastcgi.c>
        ScriptAlias /php5/ /var/www/fcgi/service.***.de/
        <Directory "/var/www/fcgi/service.***.de">
            AllowOverride None
            Options +ExecCGI -MultiViews -Indexes
            Order allow,deny

        <Directory "/var/www/fcgi/service.***.de">
            AllowOverride None
            Options +ExecCGI -MultiViews -Indexes
            Order allow,deny
            Allow from all
        </Directory>
    </IfModule>
    <IfModule mod_fcgid.c>
        <Directory /var/www/virtual/service.***.de/htdocs>
            FCGIWrapper /var/www/fcgi/service.***.de/php5-fcgi-starter .php
            Options +ExecCGI
        </Directory>
        <Directory "/var/www/fcgi/service.***.de">
            AllowOverride None
            Options +ExecCGI MultiViews -Indexes
            Order allow,deny
            Allow from all
        </Directory>
    </IfModule>
    # httpd dmn entry PHP2 support END.

    Include /etc/apache2/ispcp/service.***.de.conf

</VirtualHost>
 
Back
Top