PHP4 funktioniert nicht!
PHP4 funktioniert nicht!
Nach der Installation mit APT-GET von Apache und PHP4 funktioniert der Apache einwandfrei, werden PHP-Scripte über den Browser aufgerufen, werden diese nicht ausgeführt, sondern es wird ein Download versucht. Was muß ich noch machen?
- durztbrother
- Beiträge: 235
- Registriert: 27.01.2003 23:23:48
- Wohnort: Hamburg
Hallo,
du must das Modul in /etc/apache/httpd.conf eintragen:
und ein Stück weiter unten:
anschließend noch ein restart vom Webserver!
Viele Grüße
Patrick
du must das Modul in /etc/apache/httpd.conf eintragen:
Code: Alles auswählen
LoadModule php4_module /usr/lib/apache/1.3/libphp4.so
Code: Alles auswählen
# AddType allows you to tweak mime.types without actually editing
# it, or to make certain files to be certain types.
#
# For example, the PHP 3.x module (not part of the Apache
# distribution - see http://www.php.net) will typically use:
#
#AddType application/x-httpd-php3 .php3
#AddType application/x-httpd-php3-source .phps
#
# And for PHP 4.x, use:
#
AddType application/x-httpd-php .php
#AddType application/x-httpd-php-source .phps
Code: Alles auswählen
/etc/init.d/apache restart
Patrick