<?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>WordPress Dig Blog</title>
	<atom:link href="http://wpdig.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpdig.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 12 Aug 2009 09:45:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>For Security Reason, WordPress 2.8.4 Release</title>
		<link>http://wpdig.com/blog/2009/08/for-security-reason-wordpress-2-8-4-release/</link>
		<comments>http://wpdig.com/blog/2009/08/for-security-reason-wordpress-2-8-4-release/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 03:01:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[password reset]]></category>
		<category><![CDATA[WordPress 2.8.4]]></category>
		<category><![CDATA[WordPress Security]]></category>

		<guid isPermaLink="false">http://wpdig.com/blog/?p=43</guid>
		<description><![CDATA[Yesterday a vulnerability was discovered: a specially crafted URL could be requested that would allow an attacker to bypass a security check to verify a user requested a password reset. As a result, the first account without a key in the database (usually the admin account) would have its password reset and a new password…
For [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday a vulnerability was discovered: a specially crafted URL could be requested that would allow an attacker to bypass a security check to verify a user requested a password reset. As a result, the first account without a key in the database (usually the admin account) would have its password reset and a new password…</p>
<p>For details, please visit <a href="http://wordpress.org/development/2009/08/2-8-4-security-release/">WordPress 2.8.4: Security Release</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wpdig.com/blog/2009/08/for-security-reason-wordpress-2-8-4-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8.3 has Security Exploit</title>
		<link>http://wpdig.com/blog/2009/08/wordpress-2-8-3-has-security-exploit/</link>
		<comments>http://wpdig.com/blog/2009/08/wordpress-2-8-3-has-security-exploit/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 08:12:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress Security]]></category>

		<guid isPermaLink="false">http://wpdig.com/blog/?p=41</guid>
		<description><![CDATA[
Message:  Reject activation keys that are arrays.

http://core.trac.wordpress.org/changeset/11798 
open wp-login.php
on line 190, change from
 if ( empty( $key ) )
to 
if ( empty( $key ) &#124;&#124; is_array( $key ) )
Please update your WordPress now
WordPrss 2.8.3发现Admin账户密码重置漏洞，请及时修复
]]></description>
			<content:encoded><![CDATA[<dl id="overview">
<dt>Message:  Reject activation keys that are arrays.</dt>
</dl>
<p><a href="http://core.trac.wordpress.org/changeset/11798">http://core.trac.wordpress.org/changeset/11798 </a></p>
<p>open wp-login.php</p>
<p>on line 190, change from</p>
<pre> <span>if ( empty( $key ) <del></del>)</span></pre>
<p><span>to </span></p>
<pre><span>if ( empty( $key ) <ins>|| is_array( $key ) </ins>)</span></pre>
<p>Please update your WordPress now</p>
<blockquote><p><span id="msgtxt3242168269">WordPrss 2.8.3发现Admin账户密码重置漏洞，请及时修复</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wpdig.com/blog/2009/08/wordpress-2-8-3-has-security-exploit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add a Blog Link at Pligg Top Menu</title>
		<link>http://wpdig.com/blog/2009/08/add-a-blog-link-at-pligg-top-menu/</link>
		<comments>http://wpdig.com/blog/2009/08/add-a-blog-link-at-pligg-top-menu/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 17:46:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pligg CMS]]></category>
		<category><![CDATA[Pligg Hacks]]></category>

		<guid isPermaLink="false">http://wpdig.com/blog/?p=39</guid>
		<description><![CDATA[In this example, the template I use is wistie.
Open header.tpl in admin menu, or just open header.tpl through ftp or ssh, I like use SSH.
vi templates/wistie/header.tpl
find
&#60;li {if $pagename eq "upcoming"}class="current"{/if}&#62;&#60;a href="{$URL_upcoming}"&#62;{#PLIGG_Visual_Pligg_Queued#}&#60;/a&#62;&#60;/li&#62;
insert the following code under it,
&#60;li&#62;&#60;a href="blog/"&#62;WPDig Blog&#60;/a&#62;&#60;/li&#62;
and that&#8217;s all.
]]></description>
			<content:encoded><![CDATA[<p>In this example, the template I use is wistie.</p>
<p>Open header.tpl in admin menu, or just open header.tpl through ftp or ssh, I like use SSH.</p>
<pre>vi templates/wistie/header.tpl</pre>
<p>find</p>
<pre>&lt;li {if $pagename eq "upcoming"}class="current"{/if}&gt;&lt;a href="{$URL_upcoming}"&gt;{#PLIGG_Visual_Pligg_Queued#}&lt;/a&gt;&lt;/li&gt;</pre>
<p>insert the following code under it,</p>
<pre>&lt;li&gt;&lt;a href="blog/"&gt;WPDig Blog&lt;/a&gt;&lt;/li&gt;</pre>
<p>and that&#8217;s all.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpdig.com/blog/2009/08/add-a-blog-link-at-pligg-top-menu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RentACoder Offers Many Part Time Jobs for WordPress Developers</title>
		<link>http://wpdig.com/blog/2009/08/rentacoder-offers-many-part-time-jobs-for-wordpress-developers/</link>
		<comments>http://wpdig.com/blog/2009/08/rentacoder-offers-many-part-time-jobs-for-wordpress-developers/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 21:16:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jobs]]></category>

		<guid isPermaLink="false">http://wpdig.com/blog/?p=35</guid>
		<description><![CDATA[This article is for you who has the following conditions,

Has enough part time, or outsourcing team,
PHP development, SEO guru, Linux Adminitor or Designer
want to make more money

If yes, please visit RentACoder to find more jobs.
P.S.
Rent A Coder is an international marketplace where buyers can acquire custom software (as well as writing, graphic design, and other [...]]]></description>
			<content:encoded><![CDATA[<p>This article is for you who has the following conditions,</p>
<ul>
<li>Has enough part time, or outsourcing team,</li>
<li>PHP development, SEO guru, Linux Adminitor or Designer</li>
<li>want to make more money</li>
</ul>
<p>If yes, please visit <a title="Part Time Jobs for WordPress" href="http://wpdig.com/blog/o/part-time-jobs-for-wordpress">RentACoder</a> to find more jobs.</p>
<p>P.S.</p>
<blockquote><p><a title="RentACoder Homepage" href="http://wpdig.com/blog/o/rent-a-coder" target="_blank">Rent A Coder</a> is an international marketplace where buyers can acquire custom software (as well as writing, graphic design, and other services) in a safe and business-friendly environment.</p>
<p><a title="Request a Bid" href="http://wpdig.com/blog/o/request-a-bid" target="_blank">Buyers</a> no longer are limited to whatever few local choices they happen to be aware of.                   Instead, they can cherry pick from a pool of 263,873 coders, and find                  the best coder across the block, the country or the globe.                 Those who wish to take advantage of lower costs of living in other countries, can save 50-80% by hiring                  internationally.</p>
<p><a title="Rent Me" href="http://wpdig.com/blog/o/rent-me" target="_blank">Coders</a> are given access to a daily pool of new work from 123,912 buyers, and can work independently from home rather than for a company. Any coder in the world with an internet connection and the desire and ability to work, can now do so.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wpdig.com/blog/2009/08/rentacoder-offers-many-part-time-jobs-for-wordpress-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Books Let You Preview the Books Then Decide to Buy or Not</title>
		<link>http://wpdig.com/blog/2009/08/google-books-let-you-preview-the-books-then-decide-to-buy-or-not/</link>
		<comments>http://wpdig.com/blog/2009/08/google-books-let-you-preview-the-books-then-decide-to-buy-or-not/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 20:00:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[eBook]]></category>
		<category><![CDATA[Goolge Book]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://wpdig.com/blog/?p=31</guid>
		<description><![CDATA[You can search books through Google Books and Preview it online, then decide to buy or borrow it from the library, for public domain books, you can easily download a eBook to your disk.
And Google announce some great news,
Google Books for mobile is now available for Android and iPhone users.
Google has reached a groundbreaking agreement [...]]]></description>
			<content:encoded><![CDATA[<p>You can search books through <span class="announcement"><a title="Google Books" href="http://books.google.com" target="_blank">Google Books</a></span> and Preview it online, then decide to buy or borrow it from the library, for public domain books, you can easily download a eBook to your disk.</p>
<p>And Google announce some great news,</p>
<p><span class="announcement"><a href="http://books.google.com/books/m">Google Books for mobile</a> is now available for <strong>Android</strong> and <strong>iPhone</strong> users.<br />
</span><span class="announcement">Google has reached a <a href="http://books.google.com/googlebooks/agreement/">groundbreaking agreement</a> with authors and publisher.</span></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">
<table id="top_search_box" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="padding-bottom: 8px; padding-top: 2px;"></td>
<td>
<form action="/books">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td align="center">
<input id="hpq" style="text-align: left;" title="Search Books" dir="ltr" maxlength="256" name="q" size="40" accesskey="s" />
<input name="btnG" type="submit" value="Search Books" /></td>
<td width="25%"><span></p>
<div><a href="http://books.google.com/advanced_book_search">Advanced Book Search</a></div>
<p></span></td>
</tr>
</tbody>
</table>
</form>
</td>
</tr>
</tbody>
</table>
<p><span class="announcement"><a href="http://books.google.com/books/m">Google Books for mobile</a> is now available for <strong>Android</strong> and <strong>iPhone</strong> users.</span></div>
]]></content:encoded>
			<wfw:commentRss>http://wpdig.com/blog/2009/08/google-books-let-you-preview-the-books-then-decide-to-buy-or-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Google Analytics Script to Pligg CMS</title>
		<link>http://wpdig.com/blog/2009/08/add-google-analytics-script-to-pligg-cms/</link>
		<comments>http://wpdig.com/blog/2009/08/add-google-analytics-script-to-pligg-cms/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 12:59:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pligg CMS]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Pligg Module]]></category>

		<guid isPermaLink="false">http://wpdig.com/blog/?p=25</guid>
		<description><![CDATA[I am not sure if exist Google Analytics module for Pligg,  but after search I found an easy way to add Google Analytics script to Pligg CMS.
Open footer.tpl, find:
{checkActionsTpl location="tpl_footer"}
insert the following code before it,
{literal}&#60;script type="text/javascript"&#62;
var gaJsHost = (("https:" == document.location.protocol)
? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost
+ "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
&#60;/script&#62;
&#60;script type="text/javascript"&#62;
try {
var pageTracker = _gat._getTracker("UA-903858-7");
pageTracker._trackPageview();
} catch(err) [...]]]></description>
			<content:encoded><![CDATA[<p>I am not sure if exist Google Analytics module for Pligg,  but after search I found an easy way to add Google Analytics script to Pligg CMS.</p>
<p>Open footer.tpl, find:</p>
<pre><span style="color: #0000ff;">{checkActionsTpl location="tpl_footer"}</span></pre>
<p>insert the following code before it,</p>
<pre><span style="color: #0000ff;">{literal}&lt;script type="text/javascript"&gt;
var gaJsHost = (("https:" == document.location.protocol)
? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost
+ "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
&lt;/script&gt;
&lt;script type="text/javascript"&gt;
try {
var pageTracker = _gat._getTracker("UA-903858-7");
pageTracker._trackPageview();</span></pre>
<pre><span style="color: #0000ff;">} catch(err) {}&lt;/script&gt;
{/literal}</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://wpdig.com/blog/2009/08/add-google-analytics-script-to-pligg-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bing Offers Free Reverse IP Service</title>
		<link>http://wpdig.com/blog/2009/08/bing-offers-free-reverse-ip-service/</link>
		<comments>http://wpdig.com/blog/2009/08/bing-offers-free-reverse-ip-service/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 05:28:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[Reverse IP]]></category>

		<guid isPermaLink="false">http://wpdig.com/blog/?p=19</guid>
		<description><![CDATA[Reverse IP Lookup also known as Reverse DNS Lookup, with it, you can view all domain names hosted on an IP Address.
There are many websites offer paid Reverse IP service, you can goolge it to get the one you want.
Bing.com is another search engine offered by Microsoft(MS) that finds and organizes the answers you need [...]]]></description>
			<content:encoded><![CDATA[<p>Reverse IP Lookup also known as Reverse DNS Lookup, with it, you can view all domain names hosted on an IP Address.</p>
<p>There are many websites offer paid <strong>Reverse IP</strong> service, you can goolge it to get the one you want.</p>
<p><a title="Bing" href="http://bing.com/" target="_blank">Bing.com</a> is another search engine offered by Microsoft(MS) that finds and organizes the answers you need so you can make faster, more informed decisions, and it also offers Reverse IP search service, for example, if you want to find how many domain names hosted on the same IP with <a href="http://wpdig.com">WPDig.com</a>, first get the IP of it,</p>
<p><em>ping wpdig.com</em></p>
<p>and you get</p>
<p>75.119.217.15</p>
<p>then you can search the item <a title="Reverse IP Lookup" href="http://bing.com/search?q=IP%3A75.119.217.15&amp;go=&amp;form=QBRE&amp;filt=all">ip:75.119.217.15</a> to get all the domain names.</p>
<p>P.S.</p>
<p><a href="http://www.domaintools.com/" target="_blank">DomainTools</a> can tell you how many domain names on the same IP, and you can view 3 domain names for free and pay for all domain names.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpdig.com/blog/2009/08/bing-offers-free-reverse-ip-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeWebhosting-Another No Forced Ads Free Web Hosting</title>
		<link>http://wpdig.com/blog/2009/08/freewebhosting-another-no-forced-ads-free-web-hosting/</link>
		<comments>http://wpdig.com/blog/2009/08/freewebhosting-another-no-forced-ads-free-web-hosting/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 04:15:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Free Hosting]]></category>
		<category><![CDATA[Free Web Hosting]]></category>
		<category><![CDATA[No Forced Ads]]></category>

		<guid isPermaLink="false">http://wpdig.com/blog/?p=16</guid>
		<description><![CDATA[Here I introduce a new free web hosting, the domain created on July 28, 2009, and it hosted with other 3 website on the same domain. so I am not sure if it is a real free web hosting provider or just want to  gain much traffic quickly by cheating, so up to you to [...]]]></description>
			<content:encoded><![CDATA[<p>Here I introduce a new free web hosting, the domain created on July 28, 2009, and it hosted with other 3 website on the same domain. <span style="text-decoration: line-through;">so I am not sure if it is a real free web hosting provider or just want to  gain much traffic quickly by cheating, so up to you to use it or not.</span>The owner of the hosting provider has mail to me said it is real service, for details, please visit the comment.</p>
<blockquote>
<h2>FreeWebhosting Features:</h2>
</blockquote>
<blockquote>
<ul>
<li>10 GB Disk Space</li>
<li>Unmetered Bandwidth</li>
<li>PHP Support</li>
<li>MySQL databases</li>
<li>Instant activation</li>
<li>Domain Name Support</li>
<li>Easy to use WYSIWYG editor</li>
<li>File Manager</li>
<li>Community Technical Support</li>
<li>Full FTP Access</li>
<li>yourname.2Xera.com</li>
<li>Support for Your Own Domain</li>
<li>99.9% Uptime</li>
</ul>
<p>We are a leading provider of free personal web site hosting and offer you our 				super reliable totally free web no ad hosting.Our fully featured hosting offers much 				more than most other free host providers. We pride ourselves on offering the 				absolute best free hosting possible, combined with total reliability, outstanding 				customer support and never any ads.</p>
<p>All of our accounts come with a easy to use control panel that makes it very 				simple to manage your web site and files. Your free account comes with PHP, 				multiple MySQL databases, XXXGB of disk space &amp; XXXGB of bandwidth and more.</p>
<p>You have the choice of using your own domain name if you wish or you can 				choose to use one of our free subdomains. This is entirely up to you. And remember, 				there is no advertising of any sort shown on your web site.</p>
<p>Our service is highly reliable, as we only use quality high end servers that are constantly 				monitored 24 hours a day to ensure your site is always online. We also offer full 				customer support for free and take pride in looking after our users.</p>
<p>All we ask of you is that you adhere to our hosting guidelines, meaning no illegal, 				adult, or offensive content to be used on your sites. For security reasons all sites using 				our service will have a small text link added to the bottom of their pages. 				In return we offer you the best quality high end free personal web site hosting.</p></blockquote>
<p>If you want to have a try, please <a title="Free Web Hosting" href="http://www.2xera.com/register.jsp" target="_blank">register now</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpdig.com/blog/2009/08/freewebhosting-another-no-forced-ads-free-web-hosting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Web Hosting Recommended by WordPress.org</title>
		<link>http://wpdig.com/blog/2009/08/wordpress-web-hosting-recommended-by-wordpress-org/</link>
		<comments>http://wpdig.com/blog/2009/08/wordpress-web-hosting-recommended-by-wordpress-org/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 02:54:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Affiliate Program]]></category>
		<category><![CDATA[Free Hosting]]></category>
		<category><![CDATA[WordPress Web Hosting]]></category>

		<guid isPermaLink="false">http://wpdig.com/blog/?p=11</guid>
		<description><![CDATA[When I  bought my first domain many years before, I have spent much time to search a free hosting, but finally, I got nothing, and the pagerank of steedsoft.com becomes to zero from 4. So I decide to buy a hosting. I am familiar with DOTNET, not PHP, but I found PHP hosting is much [...]]]></description>
			<content:encoded><![CDATA[<p>When I  bought my first domain many years before, I have spent much time to search a free hosting, but finally, I got nothing, and the pagerank of steedsoft.com becomes to zero from 4. So I decide to buy a hosting. I am familiar with DOTNET, not PHP, but I found PHP hosting is much cheaper and easy to use, so after some searched, I decided to buy <a href="http://www.dreamhost.com/r.cgi?227919/hosting.html">Dreamhost</a>, the easy reason I chosed <a href="http://www.dreamhost.com/r.cgi?227919/hosting.html">Dreamhost</a>, because it saved me USD 97 for the first year, and I can earn more from the <a href="http://www.dreamhost.com/r.cgi?227919/hosting.html">Dreamhost</a> Affiliate program.</p>
<p>OK, I notice WordPress.org also recommends <a href="http://www.dreamhost.com/r.cgi?227919/hosting.html">Dreamhost</a> another four hosting spaces, and also one Free Hosting.</p>
<h3><a href="http://www.BlueHost.Com/track/witwall">Blue Host</a></h3>
<blockquote><p>24 hours! Unlimited disk storage, Unlimited monthly data transfer, host unlimited domains on 1 account, 1 free domain name for as long as you host with BlueHost, 2500 POP / WebMail addresses, 50 MySQL databases, free control panel, free Fantastico, free SimpleScripts, 24/7 network monitoring, 99% uptime guarantee, mirrored storage backups, no hidden fees, voted best support in 2004, 2005, 2006, 2007, and 2008!”</p></blockquote>
<h3><a href="http://mediatemple.net/go/ref/?affkey=YWZmaWxpYXRlPTIyUDNkSVFPeXU">MediaTemple</a></h3>
<blockquote><p>“Hosting that&#8217;s ready for traffic spikes. Start your new blog on a clustered hosting platform that&#8217;s ready for you to hit the big time. Whether you reach the front page of Digg or get an unexpected shout-out on Oprah, your blog will always be available. Get started right-away with our WordPress one-click installer and enough high-speed storage and bandwidth to run a blogging empire.”</p></blockquote>
<h3><a href="http://stats.justhost.com/track?c46d39fbe6aaa3b2c2ac57a1a4581a484">JustHost</a></h3>
<blockquote><p>“Just Host offers the perfect solution for your WordPress blog. With unlimited disk space, bandwidth and MySQL databases, usage restrictions are a thing of the past. Just Host has offices in the US, UK and Australia and is serviceable in 195 countries worldwide. No matter where you live though, Just Host offers first class support 24/7 support via phone, email and live chat support.”</p></blockquote>
<h3><a href="http://laughingsquid.net/">Laughing Squid</a></h3>
<blockquote><p>“Laughing Squid Web Hosting is an independently owned and operated web host, based out of San Francisco, that provides friendly, dependable and secure web hosting services to artists, individuals, bloggers, non-profits, and small businesses. We are open source geeks who are here to help you get your content online and rescue you from the endless void of impersonal and unreliable web hosting.”</p></blockquote>
<h3><a title="Free WordPress Hosting" href="http://wpdig.com/out/get-a-free-blog-from-wordpress-com">WordPress.com</a></h3>
<blockquote><p>If you don&#8217;t need the flexibility of a full web host, you may consider <a title="Free WordPress Hosting" href="http://wpdig.com/out/get-a-free-blog-from-wordpress-com">getting a free blog on WordPress.com</a>.</p>
<p><span><span id="ls_contents-0">If you want a WordPress Blog, but do not want buy a hosting, WorPress.com is one of your choice, but it does not a good choice for Chinese people for some reason.<br />
Free blogs managed by the developers of the WordPress software. Includes custom design templates, integrated statistics, automatic spam protection and other &#8230; </span></span></p></blockquote>
<p>P.S.</p>
<blockquote><p>There are hundreds of thousands of web hosts out there, the vast majority of which meet the <a href="http://wordpress.org/about/requirements/">WordPress minimum requirements</a>, and choosing one from the crowd can be a chore. Just like flowers need the right environment to grow, WordPress works best when it&#8217;s in a rich hosting environment.</p>
<p>We&#8217;ve dealt with more hosts than you can imagine; in our opinion, the hosts below represent some of the best and brightest of the hosting world. If you do decide to go with one of the hosts below and click through from this page, some will donate a portion of your fee back—so you can have a great host and support WordPress at the same time.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wpdig.com/blog/2009/08/wordpress-web-hosting-recommended-by-wordpress-org/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pligg CMS is an Free and Open Source Alternative to Digg</title>
		<link>http://wpdig.com/blog/2009/08/pligg-cms-is-an-free-and-open-source-alternative-to-digg/</link>
		<comments>http://wpdig.com/blog/2009/08/pligg-cms-is-an-free-and-open-source-alternative-to-digg/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 02:14:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pligg CMS]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Digg]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://wpdig.com/blog/?p=7</guid>
		<description><![CDATA[I have forgotten when I saw Pligg the first time and I have tested it on my Dreamhost hosting space, and this time I want to use it as my WPDig-A new Brand Social Network for WordPress

Pligg is an open source Content Management System (CMS) that you can download and use for free. Pligg CMS [...]]]></description>
			<content:encoded><![CDATA[<p>I have forgotten when I saw Pligg the first time and I have tested it on my <a href="http://www.dreamhost.com/r.cgi?227919/hosting.html">Dreamhost</a> hosting space, and this time I want to use it as my <a title="WPDig-A new Brand Social Network for WordPress" href="http://wpdig.com/blog/2009/08/wpdig-a-new-brand-social-network-for-wordpress/" target="_blank">WPDig-A new Brand Social Network for WordPress</a></p>
<blockquote>
<p style="font-size: 14px;">Pligg is an open source <strong>Content Management System</strong> (CMS) that you can download and use for free. Pligg CMS provides <strong>social networking</strong> software that encourages visitors to register on your website so that they can submit content and connect with other users. Our software creates websites where stories are created and voted on by members, not website editors. Use Pligg content management system to start your own social networking community in minutes.</p>
<p><strong>Pligg CMS</strong> is based on open source PHP and MySQL technologies that allow it to be installed on most web hosts on a relatively small budget.</p></blockquote>
<p>If you also have interesting in Pligg, please visit <a title="Pligg CMS" href="http://www.pligg.com/">here</a> for details.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpdig.com/blog/2009/08/pligg-cms-is-an-free-and-open-source-alternative-to-digg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
