Hello, I have an install of PHP 4.0.3 on a FreeBSD server with multiple virtual hosts. I have added the: ddType application/x-httpd-php .php to the main configuration file, and it only works on the main site. I have configred hundreds of these servers, and this is the only one giving me problems. Any help would be great.
Thanks. Bill
where did you add ddType in httpd.conf? be sure it's not in a <directory> or <virtualhost> tag...
Other than what Mark said, you may also need to add the flag:
php_flag engine on
in your virtual host container.
ex:
<VirtualHost whatever> ....options...
... options ....
</VirtualHost>
Hope it helps. -m.