php_value problem i Virtualhost opsætning i apache
Jeg skal have denne virtualhost til at virke i apache:<VirtualHost 192.168.1.2:80>
ServerAdmin admin@ljr.dk
ServerName webmail.ljr.dk
DocumentRoot /home/www/ljr.dk/webmail
ScriptAlias /cgi-bin/ \"/home/www/ljr.dk/cgi-bin/\"
ErrorLog logs/webmail.ljr.dk-error_log
CustomLog logs/webmail.ljr.dk-access_log common
<Directory \"/home/www/ljr.dk/webmail\">
Options Indexes FollowSymlinks
AllowOverride none
Order Allow,Deny
Allow from All
<IfModule mod_php3.c>
php3_include_path \'/usr/local/horde/phplib:.\'
php3_auto_prepend_file /usr/local/horde/phplib/prepend.php3
php3_magic_quotes_gpc Off
php3_track_vars On
</IfModule>
<IfModule mod_php4.c>
#php_value include_path \'/usr/local/horde/phplib:.\'
#php4_value auto_prepend_file /usr/local/horde/phplib/prepend.php3
php_flag register_globals On
php_flag magic_quotes_gpc Off
php_flag track_vars On
</IfModule>
</Directory>
</VirtualHost>
Når jeg prøver at starte apache, så kommer den med denne meddelelse:
Starting httpd: Syntax error on line 1105 of /etc/httpd/conf/httpd.conf:
Invalid command \'php4_value\', perhaps mis-spelled or defined by a module not included in the server configuration
Hvilket modul mangler jeg at aktivere/installere ?
