php4-cgi installieren und die Apache Konfiguration anpassen.
Das mußt du gar nicht anpassenUm das Apache Modul anzupassen
Bei fast 20000 Threads im Forum wäre ein Link hilfreichwie in dem HowTo hier im Forum? Da wurde es umgedreht beschrieben.
Siehe /usr/share/doc/php4-cgi/README.Debian.gz:Oder gibt es direkt eine Allgemein-Lösung?
To use php4-cgi with apache2
1) activate CGI (it's on by default in default debian setups)
a) If using the prefork MPM, use 'a2enmod cgi'
b) If using a threaded MPM, use 'a2enmod cgid'
2) activate mod_actions (a2enmod actions)
3) Add the following to a config snippet in /etc/apache2/conf.d
<IfModule mod_actions.c>
[color=red]AddType application/x-httpd-php4 .php4[/color]
Action application/x-httpd-php[color=red]4[/color] /cgi-bin/php4
</IfModule>
Restarting your web server after installing modules
<IfModule mod_actions.c>
AddType application/x-httpd-php4 *.php4 *.php5
Action application/x-httpd-php4 /cgi-bin/php4
</IfModule>
Restarting your web server after installing modules
[/code]Das Rote hab ich ergänzt damit *.php weiterhin PHP5 bleibt, *.php4 wird mit PHP4 ausgeführt
Die obigen Zeilen kannst du sowohl in die allgemeine Konfiguration als auch in VirtualHost oder Directory Abschnitte schreiben. Sogar in htaccess ist (mit etwas Anpassung und mit den entsprechenenden Berechtigungen) ein ändern des PHP Interpreters möglich.Wie und wo definiere ich die entsprechende php version für das web oder den ordner?
We use essential cookies to make this site work, and optional cookies to enhance your experience.