PHP Handler?

Markoetie

Verified User
Joined
Aug 19, 2008
Messages
41
Hi,

When opening a site with IE9, instead of opening the website, it wants to download and open the PHP file. But when opening the same site with some other browser as Chrome or FireFox it works just fine.. I can't seem to find anything in the apache logs.

www.webcamcenter.nl

Anyone knows why?
 
Hello,

Your settings are wrong, it might be .htaccess file or custom code for apache, or main apache configs, anyway your server returns:

Code:
Content-Type: utf-8

instead of

Code:
Content-Type: text/html; charset=utf-8

So you should find and fix it.
 
The website itself has charset=iso-8859-1 specified in html. You could probably just remove the utf8 specification somewhere in either htaccess apache or php header(), or correct it like zEitEr says, but be sure to have a correct one and the same everywhere.
 
Back
Top