<?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>Some PHP &#124; Wordpress Tips</title>
	<atom:link href="http://worth2read.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://worth2read.org</link>
	<description>The notes I am writing here help me ( may be others also ) to remember the solutions I figured out for the wordpress / PHP issues I have come across ...</description>
	<lastBuildDate>Wed, 21 Sep 2011 02:29:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Redirect to another domain using web.config file</title>
		<link>http://worth2read.org/?p=318</link>
		<comments>http://worth2read.org/?p=318#comments</comments>
		<pubDate>Tue, 13 Sep 2011 08:06:27 +0000</pubDate>
		<dc:creator>Gisha James</dc:creator>
				<category><![CDATA[windows server]]></category>

		<guid isPermaLink="false">http://worth2read.org/?p=318</guid>
		<description><![CDATA[&#60;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&#62; &#60;configuration&#62; &#60;system.webServer&#62; &#60;rewrite&#62; &#60;rules&#62; &#60;rule name=&#8221;Redirect to newdomain.com&#8221;&#62; &#60;match url=&#8221;(.*)&#8221; /&#62; &#60;conditions&#62; &#60;add input=&#8221;{SERVER_PORT}&#8221; pattern=&#8221;443&#8243; negate=&#8221;true&#8221; /&#62; &#60;/conditions&#62; &#60;action type=&#8221;Redirect&#8221; url=&#8221;http://www.newdomain.com/{R:1}&#8221; /&#62; &#60;/rule&#62; &#60;/rules&#62; &#60;/rewrite&#62; &#60;/system.webServer&#62; &#60;/configuration&#62;]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D318"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D318&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;</p>
<p>&lt;configuration&gt;</p>
<p>&lt;system.webServer&gt;</p>
<p>&lt;rewrite&gt;</p>
<p>&lt;rules&gt;</p>
<p>&lt;rule name=&#8221;Redirect to newdomain.com&#8221;&gt;<br />
&lt;match url=&#8221;(.*)&#8221; /&gt;<br />
&lt;conditions&gt;<br />
&lt;add input=&#8221;{SERVER_PORT}&#8221; pattern=&#8221;443&#8243; negate=&#8221;true&#8221; /&gt;<br />
&lt;/conditions&gt;<br />
&lt;action type=&#8221;Redirect&#8221; url=&#8221;http://www.newdomain.com/{R:1}&#8221; /&gt;<br />
&lt;/rule&gt;<br />
&lt;/rules&gt;</p>
<p>&lt;/rewrite&gt;</p>
<p>&lt;/system.webServer&gt;</p>
<p>&lt;/configuration&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/?feed=rss2&amp;p=318</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove user name from wordpress register form</title>
		<link>http://worth2read.org/?p=311</link>
		<comments>http://worth2read.org/?p=311#comments</comments>
		<pubDate>Tue, 29 Mar 2011 14:48:13 +0000</pubDate>
		<dc:creator>Gisha James</dc:creator>
				<category><![CDATA[Wordpress Customization]]></category>

		<guid isPermaLink="false">http://worth2read.org/?p=311</guid>
		<description><![CDATA[Credit for this tip goes to http://www.alexbarnettdesign.com/coding/removal-of-username-at-wordpress-register-page/. WordPress needs a unique user name. But many people forget their user name and likes to login with their email id, which is easy to remember. What we can do is create a function to generate a random user name and call that function as value for user <a href='http://worth2read.org/?p=311'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D311"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D311&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Credit for this tip goes to http://www.alexbarnettdesign.com/coding/removal-of-username-at-wordpress-register-page/.</p>
<p>WordPress needs a unique user name. But many people forget their user name and likes to login with their email id, which is easy to remember.</p>
<p>What we can do is create a function to generate a random user name and call that function as value for user name field. Then we can assign &#8220;hidden&#8221; type for the input field of user name.</p>
<p>Here is the function to generate random user name.</p>
<pre><code>
function generate_random_username($length = 6) {

    $char = array("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x","y", "z");

    $rand = array_rand($char, $length - 5);

    $str = "";
    foreach ($rand as $k =&gt; $v) {

        $str .= $char[$v];

    }

    $str .= substr(time(), -5);

    return $str;

}
</code></pre>
<p>Add the above code to function.php in your theme folder.</p>
<p>Edit type and value field of user_login in wp-register.php in the root folder.</p>
<p>Make type as hidden and value as echo generate_random_username(14)</p>
<p>14 is the length of user name.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/?feed=rss2&amp;p=311</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activating Plugin causes Error 500</title>
		<link>http://worth2read.org/?p=307</link>
		<comments>http://worth2read.org/?p=307#comments</comments>
		<pubDate>Mon, 28 Mar 2011 13:42:28 +0000</pubDate>
		<dc:creator>Gisha James</dc:creator>
				<category><![CDATA[Wordpress Customization]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://worth2read.org/?p=307</guid>
		<description><![CDATA[When I tried to activate NextGenGallery on a client site, I was getting the error: 500 Internal server error. Found a number of solutions in different sites for the issue. None of them worked for me except the following: Add AddType x-mapp-php5 .php to .htaccess file to make the php files run with php5, since <a href='http://worth2read.org/?p=307'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D307"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D307&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>When I tried to activate NextGenGallery on a client site, I was getting the error: 500 Internal server error.</p>
<p>Found a number of solutions in different sites for the issue. None of them worked for me except the following:</p>
<p>Add AddType x-mapp-php5 .php to .htaccess file to make the php files run with php5, since Apache by default may be running an earlier version of php.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/?feed=rss2&amp;p=307</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wp-ecommerce &#8211; google checkout error and fix</title>
		<link>http://worth2read.org/?p=301</link>
		<comments>http://worth2read.org/?p=301#comments</comments>
		<pubDate>Fri, 21 Jan 2011 03:42:17 +0000</pubDate>
		<dc:creator>Gisha James</dc:creator>
				<category><![CDATA[Wordpress Customization]]></category>

		<guid isPermaLink="false">http://worth2read.org/?p=301</guid>
		<description><![CDATA[Error: Error parsing XML; message from parser is: Invalid value for body of continue-shopping-url in checkout-shopping-cart/checkout-flow-support/merchant-checkout-flow-support: URL contains illegal characters Fix: Check the field wp-admin &#8212;> Store &#8211;> Settings &#8211;> Admin &#8211;> Transaction Details URL It should be a valid link.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D301"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D301&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Error: Error parsing XML; message from parser is: Invalid value for body of continue-shopping-url in checkout-shopping-cart/checkout-flow-support/merchant-checkout-flow-support: URL contains illegal characters </p>
<p>Fix: Check the field wp-admin &#8212;> Store &#8211;> Settings &#8211;> Admin &#8211;> Transaction Details URL</p>
<p>It should be a valid link.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/?feed=rss2&amp;p=301</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some helpful information for writing a plugin</title>
		<link>http://worth2read.org/?p=280</link>
		<comments>http://worth2read.org/?p=280#comments</comments>
		<pubDate>Thu, 09 Sep 2010 02:57:24 +0000</pubDate>
		<dc:creator>Gisha James</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=280</guid>
		<description><![CDATA[I am sharing 2 simple plugins I did, so it will be helpful for new plugin writers. My client wanted to add an award section. That is, he wanted to assign an award for some post and display it in the front end under the title of the post. Each award has an image also. <a href='http://worth2read.org/?p=280'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D280"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D280&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I am sharing 2 simple plugins I did, so it will be helpful for new plugin writers.</p>
<p>My client wanted to add an award section. That is, he wanted to assign an award for some post and display it in the front end under the title of the post. Each award has an image also.</p>
<p>So first he needs to create the awards. For that I wrote this <a href="http://worth2read.org/blog/awards.txt">plugin</a>.</p>
<p>Now I have to display these awards when editing a post/ adding a new post.</p>
<p>For that I used the following plugin: <a href="http://worth2read.org/blog/award_custom.txt">Adding custom box</a></p>
<p>This plugin will save the award id as post meta. Later in the theme page we can call the post meta and display the award.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/?feed=rss2&amp;p=280</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to allow users to post only in some categories: wordpress</title>
		<link>http://worth2read.org/?p=273</link>
		<comments>http://worth2read.org/?p=273#comments</comments>
		<pubDate>Mon, 06 Sep 2010 07:04:27 +0000</pubDate>
		<dc:creator>Gisha James</dc:creator>
				<category><![CDATA[Wordpress Customization]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[restrict categories]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=273</guid>
		<description><![CDATA[The following code will be useful if you want to allow users to post only in some categories. function restrict_categories($categories) { // If we are in the new/edit post page and not an admin, then restrict the categories $onPostPage = (strpos($_SERVER['PHP_SELF'], 'post.php') &#124;&#124; strpos($_SERVER['PHP_SELF'], 'post-new.php')); if (is_admin() &#38;&#38; $onPostPage &#38;&#38; !current_user_can('level_10')) { $size = count($categories); <a href='http://worth2read.org/?p=273'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D273"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D273&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The following code will be useful if you want to allow users to post only in some categories.</p>
<pre>
<code>
function restrict_categories($categories) {
// If we are in the new/edit post page and not an admin, then restrict the categories
$onPostPage = (strpos($_SERVER['PHP_SELF'], 'post.php') || strpos($_SERVER['PHP_SELF'], 'post-new.php'));
if (is_admin() &amp;&amp; $onPostPage &amp;&amp; !current_user_can('level_10')) {
$size = count($categories);
for ($i = 0; $i &lt; $size; $i++) {			 			if ($categories[$i]-&gt;slug != 'user-created-articles' &amp;&amp; $categories[$i]-&gt;slug != 'user-created-content' &amp;&amp; $categories[$i]-&gt;slug != 'user-created-disagreements'&amp;&amp; $categories[$i]-&gt;slug != 'user-created-reviews')
unset($categories[$i]);
}
}
return $categories;
}
add_filter('get_terms', 'restrict_categories');
</code></pre>
<p>In the above code it checks the category slug. Admin can post in any categories, but other users can post only in the categories, where slug is either &#8220;user-created-articles&#8221; or &#8220;user-created-articles&#8221; or &#8220;user-created-disagreements&#8221; or &#8220;user-created-reviews&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/?feed=rss2&amp;p=273</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Permit contributors to upload images in wordpress</title>
		<link>http://worth2read.org/?p=263</link>
		<comments>http://worth2read.org/?p=263#comments</comments>
		<pubDate>Fri, 03 Sep 2010 01:17:18 +0000</pubDate>
		<dc:creator>Gisha James</dc:creator>
				<category><![CDATA[Wordpress Customization]]></category>
		<category><![CDATA[contributor]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[upload]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=263</guid>
		<description><![CDATA[By adding the following code to functions.php in your theme file you can permit contributors to upload images. if ( current_user_can('contributor') &#38;&#38; !current_user_can('upload_files') ) add_action('admin_init', 'allow_contributor_uploads'); function allow_contributor_uploads() { $contributor = get_role('contributor'); $contributor-&#62;add_cap('upload_files'); }]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D263"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D263&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>By adding the following code to functions.php in your theme file you can permit contributors to upload images.</p>
<pre><code>if ( current_user_can('contributor') &amp;&amp; !current_user_can('upload_files') )
	add_action('admin_init', 'allow_contributor_uploads');

function allow_contributor_uploads() {
	$contributor = get_role('contributor');
	$contributor-&gt;add_cap('upload_files');
}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/?feed=rss2&amp;p=263</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain name redirecting to /cgi-sys/defaultwebpage.cgi</title>
		<link>http://worth2read.org/?p=257</link>
		<comments>http://worth2read.org/?p=257#comments</comments>
		<pubDate>Thu, 02 Sep 2010 04:22:18 +0000</pubDate>
		<dc:creator>Gisha James</dc:creator>
				<category><![CDATA[web hosting]]></category>
		<category><![CDATA[issues in webhosting]]></category>
		<category><![CDATA[redirecting to /cgi-sys/defaultwebpage.cgi]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=257</guid>
		<description><![CDATA[For a client, in whm &#8211; cpanel after uploading all files to the root I got a confusing redirection which goes to /cgi-sys/defaultwebpage.cgi when I go to the domain name. The page showed the message &#8220;Cpanel is successfully installed&#8221; etc&#8230; Here is the solution to resolve the issue of redirection. Edit httpd.conf . In the <a href='http://worth2read.org/?p=257'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D257"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D257&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>For a client, in whm &#8211; cpanel after uploading all files to the root I got a confusing redirection which goes to  /cgi-sys/defaultwebpage.cgi when I go to the domain name.</p>
<p>The page showed the message &#8220;Cpanel is successfully installed&#8221; etc&#8230;</p>
<p>Here is the solution to resolve the issue of redirection.</p>
<p>Edit httpd.conf . In the server there is Apache Configuration &#8211;&gt; Include Editor &#8211;&gt; post virtual host include</p>
<p>There write</p>
<pre><code>&lt;VirtualHost XXX.XX.XXX.XXX:80&gt;
ServerName www.yourdomain.com
DocumentRoot /home/yourdom/public_html
ServerAdmin webmaster@yourdomain.com
UserDir disable
&lt;/VirtualHost&gt;
</code></pre>
<p>XXX.XX.XXX.XXX &#8211; should be replaced by your ip address.</p>
<p>yourdom &#8211; has to be replaced by your domain name.</p>
<p>Then restart Apache.</p>
<p>It should remove the redirection.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/?feed=rss2&amp;p=257</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Adding total depending on the selected checkbox</title>
		<link>http://worth2read.org/?p=239</link>
		<comments>http://worth2read.org/?p=239#comments</comments>
		<pubDate>Fri, 06 Aug 2010 04:22:12 +0000</pubDate>
		<dc:creator>Gisha James</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=239</guid>
		<description><![CDATA[Example : &#60;form action="" method="post" name="form1" id="form1"&#62; &#60;input type="checkbox" name="install1" id="install1" onclick="calculate()" value="225" /&#62; &#60;input type="checkbox" name="install2" id="install2" onclick="calculate()" value="375" /&#62; &#60;input type="checkbox" name="package3" id="package3" onclick="calculate()" value="50" /&#62; &#60;input type="text" id="total" name="total"  size="6" /&#62; &#60;/form&#62; Following is the javascript needed to calculate the total. &#60;script type="text/javascript"&#62; function calculate() { var elems = document.forms['form1'].elements; var total <a href='http://worth2read.org/?p=239'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D239"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D239&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Example :</p>
<pre><code>
&lt;form action="" method="post" name="form1" id="form1"&gt;
&lt;input type="checkbox" name="install1" id="install1" onclick="calculate()" value="225" /&gt;

&lt;input type="checkbox" name="install2" id="install2" onclick="calculate()" value="375" /&gt;

&lt;input type="checkbox" name="package3" id="package3" onclick="calculate()" value="50" /&gt;

&lt;input type="text" id="total" name="total"  size="6" /&gt;

&lt;/form&gt;</code></pre>
<p>Following is the javascript needed to calculate the total.<br />
<code>
<pre>
&lt;script type="text/javascript"&gt;
function calculate() {
var elems = document.forms['form1'].elements;
var total = 0;
for(var i=0;i&lt;elems.length;i++) {
if (elems[i].checked) {total += +(elems[i].value);}
}
elems['total'].value = total;
}
&lt;/script&gt;
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/?feed=rss2&amp;p=239</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating paypal to PHP website</title>
		<link>http://worth2read.org/?p=237</link>
		<comments>http://worth2read.org/?p=237#comments</comments>
		<pubDate>Fri, 06 Aug 2010 04:15:04 +0000</pubDate>
		<dc:creator>Gisha James</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=237</guid>
		<description><![CDATA[While searching for paypal integration, I got this beautiful class from internet. http://www.micahcarrick.com/php-paypal-ipn-integration-class.html Thanks Micah Carrick, it is perfect for my work. I am not explaining much about this integration because if you download it from the above link, it is well documented in the file. So I don&#8217;t want to repeat it here.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D237"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fworth2read.org%2F%3Fp%3D237&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>While searching for paypal integration, I got this beautiful class from internet.</p>
<p>http://www.micahcarrick.com/php-paypal-ipn-integration-class.html</p>
<p>Thanks Micah Carrick, it is perfect for my work.</p>
<p>I am not explaining much about this integration because if you download it from the above link, it is well documented in the file.</p>
<p>So I don&#8217;t want to repeat it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/?feed=rss2&amp;p=237</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

