<?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>Pligg CMS</title>
	<atom:link href="http://www.pligg.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pligg.com/blog</link>
	<description>Open Source Content Management System for Social Networking</description>
	<lastBuildDate>Tue, 26 Jan 2010 02:37:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Export User Data to Microsoft Excel</title>
		<link>http://www.pligg.com/blog/801/export-user-data-to-microsoft-excel/</link>
		<comments>http://www.pligg.com/blog/801/export-user-data-to-microsoft-excel/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 10:13:13 +0000</pubDate>
		<dc:creator>Eric Heikkinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pligg.com/blog/?p=801</guid>
		<description><![CDATA[I can remember several users in the past asking if it was possible to export user data from Pligg into Excel. It was an interesting idea, and it seemed especially useful for people who needed a simple way to export user email addresses to use for email campaigns. This tutorial provides a very simple PHP script for Pligg that will export user data that is being stored in the MySQL database into a Microsoft Excel document.]]></description>
			<content:encoded><![CDATA[<p>I can remember several users in the past asking if it was possible to export user data from Pligg into Excel. It was an interesting idea, and it seemed especially useful for people who needed a simple way to export user email addresses to use for email campaigns. I recently discovered a PHP script that demonstrates how to <a href="http://www.the-art-of-web.com/php/dataexport/" target="_blank" target="_blank">export an array of data into a Microsoft Excel document</a>. Using that script as a base I was able to come up with a very simple PHP script for Pligg that will export user data that is being stored in the MySQL database into a Microsoft Excel document. An example of such a document can be seen in the screenshot below.</p>
<div style="text-align:center;"><img src="http://www.pligg.com/blog/wp-content/uploads/2009/12/excel.png" alt="excel" title="excel" /></a></div>
<p></p>
<p>The script sits in the root of your Pligg CMS site and first checks if the person accessing the script is logged into a &#8220;god&#8221; level account. If they aren&#8217;t it will redirect them to the Pligg login page. If a user is logged in as a &#8220;god&#8221; level user it will then connect to Pligg&#8217;s MySQL database. It then sends header information to your browser letting it know that it&#8217;s receiving a Microsoft Excel document and it should open the data as such. Lastly the script generates the data for Excel by grabbing information stored in the pligg_users table. The end result gives you an easy to read Excel data sheet with usernames, email addresses, registration dates and other useful information. The script is very easy to modify so if you don&#8217;t like the default data being used it&#8217;s not difficult to add your own columns.</p>
<p>I&#8217;ve pasted the script below for anyone to use on their own website. Just copy these lines into a new file and rename it to whatever you want, just remember to add a .php extension to the end of the file name and store it in the root directory where Pligg CMS resides. You can also get a copy of the code from <a href="http://pligg.pastebin.com/f23ef33d0" target="_blank" target="_blank">this pastebin post</a>.</p>
<pre class="brush: php;">
&lt;?php
include_once 'libs/dbconnect.php';
include_once('Smarty.class.php');
$main_smarty = new Smarty;
include_once('config.php');
include(mnminclude.'html1.php');
include(mnminclude.'smartyvariables.php');

force_authentication();
$amIgod = 0;
$amIgod = $amIgod + checklevel('god');
$main_smarty-&gt;assign('amIgod', $amIgod);

if($amIgod == 0){
	header(&quot;Location: &quot; . getmyurl('login', $_SERVER['REQUEST_URI']));
	die();
}
$main_smarty-&gt;assign('isAdmin', $canIhaveAccess);

mysql_connect(EZSQL_DB_HOST,EZSQL_DB_USER,EZSQL_DB_PASSWORD);
mysql_select_db(EZSQL_DB_NAME);

header(&quot;Content-Type: application/vnd.ms-excel&quot;);
$filename = &quot;Website_User_Data_&quot; . date('d-m-Y') . &quot;.xls&quot;;
header(&quot;Content-Disposition: attachment;filename=\&quot;$filename\&quot;&quot;);

$result = mysql_query(&quot;SELECT * FROM &quot;.table_prefix.&quot;users ORDER BY user_id&quot;) or die('MySQL query attempting to select user data failed!');
while(false !== ($row = mysql_fetch_assoc($result))) {
	echo $row[user_id].&quot;\t&quot;;
	echo $row[user_names].&quot;\t&quot;;
	echo $row[user_login].&quot;\t&quot;;
	echo $row[user_email].&quot;\t&quot;;
	echo $row[user_url] . &quot;\t&quot;;
	echo $row[user_date] . &quot;\t&quot;;
	echo $row[user_lastlogin].&quot; \n&quot;;
	//echo implode(&quot;\t&quot;, array_values($row)) . &quot;\n&quot;;
}
exit;
?&gt;
</pre>]]></content:encoded>
			<wfw:commentRss>http://www.pligg.com/blog/801/export-user-data-to-microsoft-excel/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Pligg CMS 1.0.3 Release</title>
		<link>http://www.pligg.com/blog/775/pligg-cms-1-0-3-release/</link>
		<comments>http://www.pligg.com/blog/775/pligg-cms-1-0-3-release/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 20:42:17 +0000</pubDate>
		<dc:creator>Eric Heikkinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pligg.com/blog/?p=775</guid>
		<description><![CDATA[<p>Shortly after the 1.0.2 release we were alerted to a vulnerability reported by <a href="http://secunia.com/" rel="nofollow">Secunia</a> and third party researcher Russ McRee. We have resolved the security issues in a timely manner and Secunia will be publishing their report on December 2, 2009. We thank Secunia for notifying us of the problems and properly coordinating the disclosure of this security threat. We do our best to provide quality code to prevent such security issues, but no CMS is perfect.</p>]]></description>
			<content:encoded><![CDATA[<p>Shortly after the 1.0.2 release we were alerted to a vulnerability reported by <a href="http://secunia.com/" rel="nofollow" target="_blank" target="_blank">Secunia</a> and third party researcher Russ McRee. We have resolved the security issues in a timely manner and Secunia will be publishing their report on December 2, 2009. We thank Secunia for notifying us of the problems and properly coordinating the disclosure of this security threat. We do our best to provide quality code to prevent such security issues, but no CMS is perfect.</p>
<p>In addition to the security update, this release includes a new &#8220;Spam Trigger&#8221; module. We will be providing a video demonstration of this module in the next few days.</p>
<div style="font-size:20px;font-weight:bold;margin:1px 0 12px 6px;width:200px;border-top:1px solid #9F9F9F;border-right:2px solid #4E4E4E;border-bottom:2px solid #787878;border-left:1px solid #9F9F9F;background:#F3F3F3;padding:5px 11px;"><a href="http://forums.pligg.com/attachments/current-version/2400d1259611456-pligg-content-management-system-1-0-3-pligg-cms-1.0.3.zip" style="text-decoration:none;" target="_blank" target="_blank">Download Pligg 1.0.3</a></div>
<div style="border: 1px solid rgb(207, 207, 90); padding: 10px; background: rgb(255, 255, 199) none repeat scroll 0% 0%; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; margin-bottom: 10px;">
<strong>Update: Wednesday, December 2, 07:15 PM</strong> We have replaced the 1.0.3 download in the forums with 1.0.3b. This update fixes a problem with the comment form so that it will now work with the new security measures put in place from the 1.0.3 release. We have also added another fix for deleting categories from the admin panel category manager and made improvements to the Spam Trigger module.
</div>
<p><span id="more-775"></span></p>
<hr />
<h3>Pligg CMS 1.0.3 Changes</h3>
<p>Below is an abbreviated changelog. To see the full list of changes please view our <a href="http://pligg.svn.sourceforge.net/viewvc/pligg/trunk/?view=log" rel="nofollow" target="_blank" target="_blank">SVN logs</a>.</p>
<ul>
<li>Security fixes</li>
<li>Inline comment CAPTCHA fix</li>
<li>Added new Spam Trigger module</li>
<li>Deleting a comment now recalculates the story comment number</li>
<li>404error.php URL Method 2 fix</li>
<li>Added Italian language</li>
<li>Fixed admin language module removing UTF characters</li>
<li>Fixed some RSS urls that had an extra forward slash at the end</li>
<li>Fix for using quotes within HTML tags in stories</li>
<li>Same name category fix</li>
<li>Fixed JS in multibox_admin</li>
<li>Removed /cache line from robots.txt to allow robots to crawl cached sitemap</li>
<li>Login cookie fix for previously untested server configurations</li>
<li>Fix for escape slashes in stories</li>
<li>Register invalid characters fix for servers where PCRE was compiled without UTF-8 support</li>
</ul>
<h3>1.0.3 Template Changes</h3>
<p>Template upgrades will be required for users seeking to move from 1.0.2 and below to 1.0.3. The important changes are simple 1 line additions to add some new security measures to Pligg forms. A slightly more complex update is required for users who want to fix the problem with inline comment CAPTCHAs. The important security template changes apply to the following template files:</p>
<ul>
<li>edit_group_center.tpl</li>
<li>editlink_edit_center.tpl</li>
<li>group_story_center.tpl</li>
<li>recommend_small.tpl</li>
<li>submit_groups.tpl</li>
<li>user_center.tpl</li>
</ul>
<p>As usual, we highly recommend that you use a program like Winmerge to compare the Wistie template from 1.0.2 to the latest 1.0.3 version to see all of the template changes since the last release.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pligg.com/blog/775/pligg-cms-1-0-3-release/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Pligg Pro Cyber Monday Deals</title>
		<link>http://www.pligg.com/blog/771/pligg-pro-cyber-monday-deals/</link>
		<comments>http://www.pligg.com/blog/771/pligg-pro-cyber-monday-deals/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 19:14:03 +0000</pubDate>
		<dc:creator>Eric Heikkinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pligg.com/blog/?p=771</guid>
		<description><![CDATA[This year we are offering a massive 25% discount at <a href="http://www.pligg.com/pro/">Pligg Pro</a> to celebrate the biggest online shopping day of the year. For one day only you can receive <strong>25% off</strong> by using the coupon code <span style="background:#FBFBDC;padding:1px 3px;"><strong>CYBMONDAY09</strong></span> when checking out.]]></description>
			<content:encoded><![CDATA[<p>This year we are offering a massive 25% discount at <a href="http://www.pligg.com/pro/" target="_blank" target="_blank">Pligg Pro</a> to celebrate the biggest online shopping day of the year. For one day only you can receive <strong>25% off</strong> by using the coupon code <span style="background:#FBFBDC;padding:1px 3px;"><strong>CYBMONDAY09</strong></span> when checking out. This deal only lasts until midnight Monday evening EST and will be the absolute best deal you will find before the end of this year.</p>
<p>In addition to the store-wide 25% discount we will be rotating some great discounts on individual items throughout the day, so keep coming back to see what items are going on sale at <a href="http://www.pligg.com/pro/" target="_blank" target="_blank">Pligg Pro</a> because these deals won&#8217;t last. </p>]]></content:encoded>
			<wfw:commentRss>http://www.pligg.com/blog/771/pligg-pro-cyber-monday-deals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Status Update Module Now Available</title>
		<link>http://www.pligg.com/blog/762/status-update-module-now-available/</link>
		<comments>http://www.pligg.com/blog/762/status-update-module-now-available/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 23:17:16 +0000</pubDate>
		<dc:creator>Eric Heikkinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pligg.com/blog/?p=762</guid>
		<description><![CDATA[The greatly anticipated <a href="http://www.pligg.com/pro/catalog/modules/status-update-module-110.html">Status Update Module is now available for purchase from Pligg Pro</a>. This module has previously been covered in two blog articles, on where we demonstrated the features through a <a href="http://www.pligg.com/blog/584/preview-status-update-module/">video screencast</a> and another where we announced that you could <a href="http://www.pligg.com/blog/683/status-update-module-beta-testing/">try it out on the Pligg Design Gallery</a>.]]></description>
			<content:encoded><![CDATA[<p>The greatly anticipated <a href="http://www.pligg.com/pro/catalog/modules/status-update-module-110.html" target="_blank" target="_blank">Status Update Module is now available for purchase from Pligg Pro</a>. This module has previously been covered in two blog articles, on where we demonstrated the features through a <a href="http://www.pligg.com/blog/584/preview-status-update-module/" target="_blank" target="_blank">video screencast</a> and another where we announced that you could <a href="http://www.pligg.com/blog/683/status-update-module-beta-testing/" target="_blank" target="_blank">try it out on the Pligg Design Gallery</a>. </p>
<p>The <a href="http://www.pligg.com/pro/catalog/modules/status-update-module-110.html" target="_blank" target="_blank">Status Update module page on Pligg Pro</a> includes several screenshots of the module including the settings page and an image of the Status Update module in action on a site using Wistie. This collection of images as well as the detailed description provided should give you a pretty good idea of how the module works prior to making your purchase. If you have any questions though, feel free to ask us by replying to the <a href="http://forums.pligg.com/modules-sale/20030-status-update-module.html#post87834" target="_blank" target="_blank">Status Update announcement thread on the Pligg Forums</a>.</p>
<p>To benefit users who keep up with Pligg news we are offering the Status Update module at a <strong>special introductory price of $30</strong>. This deal will only be available for a short time, so if you are interested in adding more great social networking features to your Pligg website then we encourage you to <a href="http://www.pligg.com/pro/catalog/modules/status-update-module-110.html" target="_blank" target="_blank">buy it now</a> before the deal expires.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pligg.com/blog/762/status-update-module-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Template Contest Winners</title>
		<link>http://www.pligg.com/blog/758/free-template-contest-winners/</link>
		<comments>http://www.pligg.com/blog/758/free-template-contest-winners/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 15:36:13 +0000</pubDate>
		<dc:creator>Eric Heikkinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pligg.com/blog/?p=758</guid>
		<description><![CDATA[We are happy to announce that we have chosen the top 3 free Pligg CMS templates. We took into consideration the overall design, the author's history with the Pligg community, and any bugs discovered when testing the template. ]]></description>
			<content:encoded><![CDATA[<p>We are happy to announce that we have chosen the top 3 free Pligg CMS templates. We took into consideration the overall design, the author&#8217;s history with the Pligg community, and any bugs discovered when testing the template. Also important were the number of votes each template received, how many people have marked the template as &#8220;Installed&#8221; on the forum, and the author&#8217;s commitment to keep the template up to date and provide support.</p>
<p><strong>First Place: <a href="http://forums.pligg.com/free-templates/19760-mystique-digitalnature-free-template.html" target="_blank" target="_blank">Mystique</a></strong><br />
This template by <a href="http://forums.pligg.com/members/unu.html" target="_blank" target="_blank">Unu</a> immediately blew us away. Even though the original template was designed for Wordpress, we can tell that the author has spent a considerable amount of time working on this template to make it fit Pligg CMS. There are a lot of great javascript effects and overall the template works with very few bugs to speak of.</p>
<p><strong>Second Place: <a href="http://forums.pligg.com/free-templates/19656-season-template-pligg-latest-version.html" target="_blank" target="_blank">Season</a></strong><br />
This template by <a href="http://forums.pligg.com/members/sansui.html" target="_blank" target="_blank">Sansui</a> comes in four different flavors which can quickly be changed due some javascript magic. We are not huge fans of the color scheme or background images, but it looks like many Pligg users are using this template. Since the community voice is important to us we choose to ignore some of our personal preferences and award this template second place.</p>
<p><strong>Third Place: <a href="http://forums.pligg.com/free-templates/19852-galmark-template.html" target="_blank" target="_blank">Galmark</a></strong><br />
The final template was designed by forum member <a href="http://forums.pligg.com/members/shakila.html" target="_blank" target="_blank">Shakila</a>. While the design of Galmark is very nice, it suffers from a pretty big bug in the category navigation menu that could have easily been fixed. This bug along with the user&#8217;s lack of activity on Pligg.com are what made it rank third instead of second.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pligg.com/blog/758/free-template-contest-winners/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Server Status, 1.0.2 Re-release</title>
		<link>http://www.pligg.com/blog/756/server-status-1-0-2-re-release/</link>
		<comments>http://www.pligg.com/blog/756/server-status-1-0-2-re-release/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 14:38:56 +0000</pubDate>
		<dc:creator>Eric Heikkinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pligg.com/blog/?p=756</guid>
		<description><![CDATA[It looks like the pligg.com server was down for a short amount of time last night. The outage began a little before 5:00 am EST and continued until nearly 9:00 am EST. Some users on Twitter are reporting that the forums have been down for an extended period of time, but we are only able [...]]]></description>
			<content:encoded><![CDATA[<p>It looks like the pligg.com server was down for a short amount of time last night. The outage began a little before 5:00 am EST and continued until nearly 9:00 am EST. Some <a href="http://twitter.com/#search?q=pligg.com%20down" target="_blank" target="_blank">users on Twitter</a> are reporting that the forums have been down for an extended period of time, but we are only able to detect that 4 hour period of time. If anyone has problems in the future accessing the forums or any other part of Pligg.com please Tweet us @pligg.</p>
<p>Someone caught a bug in the 1.0.2 release that we would like to patch, so we will be re-releasing 1.0.2 this afternoon with a fix. The bug is related to the Groups feature for Pligg. Pagination on group published, upcoming and shared pages does not seem to work, resulting in group stories being displayed on one page rather than being spanned across many pages.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pligg.com/blog/756/server-status-1-0-2-re-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pligg CMS 1.0.2 Release</title>
		<link>http://www.pligg.com/blog/751/pligg-cms-1-0-2-release/</link>
		<comments>http://www.pligg.com/blog/751/pligg-cms-1-0-2-release/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 23:20:13 +0000</pubDate>
		<dc:creator>Eric Heikkinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pligg.com/blog/?p=751</guid>
		<description><![CDATA[The latest version of Pligg includes many fixes and new features. The list of changes is quite extensive and can be read on the Pligg 1.0.2 release thread. One of the highlights include updates to CAPTCHA that allow you to require users to fill in a CAPTCHA field whenever a user submits a comment or [...]]]></description>
			<content:encoded><![CDATA[<p>The latest version of Pligg includes many fixes and new features. The list of changes is quite extensive and can be read on the <a href="http://forums.pligg.com/current-version/20018-pligg-content-management-system-1-0-2-a.html#post87772" target="_blank" target="_blank">Pligg 1.0.2 release thread</a>. One of the highlights include updates to CAPTCHA that allow you to require users to fill in a CAPTCHA field whenever a user submits a comment or story. As mentioned in the previous blog entry, we are working on providing more solutions to fight spam and by adding CAPTCHA to story and comment input forms you should be able to reduce some types of spam.</p>
<p>A new &#8220;Auto Update&#8221; module has been added to make upgrading Pligg easier. It will detect when a new version of Pligg CMS is available and alert you from the admin panel when you should upgrade. The module then has the capability to download and extract the latest version of Pligg onto your server and run through the upgrade script. It&#8217;s still an early module that needs some testing, but we hope that making it available will encourage users to upgrade their site more frequently and closer to the release dates. One final note about this module is that users will still need to manually update any template files that have been changed between releases. Luckily the template changes are becoming less and less with each version of Pligg because of our module system.</p>
<p>The final module worth noting is the <a href="http://forums.pligg.com/free-modules/20019-xml-sitemaps-module.html#post87773" target="_blank" target="_blank">XML Sitemap module</a>, which has been updated to work with Pligg 1.0.2.  It should provide search engines with a more accurate map of your site, resulting in improved search engine results.</p>
<p>Things are a little easier to manage on your Pligg site with the 1.0.2 update. Improvements have been made to the admin panel group, comment and story management pages. It should now be easier to mass delete bad content from your website.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pligg.com/blog/751/pligg-cms-1-0-2-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upcoming 1.0.2 Release</title>
		<link>http://www.pligg.com/blog/743/upcoming-1-0-2-release/</link>
		<comments>http://www.pligg.com/blog/743/upcoming-1-0-2-release/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 06:50:05 +0000</pubDate>
		<dc:creator>Eric Heikkinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pligg.com/blog/?p=743</guid>
		<description><![CDATA[We have been working for a while now on the 1.0.2 release, and after 2 and a half months of work we are just about ready to release an update for one of the most promising CMS&#8217;s.  I have been holding off on this release because I wanted to provide a rock solid release [...]]]></description>
			<content:encoded><![CDATA[<p>We have been working for a while now on the 1.0.2 release, and after 2 and a half months of work we are just about ready to release an update for <a href="http://www.packtpub.com/most-promising-open-source-cms-finalists" target="_blank" target="_blank">one of the most promising CMS&#8217;s</a>.  I have been holding off on this release because I wanted to provide a rock solid release to go with the new <a href="http://www.pligg.com/blog/584/preview-status-update-module/" target="_blank" target="_blank">Status Update module</a> which we will be releasing at the same time as 1.0.2. We have also written a new &#8220;Auto Update&#8221; module which should make it easy for you to upgrade from 1.0.2 and beyond without having to deal with using FTP to transfer files to your server. </p>
<p>The top priority for our developers now is to fight spam and we plan on creating a series of FREE modules to combat the 2 major types of Pligg spam. The first type is the most common and it&#8217;s the generic spam that every blog and forum on the internet see. It is a type of spam that is usually filled with keywords that could easily be detected and flagged as spam. We are in the beginning stages of developing a free word filter module for Pligg that will use a dictionary of words to deal with this type of spam. It could also be useful for blocking profanity on your site. The second form of spam is far more difficult because it is much better at disguising itself as a legitimate story. It comes from either software or services that allow people to submit to many Pligg (and other CMS) sites all at once. Unfortunately we are taking a while to perfect our battle strategy on how to stop this type of spam over the long haul. As we hammer out the details we will spend time developing a couple free modules to protect Pligg users from this type of spam, or at the very least slow it down. There are some already great solutions out there for battling spam, including the <a href="http://forums.pligg.com/free-modules/13972-submit-antispam-addon-v-0-1-a.html" target="_blank" target="_blank">Submit Antispam Addon</a> and <a href="http://www.pligg.com/pro/catalog/modules/story-admin-email-moderation-98.html" target="_blank" target="_blank">Story Admin Email Moderation</a> modules.</p>
<p>If you can&#8217;t wait for the 1.0.2 release, or if would like to test our latest SVN version you can grab SVN release <a href="http://www.pligg.com/downloads/svn/1743.zip" target="_blank" target="_blank">1743 here</a>. We could use your help testing this version for bugs since we have made quite a few changes to the core and it&#8217;s always best to get a variety of users opinion on our builds before an official release. Test it out and let us know if you have any problems by visiting our <a href="http://forums.pligg.com/javachat.php" target="_blank" target="_blank">IRC chat room</a>.</p>
<p>One last reminder is that everyone needs to vote for Pligg as this year&#8217;s <a href="http://www.packtpub.com/most-promising-open-source-cms-finalists" target="_blank" target="_blank">Most Promising CMS&#8217;s</a>. There&#8217;s only 1 day left and this will be the last reminder.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pligg.com/blog/743/upcoming-1-0-2-release/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Free Pligg Template Contest Voting</title>
		<link>http://www.pligg.com/blog/730/free-pligg-template-contest-voting/</link>
		<comments>http://www.pligg.com/blog/730/free-pligg-template-contest-voting/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 19:55:05 +0000</pubDate>
		<dc:creator>Eric Heikkinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pligg.com/blog/?p=730</guid>
		<description><![CDATA[Our contest for best free Pligg template has been closed to new entrants and now we need some user input on what you think is the best free template for Pligg CMS. We&#8217;ve compiled a list of 16 of the most popular templates that are compatible with Pligg 1.0.0 or above and we would appreciate [...]]]></description>
			<content:encoded><![CDATA[<p>Our contest for best free Pligg template has been closed to new entrants and now we need some user input on what you think is the best free template for Pligg CMS. We&#8217;ve compiled a list of 16 of the most popular templates that are compatible with Pligg 1.0.0 or above and we would appreciate it if you took a moment to vote for your favorite. If you are unfamiliar with all of the great templates, click on a link for each of the poll options to visit each template&#8217;s download page. The download thread on the Pligg Forums will usually contain a screenshot or link to a demo. </p>
Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
<p>We will be using the poll results as part of the criteria in selecting the winners of the template design contest. Seven of the sixteen templates are not eligible for winning this contest because the authors are Pligg developers who will be judging the entries. Voting will remain open until Sunday, November 1. Make sure that you cast your vote before Halloween is over. </p>
<p>If you are an author of one of these templates you will receive an email shortly with a $20 Pligg Pro gift certificate as an entry prize.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pligg.com/blog/730/free-pligg-template-contest-voting/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Template Deadline Extended</title>
		<link>http://www.pligg.com/blog/727/template-deadline-extended/</link>
		<comments>http://www.pligg.com/blog/727/template-deadline-extended/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 03:52:24 +0000</pubDate>
		<dc:creator>Eric Heikkinen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pligg.com/blog/?p=727</guid>
		<description><![CDATA[The original deadline for the template design contest was this evening, but I&#8217;ve decided to extend the contest to October 19. This gives users 8 additional days to either begin their template or bug test and improve existing submissions. 
If you haven&#8217;t yet voted for Pligg, please vote for us as the Most Promising CMS [...]]]></description>
			<content:encoded><![CDATA[<p>The original deadline for the <a href="http://www.pligg.com/blog/610/design-a-template-win-cash-prizes/" target="_blank" target="_blank">template design contest</a> was this evening, but I&#8217;ve decided to extend the contest to October 19. This gives users 8 additional days to either begin their template or bug test and improve existing submissions. </p>
<p>If you haven&#8217;t yet voted for Pligg, please <a href="http://www.packtpub.com/most-promising-open-source-cms-finalists" target="_blank" target="_blank">vote for us as the Most Promising CMS</a> in the CMS Awards competition. It only takes a few seconds to cast a vote and we really appreciate your support.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pligg.com/blog/727/template-deadline-extended/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
