ie
IE8 Downloading docx Files As zip On Apache
Mon, 01/23/2012 - 18:24 | by philipnorton42I recently built a Drupal site on an Apache server sertup and everything seemed fine until someone running IE8 tried to download a .docx file. For some reason IE8 insisted that this file was a .zip file and would open it as such, causing a bit of confusion as to what the problem was. I assumed that this was due to the mime type of the file not being set properly, but I decided to do a quick search to see if I could find anything to corroborate this. I thought it might be something odd that IE8 was doing as everything else was downloading the file perfectly.
Using The view-source Protocol
Thu, 08/28/2008 - 09:43 | by philipnorton42If you are running FireFox (or Chrome) then there is a handy little short cut you can use to view the source of a page you are looking at. If you add the text view-source on any web address then you will see the equivalent of viewing the source of a page (perhaps by pressing Ctrl+u). Although not entirely useful, it does have a couple of benefits, such as being able to view your code in another tab, rather than another window.
PHP Browser Detection
Thu, 03/27/2008 - 11:31 | by philipnorton42Retrieving the current user agent using PHP is done via the use of the $_SESSION super global array. The following line of code will print off your user agent.
echo $_SERVER['HTTP_USER_AGENT'];
For Firefox on Windows this user agent will look like this.