In die httpd.conf in deie letze Zeile ein
In die Datei php.conf folgendes:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
##### Installing PHP4
#
#
LoadFile C:/php/php4ts.dll
LoadModule php4_module C:/php/sapi/php4apache2.dll
#####################################################################
#
# PHP 4
#
AddType application/x-httpd-php .php .php4 .phtml
AddType application/x-httpd-php-source .phps
<Filesmatch ".*\.(php4?|phtml)$">
ForceType application/x-httpd-php
</Filesmatch>
DirectoryIndex index.phtml index.php index.php4
<Ifmodule mod_php4.c>
php_admin_flag log_errors on
php_admin_value error_log logs/php4_err.log
</Ifmodule>
<Ifmodule !mod_php4.c>
# mod_php4 not loaded, use php4 as cgi
ScriptAlias /php4/ C:/php/
Action application/x-httpd-php /php4/php.exe
</Ifmodule>
#
#
#######################################################################
############## End of php.conf