<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tortoise IT &#187; Annoyances</title>
	<atom:link href="http://www.sean-barton.co.uk/tag/annoyances/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sean-barton.co.uk</link>
	<description>Homepage of Sean Barton, a freelance website developer from Cheshire</description>
	<lastBuildDate>Sat, 19 Jun 2010 12:24:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>IE Annoyance when downloading PDFs</title>
		<link>http://www.sean-barton.co.uk/2008/09/ie-annoyance-when-downloading-pdfs/</link>
		<comments>http://www.sean-barton.co.uk/2008/09/ie-annoyance-when-downloading-pdfs/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 15:59:52 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Bug Fixes]]></category>
		<category><![CDATA[Annoyances]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=60</guid>
		<description><![CDATA[I came across this error at work and it took me a good three hours to fix! The problem was when a user tried to download a pdf file from one of our sites in internet explorer. It worked fine in Firefox though! The error message was:
The file could not be written to the cache
Luckily [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this error at work and it took me a good three hours to fix! The problem was when a user tried to download a pdf file from one of our sites in internet explorer. It worked fine in Firefox though! The error message was:</p>
<p><em>The file could not be written to the cache</em></p>
<p>Luckily a far low down on Google had a sensible answer which was to add the following code (PHP) before the call to session_start();</p>
<pre>if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE')) {
    session_cache_limiter("public");
}</pre>
<p>Other sites were talking about security settings in versions of IE below 6 but they didn&#8217;t really help. I thought I would post this in the hope that it helps anyone else that has the same problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sean-barton.co.uk/2008/09/ie-annoyance-when-downloading-pdfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
