PHP4 und PHP5 auf einem Apache

PeterOG

New Member
Hallo,

auf meinem Server ist Suse 10.1 und PHP5 installiert.
Da ich aber PHP4 noch brauche probiere ich schon den ganzen Tag PHP4 zum Laufen zu bekommen.

Ich hab bei Google auch die verschiedensten Anleitungen gefunden, jedoch ist mir bisher nur die Installation und nicht die Einbindung gelungen.

Ich habe PHP4 von "www.php.net" gesaugt, in den Ordner "/usr/local/bin/php-4.4.7" entpackt, "./config" durchgeführt, "make" gestartet und dann "make install".

Wenn ich "./php -v" eingebe wird mir dies auch bestätigt
Code:
/usr/local/bin/php-4.4.7/bin # ./php -v
PHP 4.4.7 (cgi-fcgi) (built: Sep 28 2007 16:49:53)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies

Aber ich schaffe es nicht von PHP5 auf PHP4 umzuschalten.

Wenn ich z.B. in die .htaccess "AddType x-mapp-php4 .php" eintrage wird der PHP Code ungeparset ausgegeben also PHP läuft dann gar nicht.

Ich habe auch schon probiert in /etc/apache2/conf.d eine php4.conf zu erstellen mit dem Inhalt
Code:
#Configuration file for PHP 4.x
# --
# It may be linked to /etc/httpd/conf.d/php.conf
# in order to switch to PHP 4.x from PHP 5.x

LoadModule php4_module modules/libphp4.so
AddType application/x-httpd-php .php .php4
DirectoryIndex index.php index.php4

Die httpd.conf habe ich auch schon von PHP5 in PHP4 geändert.

Kann mir bitte bitte jemand ein Tip geben wie ich von PHP5 auf PHP4 umschalten kann?
 
Last edited by a moderator:
Back
Top