This is the .htaccess problem described in the FAQ here
http://www.dew-code.com/content/view/14/25/
Basically you need to determine which line your server likes in the .htaccess file.
Which it likes depends on what version of Apache your server runs, and how it is configured. It is also possible your account is simply not allowed to change the necessary directives.
Edit your .htaccess file so it looks like this ..
| Code: |
<Files directory>
ForceType application/x-httpd-php
#SetHandler application/x-httpd-php
#SetHandler application/x-httpd-php5
#ForceType x-httpd-php
</Files>
|
and try browsing your installation. If it doesn;t work, try the next variation
| Code: |
<Files directory>
#ForceType application/x-httpd-php
SetHandler application/x-httpd-php
#SetHandler application/x-httpd-php5
#ForceType x-httpd-php
</Files>
|
try a couple of page views before moving on to the next variation. Some servers do not react to teh change immediately.