<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Image Caching With PHP</title>
	<atom:link href="http://blog.yoz.sk/2010/05/image-caching-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.yoz.sk/2010/05/image-caching-with-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=image-caching-with-php</link>
	<description>My life, my work</description>
	<lastBuildDate>Thu, 02 Feb 2012 13:37:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Julio</title>
		<link>http://blog.yoz.sk/2010/05/image-caching-with-php/comment-page-1/#comment-4606</link>
		<dc:creator>Julio</dc:creator>
		<pubDate>Mon, 18 Apr 2011 13:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1670#comment-4606</guid>
		<description>Thank you!!! You saved me a lot of work!!!</description>
		<content:encoded><![CDATA[<p>Thank you!!! You saved me a lot of work!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://blog.yoz.sk/2010/05/image-caching-with-php/comment-page-1/#comment-2206</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Tue, 15 Jun 2010 08:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1670#comment-2206</guid>
		<description>I also strongly suggest to let Apache take over.
AFAIK the default settings of Apache will be sufficient for that already.
You should save the generated file to the filesystem under the URL that it is called from. Succeeding requests will then be served statically.

I have done this for the symfony framework in a plugin (http://www.symfony-project.org/plugins/sfImageTransformExtraPlugin) but I&#039;m sure even if you do not use symfony you can get some ideas from the readme.</description>
		<content:encoded><![CDATA[<p>I also strongly suggest to let Apache take over.<br />
AFAIK the default settings of Apache will be sufficient for that already.<br />
You should save the generated file to the filesystem under the URL that it is called from. Succeeding requests will then be served statically.</p>
<p>I have done this for the symfony framework in a plugin (<a href="http://www.symfony-project.org/plugins/sfImageTransformExtraPlugin" rel="nofollow">http://www.symfony-project.org/plugins/sfImageTransformExtraPlugin</a>) but I&#8217;m sure even if you do not use symfony you can get some ideas from the readme.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Image Caching With PHP at Jozef Chúťka&#8217;s blog &#124; とっても！　ちゅどん（雑記帳）</title>
		<link>http://blog.yoz.sk/2010/05/image-caching-with-php/comment-page-1/#comment-2135</link>
		<dc:creator>Image Caching With PHP at Jozef Chúťka&#8217;s blog &#124; とっても！　ちゅどん（雑記帳）</dc:creator>
		<pubDate>Mon, 07 Jun 2010 06:21:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1670#comment-2135</guid>
		<description>[...] Image Caching With PHP at Jozef Chúťka&#8217;s blog [...]</description>
		<content:encoded><![CDATA[<p>[...] Image Caching With PHP at Jozef Chúťka&#8217;s blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 今日のお気に入り / 日本波形 by Kenji</title>
		<link>http://blog.yoz.sk/2010/05/image-caching-with-php/comment-page-1/#comment-2128</link>
		<dc:creator>今日のお気に入り / 日本波形 by Kenji</dc:creator>
		<pubDate>Sun, 06 Jun 2010 04:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1670#comment-2128</guid>
		<description>[...] Image Caching With PHP at Jozef Ch�ťka&#8217;s blog [...]</description>
		<content:encoded><![CDATA[<p>[...] Image Caching With PHP at Jozef Ch�ťka&#8217;s blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jozef Chúťka</title>
		<link>http://blog.yoz.sk/2010/05/image-caching-with-php/comment-page-1/#comment-2106</link>
		<dc:creator>Jozef Chúťka</dc:creator>
		<pubDate>Fri, 04 Jun 2010 07:39:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1670#comment-2106</guid>
		<description>@Anonymous .. in my case I need some extra processing to generate the image and so on. Anyway, I would like to see .htaccess solution, could you post please?</description>
		<content:encoded><![CDATA[<p>@Anonymous .. in my case I need some extra processing to generate the image and so on. Anyway, I would like to see .htaccess solution, could you post please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.yoz.sk/2010/05/image-caching-with-php/comment-page-1/#comment-2104</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 04 Jun 2010 05:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1670#comment-2104</guid>
		<description>Why not just have Apache do this for you using per-filetype caching, expiration, and etag settings in an .htaccess file? IIS has similar settings.

This method introduces the extra overhead of running a PHP script, to do nothing more than what is already a built-in capability of the web server.

Is there some other reason I&#039;m missing here?</description>
		<content:encoded><![CDATA[<p>Why not just have Apache do this for you using per-filetype caching, expiration, and etag settings in an .htaccess file? IIS has similar settings.</p>
<p>This method introduces the extra overhead of running a PHP script, to do nothing more than what is already a built-in capability of the web server.</p>
<p>Is there some other reason I&#8217;m missing here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rafael Kellermann Streit</title>
		<link>http://blog.yoz.sk/2010/05/image-caching-with-php/comment-page-1/#comment-2075</link>
		<dc:creator>Rafael Kellermann Streit</dc:creator>
		<pubDate>Wed, 02 Jun 2010 11:19:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1670#comment-2075</guid>
		<description>Thanks guy! :-)</description>
		<content:encoded><![CDATA[<p>Thanks guy! <img src='http://blog.yoz.sk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

