>I've added the lines:
>    AddType application/x-httpd-php .php
>    AddType application/x-httpd-php-source .phps
>to my httpd.conf file

Maybe try adding:
        AddType application/x-httpd-php4 .php
        
instead of:
        AddType application/x-httpd-php .php

It depends on how you did the Action stuff. If you did:
        Action application/x-httpd-php4 "/php4/php.exe"

then you should use:
        AddType application/x-httpd-php4 .php

but if you did:
        Action application/x-httpd-php "/php4/php.exe"

then you should use:
        AddType application/x-httpd-php .php

That might work, it might not.

--Jason

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to