Apache är installerat korrekt och fungerar,har testat med http://localhost. Php4 är även det installerat korrekt av pakethanteraren, det som dock händer är att när jag öppnar min testfil "testar.php" som ligger i /var/www/localhost/htdocs, så skrivs detta ut:Problem med php4 under vidalinux
<?
phpinfo();
?>
isället för information om datorn etc. Så vad ska jag göra? Jag har följt guide på bl.a. php.net utan resultat. Jag vet inte riktigt vad jag ska göra, vissa guider säger att man ska lägga till AddType application... vissa säger att man inte ska behöva pilla i httpd.conf själv för pakethanteraren fixar det (och det kanske stämmer för i /etc/apache2/modules.d/70_mod_php.conf, så finns redan LoadModule, AddType application.... etc. inlagt).
Så här ser 70_mod_php.conf ut (utan att jag ändrat något):
# vim: ft=apache sw=4 ts=4
<IfDefine PHP4>
# Load the module first
<IfModule !sapi_apache2.c>
LoadModule php4_module modules/libphp4.so
</IfModule>
# Set it to handle the files
<IfModule mod_mime.c>
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .php4
AddType application/x-httpd-php-source .phps
</IfModule>
AddDirectoryIndex index.php index.phtml
</IfDefine>
Jag vore väldigt glad om någon kunde lösa detta, har hållt på i x antal timmar utan resultat :(
PS. Jag startade om apache servern efter varje ändring jag gjorde i conf-filerna.