<?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>AbhinavZone &#187; cache</title>
	<atom:link href="http://abhinavzone.com/tag/cache/feed/" rel="self" type="application/rss+xml" />
	<link>http://abhinavzone.com</link>
	<description>Technology with fun</description>
	<lastBuildDate>Tue, 17 Jan 2012 18:37:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quick php fix to CSS and Javascript browser cache</title>
		<link>http://abhinavzone.com/quick-php-fix-to-css-and-javascript-browser-cache/</link>
		<comments>http://abhinavzone.com/quick-php-fix-to-css-and-javascript-browser-cache/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 12:04:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.abhinavzone.com/?p=291</guid>
		<description><![CDATA[I am going to post very handy tip for javascript and css files caching. Browsers automatically cache the css and JS files and when you make change to CSS and JS some times change does not appears.
To prevent this use following
&#60;?php
echo '&#60;link rel="stylesheet" type="text/css" href="style.css?' . filemtime('style.css') . '" /&#62;';
?&#62;
And For JS
&#60;?php
echo '&#60;script type="application/javascript"="main.js?' . filemtime('main.js') . '" /&#62;';
?&#62;
The PHP function filemtime returns last modified date of file, so every time you make change in css / JS files the filemtime will return different value and CSS / JS Url ...]]></description>
		<wfw:commentRss>http://abhinavzone.com/quick-php-fix-to-css-and-javascript-browser-cache/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CakePHP Blank Page</title>
		<link>http://abhinavzone.com/cakephp-blank-page/</link>
		<comments>http://abhinavzone.com/cakephp-blank-page/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 07:26:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blank page]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[Cakephp]]></category>
		<category><![CDATA[persistant]]></category>

		<guid isPermaLink="false">http://blog.abhinavzone.com/?p=238</guid>
		<description><![CDATA[When you move cakephp site from 1 server to anothr, you sometimes see blank page even debuging is on. To avoid this alway remember to clear cache. Remove all files from /app/tmp/cache/model and  /app/tmp/cache/persistent.
  ]]></description>
		<wfw:commentRss>http://abhinavzone.com/cakephp-blank-page/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

