<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Adnanrafe's Weblog</title>
	<atom:link href="http://adnanrafe.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://adnanrafe.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<pubDate>Thu, 03 Apr 2008 11:34:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>How to fetch Video Image from youtube</title>
		<link>http://adnanrafe.wordpress.com/2008/02/14/how-to-fetch-video-image-from-youtube/</link>
		<comments>http://adnanrafe.wordpress.com/2008/02/14/how-to-fetch-video-image-from-youtube/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 14:21:22 +0000</pubDate>
		<dc:creator>adnanrafe</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[image]]></category>

		<category><![CDATA[thumb]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://adnanrafe.wordpress.com/?p=9</guid>
		<description><![CDATA[Hi I was desperate to make this work when I finally heard of youtube APIs, through which you can actually get all the information of any video from youtube. I will put the source of phpyoutube if someone needs it.
There are few basic steps to do in your PHP code which are as below:
include(&#8221;phpYoutube.php&#8221;);
$dev_id     [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi I was desperate to make this work when I finally heard of youtube APIs, through which you can actually get all the information of any video from youtube. I will put the source of <b>phpyoutube </b>if someone needs it.</p>
<p>There are few basic steps to do in your PHP code which are as below:<br />
include(&#8221;phpYoutube.php&#8221;);</p>
<p>$dev_id     = &#8220;XXXXXXXX&#8221;;<br />
$account     = &#8220;XXXXXXXX&#8221;;<br />
$phpYoutube = new phpYoutube($dev_id);<br />
$videos=print_r($phpYoutube-&gt;videos_getdetails(&#8221;m2fMYM9rJfc&#8221;));<br />
$thumbnail_url = $videos['thumbnail_url'];<br />
echo $thumbnail_url;</p>
<p>This is the simplest way to get the image from youtube using API&#8217;s<br />
Hope this could help someone.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/adnanrafe.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/adnanrafe.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adnanrafe.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adnanrafe.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adnanrafe.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adnanrafe.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adnanrafe.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adnanrafe.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adnanrafe.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adnanrafe.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adnanrafe.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adnanrafe.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adnanrafe.wordpress.com&blog=2379014&post=9&subd=adnanrafe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://adnanrafe.wordpress.com/2008/02/14/how-to-fetch-video-image-from-youtube/feed/</wfw:commentRss>
		</item>
		<item>
		<title>gettext() translation not working on linux</title>
		<link>http://adnanrafe.wordpress.com/2008/02/11/gettext-translation-not-working-on-linux/</link>
		<comments>http://adnanrafe.wordpress.com/2008/02/11/gettext-translation-not-working-on-linux/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 07:25:16 +0000</pubDate>
		<dc:creator>adnanrafe</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[gettext]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[multilingual]]></category>

		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://adnanrafe.wordpress.com/?p=8</guid>
		<description><![CDATA[I need to make few basic changes on my local Windows Server to make gettext run properly. My local server is Windows with apache2.2.1 and php5.
-    Enable the gettext.dll extention in php.ini file
-    Download iconv.dll  and put it under ext folder in PHP, this will enable the iconv [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I need to make few basic changes on my local Windows Server to make gettext run properly. My local server is Windows with apache2.2.1 and php5.<br />
-    Enable the gettext.dll extention in php.ini file<br />
-    Download iconv.dll  and put it under ext folder in PHP, this will enable the iconv  extention.</p>
<p>In your global file in PHP just put this code<br />
<b> $language=$_SESSION['LanguageNm'];<br />
putenv(&#8221;LANG=$language&#8221;);<br />
setlocale(LC_ALL, $language);<br />
$domain = &#8216;messages&#8217;;<br />
include &#8220;locale&#8221;;<br />
bindtextdomain($domain, &#8220;locale&#8221;);<br />
<code><span class="html"> bind_textdomain_codeset (domain, codeset); //Important for getting rid of question marks in translated words</span></code></b><br />
<b> textdomain($domain);</b></p>
<p>For making it run on Linux I had to make a small modification . The issue was on windows I was taking the language variable to be &#8220;es&#8221; or &#8220;ar&#8221; for Spanish or Arabic languages etc. but on linux it needs to be defined in a different way like &#8220;es_ES&#8221; or &#8220;ar_AR&#8221; so just change this line in the above code from<br />
<b><br />
</b><b>    $language=$_SESSION['LanguageNm'];</b><br />
to<br />
<b>$language=$_SESSION['LanguageNm'].&#8221;_&#8221;.strtoupper($_SESSION['LanguageNm'])</b></p>
<p>Hope this could help someone saving precious time</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/adnanrafe.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/adnanrafe.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adnanrafe.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adnanrafe.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adnanrafe.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adnanrafe.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adnanrafe.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adnanrafe.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adnanrafe.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adnanrafe.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adnanrafe.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adnanrafe.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adnanrafe.wordpress.com&blog=2379014&post=8&subd=adnanrafe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://adnanrafe.wordpress.com/2008/02/11/gettext-translation-not-working-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to send multilingual text in mail subject</title>
		<link>http://adnanrafe.wordpress.com/2008/02/08/how-to-send-multilingual-text-in-mail-subject/</link>
		<comments>http://adnanrafe.wordpress.com/2008/02/08/how-to-send-multilingual-text-in-mail-subject/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 09:42:07 +0000</pubDate>
		<dc:creator>adnanrafe</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[arabic]]></category>

		<category><![CDATA[characters]]></category>

		<category><![CDATA[charset]]></category>

		<category><![CDATA[junk]]></category>

		<category><![CDATA[mail]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[subject]]></category>

		<guid isPermaLink="false">http://adnanrafe.wordpress.com/?p=7</guid>
		<description><![CDATA[It took a while for me to understand that you can actually send multilingual characters in Subject of mail. This is easy to integrate if you are hardcoding it within the code, but if you are taking it from the user then you need to make certain changes.
PHP_VALUE mbstring.language    Neutral
PHP_VALUE mbstring.internal_encoding UTF-8
PHP_VALUE mbstring.encoding_translation     On
PHP_VALUE mbstring.http_input [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It took a while for me to understand that you can actually send multilingual characters in Subject of mail. This is easy to integrate if you are hardcoding it within the code, but if you are taking it from the user then you need to make certain changes.</p>
<p>PHP_VALUE mbstring.language    Neutral<br />
PHP_VALUE mbstring.internal_encoding UTF-8<br />
PHP_VALUE mbstring.encoding_translation     On<br />
PHP_VALUE mbstring.http_input auto<br />
PHP_VALUE mbstring.http_output UTF-8<br />
PHP_VALUE mbstring.detect_order    auto<br />
PHP_VALUE mbstring.substitute_character    none<br />
PHP_VALUE default_charset UTF-8</p>
<p>Use mbstring_mail();</p>
<p>Hope this could help somebody.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/adnanrafe.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/adnanrafe.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adnanrafe.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adnanrafe.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adnanrafe.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adnanrafe.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adnanrafe.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adnanrafe.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adnanrafe.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adnanrafe.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adnanrafe.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adnanrafe.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adnanrafe.wordpress.com&blog=2379014&post=7&subd=adnanrafe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://adnanrafe.wordpress.com/2008/02/08/how-to-send-multilingual-text-in-mail-subject/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Parse error: syntax error, unexpected T_OBJECT_OPERATOR RSS</title>
		<link>http://adnanrafe.wordpress.com/2008/01/08/parse-error-syntax-error-unexpected-t_object_operator-rss/</link>
		<comments>http://adnanrafe.wordpress.com/2008/01/08/parse-error-syntax-error-unexpected-t_object_operator-rss/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 12:26:45 +0000</pubDate>
		<dc:creator>adnanrafe</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[parser]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[php parser]]></category>

		<guid isPermaLink="false">http://adnanrafe.wordpress.com/2008/01/08/parse-error-syntax-error-unexpected-t_object_operator-rss/</guid>
		<description><![CDATA[If you are trying to parse an &#8220;XML Feed&#8221; in PHP4  somewhat like this way :
$titles-&#62;item(0)-&#62;nodeValue;
then it wont work in PHP4 because its a chaining process and only works in PHP5
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you are trying to parse an &#8220;XML Feed&#8221; in PHP4  somewhat like this way :<br />
<b>$titles-&gt;item(0)-&gt;nodeValue;</b></p>
<p>then it wont work in PHP4 because its a chaining process and only works in PHP5</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/adnanrafe.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/adnanrafe.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adnanrafe.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adnanrafe.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adnanrafe.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adnanrafe.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adnanrafe.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adnanrafe.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adnanrafe.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adnanrafe.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adnanrafe.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adnanrafe.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adnanrafe.wordpress.com&blog=2379014&post=6&subd=adnanrafe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://adnanrafe.wordpress.com/2008/01/08/parse-error-syntax-error-unexpected-t_object_operator-rss/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SQLserver Error &#8220;string or binary data would be truncated&#8221;</title>
		<link>http://adnanrafe.wordpress.com/2007/12/31/sqlserver-error-string-or-binary-data-would-be-truncated/</link>
		<comments>http://adnanrafe.wordpress.com/2007/12/31/sqlserver-error-string-or-binary-data-would-be-truncated/#comments</comments>
		<pubDate>Mon, 31 Dec 2007 11:00:07 +0000</pubDate>
		<dc:creator>adnanrafe</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://adnanrafe.wordpress.com/2007/12/31/sqlserver-error-string-or-binary-data-would-be-truncated/</guid>
		<description><![CDATA[This error occurs if the length of any user input exceeds the defined length of any column in the table.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This error occurs if the length of any user input exceeds the defined length of any column in the table.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/adnanrafe.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/adnanrafe.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adnanrafe.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adnanrafe.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adnanrafe.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adnanrafe.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adnanrafe.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adnanrafe.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adnanrafe.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adnanrafe.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adnanrafe.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adnanrafe.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adnanrafe.wordpress.com&blog=2379014&post=5&subd=adnanrafe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://adnanrafe.wordpress.com/2007/12/31/sqlserver-error-string-or-binary-data-would-be-truncated/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Enabling mod_rewrite on Linux server</title>
		<link>http://adnanrafe.wordpress.com/2007/12/24/enabling-mod_rewrite-on-linux-server/</link>
		<comments>http://adnanrafe.wordpress.com/2007/12/24/enabling-mod_rewrite-on-linux-server/#comments</comments>
		<pubDate>Mon, 24 Dec 2007 12:36:16 +0000</pubDate>
		<dc:creator>adnanrafe</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[htaccess]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[mod]]></category>

		<category><![CDATA[mod_rewrite]]></category>

		<category><![CDATA[rewrite]]></category>

		<guid isPermaLink="false">http://adnanrafe.wordpress.com/2007/12/24/enabling-mod_rewrite-on-linux-server/</guid>
		<description><![CDATA[Hi friends I really had a hectic time making the friendly URL run on my Linux Server.  Locally being on windows I didn&#8217;t had to do much apart from just enabling the &#8220;mod_rewrite&#8221;  option and thats enough to make the friendly URL work on apache installed locally on my machine.
To make it run [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi friends I really had a hectic time making the friendly URL run on my Linux Server.  Locally being on windows I didn&#8217;t had to do much apart from just enabling the &#8220;<b>mod_rewrite</b>&#8221;  option and thats enough to make the friendly URL work on apache installed locally on my machine.</p>
<p>To make it run on Linux you need to make the following changes in the <b>.htaccess</b> file</p>
<p><b>RewriteEngine On</b><br />
<b></b><b></b><br />
If you have something like http://www.yourdomain.com/index.php?url=test<br />
<b>                                                        or</b></p>
<p>If you have something like http://www.yourdomain.com/news/test working locally then you need to write the following<br />
in your <b>.htaccess</b> file<br />
<b>-    RewriteRule ^([^/\.]+)/?$ /$1.php [L]</b><br />
<b>$1</b> -&gt; This refers to the first parameter and it informs the Apache that its a php file and redirects it accordingly.</p>
<p><b>-    RewriteRule ^([^/\.]+)/([^/\.]+)/?$ /$1.php/$2 [L]<br />
</b><b>$1</b> -&gt; Refers to &#8220;<b>news</b>&#8221; in the  URL mentioned above.<br />
<b>$2 -&gt; </b>Refers to &#8220;<b>test</b>&#8221; in the  URL mentioned above.</p>
<p>So just keep on increasing the slashes as the number of parameters keep on increasing.<br />
<b>&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..</b><br />
<b><br />
-    RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ /$1.php/$2/$3 [L]</b></p>
<p><b>-    RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ /$1.php/$2/$3/$4 [L]</b></p>
<p><b>-    RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ /$1.php/$2/$3/$4/$5 [L]</b></p>
<p>Hope this help would save your precious time to an extent If yes &#8230; leave your comment ..</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/adnanrafe.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/adnanrafe.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adnanrafe.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adnanrafe.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adnanrafe.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adnanrafe.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adnanrafe.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adnanrafe.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adnanrafe.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adnanrafe.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adnanrafe.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adnanrafe.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=adnanrafe.wordpress.com&blog=2379014&post=4&subd=adnanrafe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://adnanrafe.wordpress.com/2007/12/24/enabling-mod_rewrite-on-linux-server/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>