<?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>Ring Of Blogs &#187; plugin</title>
	<atom:link href="http://www.ringofblogs.com/category/plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ringofblogs.com</link>
	<description>Blogging, WordPress MU, monetization, tips, how to and reviews</description>
	<lastBuildDate>Thu, 13 Oct 2011 15:18:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>A note for WordPress database backup plugin</title>
		<link>http://www.ringofblogs.com/2010/02/21/a-note-for-wordpress-database-backup-plugin/</link>
		<comments>http://www.ringofblogs.com/2010/02/21/a-note-for-wordpress-database-backup-plugin/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 11:23:56 +0000</pubDate>
		<dc:creator>Elad</dc:creator>
				<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[backup]]></category>

		<guid isPermaLink="false">http://www.ringofblogs.com/?p=351</guid>
		<description><![CDATA[If you are running WordPress and using the WordPress Database Backup plugin you should read this post. WP-DB-Backup allows you easily to backup your core WordPress database tables. You may also backup other tables in the same database. By default, the plugin backs up the core tables from a predefined list hard coded in the [...]]]></description>
			<content:encoded><![CDATA[<p>If you are running WordPress and using the <a href="http://wordpress.org/extend/plugins/wp-db-backup/">WordPress Database Backup plugin</a> you should read this post.</p>
<p>WP-DB-Backup allows you easily to backup your core WordPress database tables. You may also backup other tables in the same database. By default, the plugin backs up the core tables from a predefined list hard coded in the plugin file. Other tables may be added to the list manually.</p>
<p style="text-align: center;"><a href="http://www.ringofblogs.com/wp-content/uploads/2010/02/backup-commentmeta.png" rel="lightbox[351]"><img class="size-full wp-image-354 aligncenter" title="WordPress Database Backup plugin's options" src="http://www.ringofblogs.com/wp-content/uploads/2010/02/backup-commentmeta.png" alt="WordPress Database Backup plugin's options" width="467" height="317" /></a></p>
<p>The plugin&#8217;s last version, 2.2.2, came out just after WordPress version 2.7. However, in WordPress version 2.9 a new <code>commentmeta</code> core table was added. This new table is not in the plugin&#8217;s list of tables so, by default, it is not being backed up and a manual selection is needed.</p>
<p>If you are using this plugin make sure you select the <code>commentmeta</code> table or you might face a problem when in need for a backup restore.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ringofblogs.com/2010/02/21/a-note-for-wordpress-database-backup-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPMU new blog settings plugin &#8211; updated</title>
		<link>http://www.ringofblogs.com/2008/07/31/wpmu-new-blog-settings-plugin-updated/</link>
		<comments>http://www.ringofblogs.com/2008/07/31/wpmu-new-blog-settings-plugin-updated/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 20:17:45 +0000</pubDate>
		<dc:creator>Elad</dc:creator>
				<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress MU]]></category>
		<category><![CDATA[new blogs]]></category>
		<category><![CDATA[setting]]></category>

		<guid isPermaLink="false">http://www.ringofblogs.com/?p=219</guid>
		<description><![CDATA[I have updated the WPMU new blog settings plugin to work with the new version of WordPress-Mu, 2.6 (for previous versions see here). The hook used was changed to a new one: populate_options and the update_option function call was replaced with the add_option function call. The main code of the plugin looks like so: &#60;?php [...]]]></description>
			<content:encoded><![CDATA[<p>I have updated the <a href="http://www.ringofblogs.com/2007/12/21/wpmu-new-blog-settings-plugin/">WPMU new blog settings plugin</a> to work with the new version of WordPress-Mu, 2.6 (for previous versions see <a href="http://www.ringofblogs.com/2007/12/21/wpmu-new-blog-settings-pluginwpmu-new-blog-settings-plugin/">here</a>). The hook used was changed to a new one: <strong>populate_options</strong> and the <strong>update_option</strong> function call was replaced with the <strong>add_option</strong> function call. The main code of the plugin looks like so:</p>
<pre name="code" class="php" cols="60" rows="10">
&lt;?php
function new_blogs_setting( $blog_id )  {
//set your options here:
add_option('gmt_offset', 2);
// stop editing here
return;
}
add_action('populate_options', 'new_blogs_setting');
?&gt;
</pre>
<p>Download <a href="http://www.ringofblogs.com/wp-content/uploads/2008/07/wpmu_new_blog_26.zip">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ringofblogs.com/2008/07/31/wpmu-new-blog-settings-plugin-updated/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WP-TagAds monetizing plugin</title>
		<link>http://www.ringofblogs.com/2008/06/15/wp-tagads-monetizing-plugin/</link>
		<comments>http://www.ringofblogs.com/2008/06/15/wp-tagads-monetizing-plugin/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 10:04:15 +0000</pubDate>
		<dc:creator>Elad</dc:creator>
				<category><![CDATA[Make money]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[monetizing]]></category>

		<guid isPermaLink="false">http://www.ringofblogs.com/?p=188</guid>
		<description><![CDATA[WP TagAdsis another plugin by Jorge for you to use as a monetizing tool: WP TagAds is a new way to display ads on your WordPress blog. WP TagAds is an advertising solution tailored for WordPress bloggers, ads are displayed based on the post tags you assign to a post in your WordPress blog. This is different [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://www.irokm.com/2008/wp-tagads/">WP TagAds</a>is another plugin by <a href="http://www.irokm.com/">Jorge</a> for you to use as a monetizing tool:</p>
<blockquote><p>WP TagAds is a new way to display ads on your WordPress blog. WP TagAds is an advertising solution tailored for WordPress bloggers, ads are displayed based on the post tags you assign to a post in your WordPress blog. This is different then say Google Adsense where the page is crawled then ads are displayed based on the findings.</p>
<p>With WP TagAds you are served eBay products based the keywords you assign to a post. Don&#8217;t like the ads your are seeing, just change the keywords around a little to get the ads you are looking for.</p>
<p>Ads are displayed via a sidebar widget that is included in the plugin and you can place the widget where you like inside your template. You will need a eBay Campaign ID to start making money. A eBay Campaign ID is issued to you free by the <a href="http://affiliates.ebay.com/">eBay Partner Network</a>.</p></blockquote>
<p> </p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-189" title="wp-tagads-1" src="http://www.ringofblogs.com/wp-content/uploads/2008/06/wp-tagads-1.jpg" alt="" width="400" height="250" /></p>
<p style="text-align: left;">See it action <a href="http://www.irokm.com/2008/paul-giamatti-as-john-adams/">here</a> (top right)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ringofblogs.com/2008/06/15/wp-tagads-monetizing-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Monetize your blog content using Premium text messaging</title>
		<link>http://www.ringofblogs.com/2008/05/21/monetize-your-blog-content-using-premium-text-messaging/</link>
		<comments>http://www.ringofblogs.com/2008/05/21/monetize-your-blog-content-using-premium-text-messaging/#comments</comments>
		<pubDate>Wed, 21 May 2008 15:30:24 +0000</pubDate>
		<dc:creator>Elad</dc:creator>
				<category><![CDATA[Make money]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.ringofblogs.com/?p=174</guid>
		<description><![CDATA[Just came accross a new plugin by Zong that allows bloggers to charge readers for post, feed or services via SMS: Content Pay by Zong allows you to monetize your blog content using Premium text messaging. Your reader sends a text message using his mobile phone and he receives a code that gives him access [...]]]></description>
			<content:encoded><![CDATA[<p>Just came accross a new plugin by <a href="http://www.zong.com">Zong</a> that allows bloggers to charge readers for post, feed or services via SMS:</p>
<blockquote><p><a href="http://wordpress.org/extend/plugins/content-pay-by-zong/">Content Pay</a> by Zong allows you to monetize your blog content using Premium text messaging. Your reader sends a text message using his mobile phone and he receives a code that gives him access to your content for a determined duration.</p></blockquote>
<p>Here is the clickable image that appear for paid content:</p>
<p><img src="http://www.ringofblogs.com/wp-content/uploads/2008/05/screenshot-1.png" alt="The clickable image that appear for paid content" width="213" height="86" /></p>
<p>and  the window&#8217;s information which tell the user how to pay and get access to the content:</p>
<p><img src="http://www.ringofblogs.com/wp-content/uploads/2008/05/screenshot-2.png" alt="The window's information which tell you how to pay and get access to the content" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ringofblogs.com/2008/05/21/monetize-your-blog-content-using-premium-text-messaging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Off-loading wpmu theme files to Amazon-S3</title>
		<link>http://www.ringofblogs.com/2008/04/12/off-loading-wpmu-theme-files-to-amazon-s3/</link>
		<comments>http://www.ringofblogs.com/2008/04/12/off-loading-wpmu-theme-files-to-amazon-s3/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 19:50:03 +0000</pubDate>
		<dc:creator>Elad</dc:creator>
				<category><![CDATA[Amazon]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress MU]]></category>

		<guid isPermaLink="false">http://www.ringofblogs.com/2008/04/12/off-loading-wpmu-theme-files-to-amazon-s3/</guid>
		<description><![CDATA[I saw a few people looking for solutions to off-load wpmu files to Amazon-S3 service. This is something we wanted to try on our installation (just a few thousand blogs) so I wrote a plugin that will serve themes css and image files from S3. The plugin uses the &#8216;stylesheet_directory_uri&#8216; filter to set the stylesheet [...]]]></description>
			<content:encoded><![CDATA[<p>I saw a few people looking for solutions to off-load wpmu files to <a href="http://s3.amazonaws.com/" title="Amazon Simple Storage Service (Amazon S3)">Amazon-S3</a> service. This is something we wanted to try on our installation (just a few thousand blogs) so I wrote a plugin that will serve themes css and image files from S3.</p>
<p>The plugin uses the &#8216;<em>stylesheet_directory_uri</em>&#8216; filter to set the stylesheet uri (css file). In turn, the stylesheet uses the &#8216;<em>url</em>&#8216; method to call the image files of the theme so they get the same base url as the stylesheet. Most themes uses the &#8216;<em>stylesheet_directory</em>&#8216; call correctly so you will not run into trouble but if a theme uses it to call a <em>php</em> file you should change the call to use &#8216;<em>template_directory</em>&#8216;.</p>
<p><strong>Download</strong>: <a href="http://www.ringofblogs.com/wp-content/uploads/2008/04/themes-s3.zip" title="themes-s3.zip">themes-s3.zip</a><a href="http://www.ringofblogs.com/wp-content/uploads/2008/04/themes-s3.php" title="themes-s3.php"> </a></p>
<p><strong>Usage</strong>:</p>
<ol>
<li><a href="https://aws-portal.amazon.com/gp/aws/developer/subscription/index.html/002-2464919-6572861?ie=UTF8&amp;serviceID=8&amp;offeringId=6&amp;servicePlanID=6&amp;AWS%5Fredirect=true&amp;awscbctx=Amazon%20Simple%20Storage%20Service&amp;serviceName=Amazon%20Simple%20Storage%20Service&amp;awsrid=&amp;AWS%5Fnode=16427261" title="Sign Up for Amazon Simple Storage Service ">Signup for an Amazon-S3 account</a>.</li>
<li>Create a <em>bucket</em> for your files. Since you have to select a globally unique name for your buckets I call it <em>s3.domain.com</em> were <em>domain.com</em> is my wpmu installation.</li>
<li>To point s3 to your bucket setup a CNAME record: s3 -&gt; s3.domain.com.s3.amazonaws.com<strong>.</strong> (don&#8217;t forget that extra dot at the end).</li>
<li>Load your themes css and image files to your bucket keeping the exact directory structure for each theme (/wp-contents/themes/&#8230; ). You can use the excellent <a href="http://www.rjonna.com/ext/s3fox.php" title="S3Fox Organizer for Amazon (S3Fox)">S3 FireFox Organizer</a> to mange your files.</li>
<li>Edit the plugin to include your bucket name.</li>
<li>Place the plugin in the mu-plugins directory.</li>
<li>Test, test and test all your themes!</li>
</ol>
<p><strong>Whats next?</strong> The next step I&#8217;m planning is to off-load the Java Scripts in the <em>wp-includes</em> folder. Also planned is an option to serve the users files from S3. If you are interested in helping in any way please leave a comment and we can take it from there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ringofblogs.com/2008/04/12/off-loading-wpmu-theme-files-to-amazon-s3/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
	</channel>
</rss>

