Zuletzt bearbeitet vor 3 Wochen
von Xineohp1506

Plesk

Version vom 30. Oktober 2024, 09:41 Uhr von Xineohp1506 (Diskussion | Beiträge) (1 Version importiert)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)

Wenn Plesk bei einer Domain oder SubDomain nicht php parsen will, hilft es folgendes in die vhost einzutragen. Der Auskommentierte Teil ist optional.

#ServerName  www.domain.de:80 
#ServerAdmin  "dev@domain.de" 
DocumentRoot /srv/www/vhosts/domain.de/httpdocs 
#CustomLog  /srv/www/vhosts/domain.de/statistics/logs/access_log plesklog 
#ErrorLog  /srv/www/vhosts/domain.de/statistics/logs/error_log 
<IfModule mod_ssl.c> 
    SSLEngine off 
</IfModule> 
<Directory  /srv/www/vhosts/domain.de/httpdocs> 
    <IfModule sapi_apache2.c> 
            php_admin_flag engine on 
    </IfModule> 
    <IfModule mod_php5.c> 
            php_admin_flag engine on 
    </IfModule> 
</Directory>