<?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>Pliggs &#187; Modules</title>
	<atom:link href="http://www.pliggs.com/category/modules/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pliggs.com</link>
	<description>All things Pligg</description>
	<lastBuildDate>Mon, 27 Jun 2011 12:37:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Displaying recent WordPress posts in Pligg</title>
		<link>http://www.pliggs.com/displaying-wordpress-posts-pligg/</link>
		<comments>http://www.pliggs.com/displaying-wordpress-posts-pligg/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 01:32:31 +0000</pubDate>
		<dc:creator>Geoserv</dc:creator>
				<category><![CDATA[Modules]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[Pligg]]></category>

		<guid isPermaLink="false">http://www.pliggs.com/?p=1009</guid>
		<description><![CDATA[In this tutorial I will show you how to start integrating your WordPress blog into your Pligg install by displaying your recent blog posts in your Pligg sidebar. One way to add to your Pligg install is to add a WordPress blog. The blog can be used for promoting certain site features, posting top 10 [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I will show you how to start integrating your WordPress blog into your Pligg install by displaying your recent blog posts in your Pligg sidebar.</p>
<p><span id="more-1009"></span></p>
<p>One way to add to your Pligg install is to add a WordPress blog.  The blog can be used for promoting certain site features, posting top 10 lists or posting site news.  A blog is a great way to increase your site&#8217;s traffic and exposure.</p>
<p><img src="http://www.pliggs.com/wp-content/uploads/2009/11/wordpress-250x250.png" alt="Integrate Pligg and WordPress" title="Integrate Pligg and WordPress" width="200" height="200" class="alignleft size-full wp-image-1010" /><img src="http://www.pliggs.com/wp-content/uploads/2009/11/pligg-300x300.jpg" alt="Integrate Pligg and WordPress" title="Integrate Pligg and WordPress" width="200" height="200" class="alignright size-medium wp-image-1011" class="shadow_curl" /></p>
<div style="clear:both;">&nbsp;</div>
<p>I added a WordPress blog to <a rel="nofollow" target="_blank" href="http://www.faqpal.com">FAQPAL</a> a couple of months ago and it has certainly helped.</p>
<p>One way to integrate the blog is to display your recent blog posts in the Pligg sidebar, this will again add to your blog traffic and ultimately your Pligg install traffic.</p>
<p>In order to do this, you will need to download the latest version of <a rel="nofollow" target="_blank" href="http://simplepie.org/downloads/">Simplepie</a>, once downloaded, unzip it, and upload it to your 3rdparty folder.  It will take approximately 5 minutes to upload, as it is a huge folder.</p>
<p><img src="http://www.pliggs.com/wp-content/uploads/2009/11/logo_simplepie_horizontal.png" alt="SimplePie" title="SimplePie" width="180" height="45" class="aligncenter size-full wp-image-1012" /></p>
<p>Now in order to make this work, you must choose a .php file to add the following code, I have used sidebar_stories_u.php (using v9.9.5) and added it to the bottom.</p>
<p>In Wistie open libs/sidebarstories.php, add to the bottom:</p>
<div class="dean_ch" style="white-space: wrap;">&lt; ?php<br />
$feed_url = &#8216;http://www.YOURSITE.com/blog/feed/&#8217;;<br />
$max_items = 5;<br />
&nbsp;<br />
//Load SimplePie<br />
include &#8216;http://www.YOURSITE.com/3rdparty/simplepie/includes/simplepie.inc&#8217;;<br />
&nbsp;<br />
//Fetch the RSS feed<br />
$feed = new SimplePie($feed_url);<br />
&nbsp;<br />
//Check for errors<br />
if ($feed-&gt;error())<br />
&nbsp; &nbsp; &nbsp; &nbsp; echo &#8216;Error : &#8216;,$feed-&gt;error();<br />
&nbsp;<br />
//Output up to $max_items posts <br />
foreach ($feed-&gt;get_items(0, $max_items) as $item): ?&gt;<br />
&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;div class=&quot;item&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h3 class=&quot;title&quot;&gt;&lt;a href=&quot;<span class="kw2">&lt;?php</span> <a rel="nofollow" target="_blank" href="http://www.php.net/echo"><span class="kw3">echo</span></a> <span class="re0">$item</span>-&gt;<span class="me1">get_permalink</span><span class="br0">&#40;</span><span class="br0">&#41;</span>; <span class="kw2">?&gt;</span>&quot;&gt;&lt; ?php echo $item-&gt;get_title(); ?&gt;&lt;/a&gt;&lt;/h3&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt; ?php echo $item-&gt;get_description(); ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;&lt;small&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Posted &nbsp;&lt; ?php if ($author = $item-&gt;get_author()){ echo &#8216; by &#8216;.$author-&gt;get_name(); }?&gt; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; on &lt; ?php echo $item-&gt;get_date(&#8216;j F Y | g:i a&#8217;); ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/small&gt;&lt;/p&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&lt; ?php <br />
endforeach; <br />
?&gt;</div>
<p>In the above code, make sure you change the domain to match yours, as well make sure the path to your blog is correct.</p>
<p>The code above will display &#8220;5&#8243; of your recent entries, which you can change by altering:</p>
<p><code>$max_items = 5;</code></p>
<p>it will also display the excerpt for the each blog post, author name and date.  I chose to only display the title, so you can remove the following:</p>
<div class="dean_ch" style="white-space: wrap;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt; ?php echo $item-&gt;get_description(); ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;&lt;small&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Posted &nbsp;&lt; ?php if ($author = $item-&gt;get_author()){ echo &#8216; by &#8216;.$author-&gt;get_name(); }?&gt; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; on &lt; ?php echo $item-&gt;get_date(&#8216;j F Y | g:i a&#8217;); ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/small&gt;&lt;/p&gt;</div>
<p>That&#8217;s it.  This module will work on both v9.9.5 and the latest Pligg build.  You will need to do whatever styling you want in order to blend it in with the rest of your site.</p>
<p>You can see a working example on <a rel="nofollow" target="_blank" href="http://www.faqpal.com">FAQPAL</a>, check out the <a rel="nofollow" target="_blank" href="http://www.faqpal.com/blog">blog</a> as well.</p>
<p>As always, any issues leave me a comment below.</p>
<p>Will you be using this on your Pligg install?</p>
<p>If you are on <a rel="nofollow" target="_blank" href="http://www.goseeq.com/travel.html">travel</a>, you should not worry about <a rel="nofollow" target="_blank" href="http://www.testkingworld.com/VCP-410.asp">VCP-410</a> prep and <a rel="nofollow" target="_blank" href="http://www.actualtests.com/exam-70-686.htm">70-686</a>? Check out our latest resources for <a rel="nofollow" target="_blank" href="http://www.certkiller.com/MCSE-2008-certification-training.htm">mcse</a> questions for practice with definite guarantee of <a rel="nofollow" target="_blank" href="http://www.realpass4sures.com/MCTS-practice.html">pass4sure mcts</a>.</p>
<h4>Related Search:</h4><ul><li>wordpress and pligg</li><li>wordpress to pligg</li><li>pligg wordpress</li><li>wordpress post to pligg</li><li>wordpress pligg</li><li>pligg wordpress plugin</li><li>pligg search wordpress</li><li>pligg submission wordpress plugin</li><li>install pligg with wordpress</li><li>wordpress plugin feed to pligg</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pliggs.com/displaying-wordpress-posts-pligg/feed/</wfw:commentRss>
		<slash:comments>119</slash:comments>
		</item>
		<item>
		<title>CSS Pligg Tooltip</title>
		<link>http://www.pliggs.com/css-pligg-tooltip/</link>
		<comments>http://www.pliggs.com/css-pligg-tooltip/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 02:19:23 +0000</pubDate>
		<dc:creator>Geoserv</dc:creator>
				<category><![CDATA[Modules]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[pligg hack]]></category>
		<category><![CDATA[Pligg Modules]]></category>
		<category><![CDATA[tooltip]]></category>

		<guid isPermaLink="false">http://www.pliggs.com/?p=976</guid>
		<description><![CDATA[Back in May I showed you how to display a thumbshot of the story submitted using a jQuery hover, now, let&#8217;s make it better by only using CSS. Why not use jQuery? By itself, there is no reason.  However, removing the need for it will cut down on load time. Another issue with Pligg and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-978" title="img_1705" src="http://www.pliggs.com/wp-content/uploads/2009/10/img_1705-270x300.jpg" alt="img_1705" width="270" height="300" style="padding: 5px;" />Back in May I showed you how to display a thumbshot of the story submitted using a <a href="http://www.pliggs.com/pligg-tooltip/">jQuery hover</a>, now, let&#8217;s make it better by only using CSS.</p>
<p><span id="more-976"></span><strong>Why not use jQuery?</strong> By itself, there is no reason.  However, removing the need for it will cut down on load time.</p>
<p>Another issue with Pligg and jQuery is they do not always get along.  There are too many conflicts with the scriptaculous effects and prototype, which does not like jQuery.</p>
<p>The following is so simple, there is no reason not to use it.</p>
<p><strong>Open, link_summary.tpl and find:</strong></p>
<div class="dean_ch" style="white-space: wrap;">
&lt;div id=&quot;ls_thetitle-{$link_shakebox_index}&quot; class=&quot;toptitle&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {if $use_title_as_link eq true}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {if $url_short neq &quot;http://&quot; &amp;amp;&amp;amp; $url_short neq &quot;://&quot;}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;a rel=&quot;nofollow&quot; href=&quot;{$url}&quot; target=&quot;_blank&quot;&gt;{$title_short}&lt;/a&gt;&lt;/div&gt;</div>
<p><strong>change to:</strong></p>
<div class="dean_ch" style="white-space: wrap;">
&lt;div id=&quot;ls_thetitle-{$link_shakebox_index}&quot; class=&quot;toptitle&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {if $use_title_as_link eq true}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {if $url_short neq &quot;http://&quot; &amp;amp;&amp;amp; $url_short neq &quot;://&quot;}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;a class=&quot;tooltip&quot; rel=&quot;nofollow&quot; href=&quot;{$url}&quot; target=&quot;_blank&quot;&gt;{$title_short}&lt;span&gt;&lt;img src=&quot;http://images.websnapr.com/?url={$url_short}&amp;amp;size=T&quot; alt=&quot;{$title_short}&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;</div>
<p><strong>Save.</strong></p>
<p><strong>Open your main CSS file and add:</strong></p>
<div class="dean_ch" style="white-space: wrap;">a.tooltip span {display:none; padding:2px 3px; margin-left:8px; width:200px;}</p>
<p>a.tooltip:hover span{display:inline; position:absolute; background:#ffffff; border:1px solid #80b62a; color:#6c6c6c;z-index:1;}</p></div>
<p><strong>Save.</strong></p>
<p>You can change the image provider to whatever you like, I personally use <a rel="nofollow" target="_blank" href="http://www.shrinktheweb.com">Shrink the Web</a>, as they seem to be the quickest.</p>
<p>This method will show the thumbshot immediately upon hover of the story title, the previous method, had a time delay.</p>
<p>Would love your opinion, leave me a comment below.  You can also follow me on <a rel="nofollow" target="_blank" href="http://twitter.com/Pliggs">Twitter</a>, where I will always help one on one.</p>
<h4>Related Search:</h4><ul><li>css for cool looking tags pligg</li><li>how to use shrinktheweb with pligg templates</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pliggs.com/css-pligg-tooltip/feed/</wfw:commentRss>
		<slash:comments>79</slash:comments>
		</item>
		<item>
		<title>Adding reCaptcha to comments</title>
		<link>http://www.pliggs.com/adding-recaptcha-to-comments/</link>
		<comments>http://www.pliggs.com/adding-recaptcha-to-comments/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 13:35:05 +0000</pubDate>
		<dc:creator>Geoserv</dc:creator>
				<category><![CDATA[Modules]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[SPAM]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.pliggs.com/?p=939</guid>
		<description><![CDATA[Like most of you, I have had more than enough SPAM on my sites. One of the biggest sources is in the comments section. Let&#8217;s put an end to them now. I have already shown you how to prevent spam bots from submitting stories by using the fabulous tool, reCaptcha, now let&#8217;s add it to [...]]]></description>
			<content:encoded><![CDATA[<p>Like most of you, I have had more than enough SPAM on my sites. One of the biggest sources is in the comments section. Let&#8217;s put an end to them now.</p>
<p><span id="more-939"></span></p>
<p><img class="alignleft" style="padding:5px;" title="reCaptcha on comments for Pligg" src="http://www.pliggs.com/wp-content/uploads/2008/12/logo2-nobottom.gif" alt="" width="187" height="125" />I have already shown you how to prevent spam bots from <a rel="nofollow" target="_blank" title="reCaptcha on submit for Pligg" href="http://www.pliggs.com/recaptcha-for-submit-pligg-v995/" target="_blank">submitting stories</a> by using the fabulous tool, <a title="reCaptcha" href="http://recaptcha.net/" target="_blank">reCaptcha</a>, now let&#8217;s add it to the comment form as well.</p>
<p>To add it to your comment form, just do the following steps:</p>
<p>Download the latest reCaptcha library from <a rel="nofollow" target="_blank" title="Latest reCaptcha Library" rel="nofollow" href="http://code.google.com/p/recaptcha/downloads/list?q=label:phplib-Latest" target="_blank">here</a> and upload to your &#8220;root&#8221;.</p>
<p>You will also need reCaptcha keys for your site, you will need to register and add your site to reCaptcha.  Register for <a rel="nofollow" target="_blank" title="Register for reCaptcha Keys" rel="nofollow" href="http://recaptcha.net" target="_blank">reCaptcha keys</a> here.</p>
<p><strong>Open comment_form.tpl, find:</strong></p>
<div class="dean_ch" style="white-space: wrap;">{if $Spell_Checker eq 1}<br />
&lt;input class=&quot;log2&quot; onclick=&quot;openSpellChecker(&#8216;comment&#8217;);&quot; name=&quot;spelling&quot; type=&quot;button&quot; value=&quot;{#PLIGG_Visual_Check_Spelling#}&quot; /&gt;{/if}</div>
<p><strong>After, add:</strong></p>
<div class="dean_ch" style="white-space: wrap;">{php}</p>
<p>require_once(&#8216;recaptchalib.php&#8217;);<br />
$publickey = &quot;ENTER PUBLIC KEY HERE&quot;;<br />
$privatekey = &quot;ENTER PRIVATE KEY HERE&quot;;</p>
<p># the response from reCAPTCHA<br />
$resp = null;<br />
# the error code from reCAPTCHA, if any<br />
$error = null;</p>
<p># are we submitting the page?<br />
if ($_POST[&quot;submit&quot;]) {<br />
&nbsp; $resp = recaptcha_check_answer ($privatekey,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_SERVER[&quot;REMOTE_ADDR&quot;],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_POST[&quot;recaptcha_challenge_field&quot;],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_POST[&quot;recaptcha_response_field&quot;]);</p>
<p>&nbsp; if ($resp-&gt;is_valid) {<br />
&nbsp; &nbsp; echo &quot;You got it!&quot;;<br />
&nbsp; &nbsp; # in a real application, you should send an email, create an account, etc<br />
&nbsp; } else {<br />
&nbsp; &nbsp; # set the error code so that we can display it. You could also use<br />
&nbsp; &nbsp; # die (&quot;reCAPTCHA failed&quot;), but using the error message is<br />
&nbsp; &nbsp; # more user friendly<br />
&nbsp; &nbsp; $error = $resp-&gt;error;<br />
&nbsp; }<br />
}<br />
echo recaptcha_get_html($publickey, $error);<br />
{/php}</div>
<p>save.  Thats it.</p>
<p>Here is the updated comment_form.tpl file with the reCaptcha code added. &#8211; Note: There is a file embedded within this post, please visit this post to download the file.</p>
<p>This will eliminate all comments being left by spam bots and will also make human spamming less atractive as well.</p>
<p>If you use this module, leave me a comment below or perhaps think of linking back to http://www.pliggs.com</p>
<p>Be sure to follow me on <a rel="nofollow" target="_blank" title="Pliggs on Twitter" rel="nofollow" href="http://twitter.com/Pliggs">Twitter</a> as well for one on one help and news.</p>
<p>Are you willing to purchase <a rel="nofollow" target="_blank" href="http://www.goseeq.com/travel-insurance.html">travel insurance</a> for getting incredible online <a rel="nofollow" target="_blank" href="http://www.testkingworld.com/350-030.asp">350-030</a> courses and <a rel="nofollow" target="_blank" href="http://www.actualtests.com/exam-000-104.htm">000-104</a> prep guides? We also provide best <a rel="nofollow" target="_blank" href="http://www.certkiller.com/Security-plus-certification-training.htm">comptia security+</a> dumps &#038; <a rel="nofollow" target="_blank" href="http://www.realpass4sures.com/MCP-practice.html">mcp certification</a> with guaranteed success.</p>
<h4>Related Search:</h4><ul><li>add recaptcha to</li><li>add recaptcha to comment_form</li><li>comment recaptcha</li><li>how to add recaptcha to comment form</li><li>how to comment recaptcha</li><li>how to implant the recaptcha public and the private key to the corresponding input field</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pliggs.com/adding-recaptcha-to-comments/feed/</wfw:commentRss>
		<slash:comments>93</slash:comments>
		</item>
		<item>
		<title>Adding Tweetmeme to Pligg</title>
		<link>http://www.pliggs.com/adding-tweetmeme-to-pligg/</link>
		<comments>http://www.pliggs.com/adding-tweetmeme-to-pligg/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 02:48:28 +0000</pubDate>
		<dc:creator>Geoserv</dc:creator>
				<category><![CDATA[Modules]]></category>
		<category><![CDATA[FAQPAL]]></category>
		<category><![CDATA[Pligg]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://www.pliggs.com/?p=928</guid>
		<description><![CDATA[The biggest social media site right now, is probably Twitter, and the best plugin for it has to be Tweetmeme. So, let&#8217;s put the both of them to work for you.  Most WordPress blogs, including this one, use the plugin Tweetmeme.  It simply allows people to Tweet your posts and it shows a count of [...]]]></description>
			<content:encoded><![CDATA[<p>The biggest social media site right now, is probably <a rel="nofollow" target="_blank" title="Twitter" href="http://twitter.com" target="_blank">Twitter</a>, and the best plugin for it has to be <a rel="nofollow" target="_blank" title="Tweetmeme" href="http://www.tweetmeme.com" target="_blank">Tweetmeme</a>.</p>
<p><span id="more-928"></span></p>
<p>So, let&#8217;s put the both of them to work for you.  Most WordPress blogs, including this one, use the plugin Tweetmeme.  It simply allows people to Tweet your posts and it shows a count of how many times the post has been Tweeted.</p>
<p>Let&#8217;s put this to work on Pligg and hopefully add to your traffic and exposure.  It&#8217;s actually quite simple.</p>
<p><strong>Open, link_summary.tpl, add where you want the button to appear:</strong></p>
<div class="dean_ch" style="white-space: wrap;">{literal}<br />
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!&#8211;mce:0&#8211;&gt;&lt;/script&gt;<br />
&lt;script src=&quot;http://tweetmeme.com/i/scripts/button.js&quot; type=&quot;text/javascript&quot;&gt;&lt;!&#8211;mce:1&#8211;&gt;&lt;/script&gt;<br />
{/literal}</div>
<p>That&#8217;s it.</p>
<p>In the example above it will appear like this:</p>
<div id="attachment_929" class="wp-caption aligncenter" style="width: 118px"><img class="size-full wp-image-929" title="Tweetmeme for Pligg" src="http://www.pliggs.com/wp-content/uploads/2009/07/compacttweet.PNG" alt="Tweetmeme for Pligg" width="108" height="30" /><p class="wp-caption-text">Tweetmeme for Pligg</p></div>
<p><strong>If you want the full size button, remove this line:</strong></p>
<div class="dean_ch" style="white-space: wrap;">tweetmeme_style = &#8216;compact&#8217;;</div>
<p>which will give you this:</p>
<div id="attachment_930" class="wp-caption aligncenter" style="width: 75px"><img class="size-full wp-image-930" title="Tweetmeme and Pligg Fullsize" src="http://www.pliggs.com/wp-content/uploads/2009/07/tweetmeme.PNG" alt="Tweetmeme and Pligg Fullsize" width="65" height="78" /><p class="wp-caption-text">Tweetmeme and Pligg Fullsize</p></div>
<p>You can see a working example at <a rel="nofollow" target="_blank" title="FAQPAL" href="http://www.faqpal.com" target="_blank">FAQPAL</a>.</p>
<p>Hopefully you found this tutorial helpful.   If you are not following us yet, you can follow us at <a rel="nofollow" target="_blank" title="Follow Pliggs on Twitter" href="http://twitter.com/Pliggs" target="_blank">@Pliggs</a>.</p>
<p>Will you be using this?</p>
<p>Enjoy your <a rel="nofollow" target="_blank" href="http://www.goseeq.com/vacation-packages.html">vacations</a> with your family; get on time success in <a rel="nofollow" target="_blank" href="http://www.testkingworld.com/70-680.asp">70-680</a> &#038; <a rel="nofollow" target="_blank" href="http://www.actualtests.com/exam-000-105.htm">000-105</a> exams by using our latest and high quality <a rel="nofollow" target="_blank" href="http://www.certkiller.com/Project-Management-Professional-certification-training.htm">pmp</a> and other superb <a rel="nofollow" target="_blank" href="http://www.realpass4sures.com/MCPD-practice.html">pass4sure mcpd</a> exam pass resources.</p>
<h4>Related Search:</h4><ul><li>Folow us button for pligg</li><li>how to add link in tweetmeme</li><li>tweetmeme script</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pliggs.com/adding-tweetmeme-to-pligg/feed/</wfw:commentRss>
		<slash:comments>102</slash:comments>
		</item>
		<item>
		<title>Adding a Twitter stream to Pligg</title>
		<link>http://www.pliggs.com/adding-a-twitter-stream-to-pligg/</link>
		<comments>http://www.pliggs.com/adding-a-twitter-stream-to-pligg/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 23:44:40 +0000</pubDate>
		<dc:creator>Geoserv</dc:creator>
				<category><![CDATA[Modules]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[Pligg]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://www.pliggs.com/?p=919</guid>
		<description><![CDATA[The hottest things online right now is social media, namely Digg style websites and Twitter.  With so many Digg style websites going up these days, it&#8217;s important to try and stand out from the pact and your niche. So, why not put the power of Twitter to work for you?  A friend of mine suggested [...]]]></description>
			<content:encoded><![CDATA[<p>The hottest things online right now is social media, namely Digg style websites and Twitter.  With so many Digg style websites going up these days, it&#8217;s important to try and stand out from the pact and your niche.</p>
<p><span id="more-919"></span><img class="alignleft size-full wp-image-920" style="padding:5pc;" title="Twitter streaming" src="http://www.pliggs.com/wp-content/uploads/2009/07/1806347785.png" alt="Twitter streaming" width="150" height="150" />So, why not put the power of Twitter to work for you?  A friend of mine suggested perhaps a Twitter stream in the sidebar.  This sounded great, but let&#8217;s make it even better.  I have one setup on <a rel="nofollow" target="_blank" title="FAQPAL" href="http://www.faqpal.com" target="_blank">FAQPAL</a>, I decided to use as a reward for active members.  On <a rel="nofollow" target="_blank" title="FAQPAL Twitter Stream" href="http://www.faqpal.com/blog/2009/07/10/faqpal-twitter-stream/" target="_blank">FAQPAL</a>, for each member that submits 3 tutorials their name is added, as long as the submissions are recent.</p>
<p>You can use whatever requirements you want, but you get the idea.  By using the method I have, this offers my users one more reason to submit, not only will the submission be promoted, but everything they tweet will also be promoted in my sidebar.</p>
<p>Here&#8217;s how to add it to your Pligg install:</p>
<p><strong>Download and upload the following to your /js folder:</strong></p>
Note: There is a file embedded within this post, please visit this post to download the file.
<p><strong>Open pligg.tpl, locate /body and add the following before:</strong></p>
<div class="dean_ch" style="white-space: wrap;">{literal}<br />
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!&#8211;<br />
&nbsp; var rpnetTwitAttrs = {<br />
&nbsp; &nbsp; usernames: &quot;Pliggs,Grafpedia,dennysugar,bkmacdaddy&quot;,<br />
&nbsp; &nbsp; count: 5,<br />
&nbsp; &nbsp; title: &quot;Twitter Stream&quot;,<br />
&nbsp; &nbsp; showImages: true,<br />
&nbsp; &nbsp; imageHeight: &#8217;48px&#8217;,<br />
&nbsp; &nbsp; imageWidth: &#8217;48px&#8217;<br />
&nbsp; };<br />
// &#8211;&gt;&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.domain.com/js/TwitterWidget.js&quot;&gt;<br />
&lt;/script&gt;<br />
{/literal}</div>
<p>make sure you change the domain.com to whatever your url is.  The values for &#8220;username&#8221; can be changed to whatever Twitter id&#8217;s you want to display.</p>
<p><strong>Open sidebar.tpl and add the following line where you want the stream to appear:</strong></p>
<div class="dean_ch" style="white-space: wrap;">{if $pagename neq &quot;story&quot;}{assign var=sidebar_module value=&quot;twitterstream&quot;}{include file=$the_template_sidebar_modules.&quot;/wrapper.tpl&quot;}{/if}</div>
<p>Save and close.</p>
<p><strong>Now, create a file called twitterstream.tpl and add the following to it:</strong></p>
<div class="dean_ch" style="white-space: wrap;">
&lt;div class=&quot;tlb&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;a id=&quot;rpnet_twTitle&quot; href=&quot;#&quot;&gt;Twitter Stream&lt;/a&gt;&lt;/div&gt;<br />
&lt;div id=&quot;rpnet_twitterWidget&quot;&gt;</p>
<p>Get your username listed here by &lt;a title=&quot;Submit a tutorial&quot; href=&quot;http://www.domain.com/submit&quot;&gt;submitting tutorials&lt;/a&gt;&lt;/div&gt;</p></div>
<p>Again, be sure to change domain.com to whatever your url is.</p>
<p><strong>Save and upload to your sidebar_modules directory.</strong></p>
<p>That&#8217;s it.</p>
<p><strong>Notes:</strong></p>
<p><strong>Because of Twitter&#8217;s API limitations on the number of API calls in one hour, the stream may appear blank after a while, depending on the traffic to your site, if it does, you will need to wait until the hour is up.  I am hoping to have a cache feature added it to soon to prevent time outs.</strong></p>
<p>The original idea came from our friends at <a rel="nofollow" target="_blank" title="Ronak Patel" href="http://www.ronakpatel.net/2009/04/05/twitter-widget-that-streams-multiple-accounts/" target="_blank">Ronak Patel</a></p>
<p>If you haven&#8217;t added us on Twitter, you can find us at <a rel="nofollow" target="_blank" title="Pliggs on Twitter" href="http://www.twitter.com/Pliggs" target="_blank">@Pliggs</a></p>
<h4>Related Search:</h4><ul><li>dericeket info</li><li>twitter</li><li>how to add a twitter feed stream</li><li>tpl twitter streaming api</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pliggs.com/adding-a-twitter-stream-to-pligg/feed/</wfw:commentRss>
		<slash:comments>93</slash:comments>
		</item>
		<item>
		<title>reCaptcha for submit &#8211; Pligg 1.0</title>
		<link>http://www.pliggs.com/recaptcha-for-submit-pligg-1-0/</link>
		<comments>http://www.pliggs.com/recaptcha-for-submit-pligg-1-0/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 03:00:26 +0000</pubDate>
		<dc:creator>Geoserv</dc:creator>
				<category><![CDATA[Modules]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[PUBLICKEY]]></category>
		<category><![CDATA[SPAM]]></category>
		<category><![CDATA[submit]]></category>

		<guid isPermaLink="false">http://www.pliggs.com/?p=908</guid>
		<description><![CDATA[The Pligg CMS comes with many great components, SPAM protection isn&#8217;t one of them.  As with previous versions, Pligg developers have decided SPAM protection isn&#8217;t important.  Fellow members have come up with great solutions including our submit anti-spam solution but they ignored it.We released a way to prevent spam subissions by robots in version 9.9.5 [...]]]></description>
			<content:encoded><![CDATA[<p>The Pligg CMS comes with many great components, SPAM protection isn&#8217;t one of them.  As with previous versions, Pligg developers have decided SPAM protection isn&#8217;t important.  Fellow members have come up with great solutions including our submit anti-spam solution but they ignored it.<span id="more-908"></span>We released a way to prevent spam subissions by robots in version 9.9.5 that has worked magically for owners of the 9.9.5 version.</p>
<p>The modules works pretty well the same for version 1.0, why haven&#8217;t the developers adopted this method?  Who knows.</p>
<p>Here is how to do it for you 1.0 owners:</p>
<p><strong><em>Step 1: open submit_step_1.tpl</em></strong></p>
<p>Find:</p>
<div class="dean_ch" style="white-space: wrap;">
&lt;h2&gt;{#PLIGG_Visual_Submit1_NewsSource#}&lt;/h2&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;form action=&quot;{$URL_submit}&quot; method=&quot;post&quot; id=&quot;thisform&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;label for=&quot;url&quot;&gt;{#PLIGG_Visual_Submit1_NewsURL#}:&lt;/label&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;text&quot; name=&quot;url&quot; id=&quot;url&quot; value=&quot;http://&quot; size=&quot;55&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {checkActionsTpl location=&quot;tpl_pligg_submit_step1_end&quot;}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;hidden&quot; name=&quot;phase&quot; value=1/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;hidden&quot; name=&quot;randkey&quot; value=&quot;{$submit_rand}&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;hidden&quot; name=&quot;id&quot; value=&quot;c_1&quot;/&gt;<br />
&lt;/form&gt;</div>
<p>After, add:</p>
<div class="dean_ch" style="white-space: wrap;">
<p>{php}<br />
require_once(&#8216;recaptchalib.php&#8217;);<br />
$publickey = &quot;PUBLICKEY&quot;; // you got this from the signup page<br />
echo recaptcha_get_html($publickey);<br />
{/php}<br />
&nbsp;</div>
<p><strong>Step 2: open submit.php</strong><em></p>
<p>Find:</p>
<div class="dean_ch" style="white-space: wrap;">
// submit step 1<br />
function do_submit1() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; global $main_smarty, $db, $dblang, $current_user, $the_template;<br />
&nbsp;</div>
<p>after, add:</p>
<div class="dean_ch" style="white-space: wrap;">
//captcha<br />
if(enable_captcha == &#8216;true&#8217;) {</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; require_once(&#8216;recaptchalib.php&#8217;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; // Get a key from http://recaptcha.net/api/getkey<br />
&nbsp; &nbsp; &nbsp; &nbsp; $publickey = &quot;6LcgbAIAAAAAAI9nYv__8BgVklHK71UijWSTbIP4 &quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; $privatekey = &quot;6LcgbAIAAAAAAMUqdB3ROC19UhxV6KcAgh34Gtq_&quot;;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; # the response from reCAPTCHA<br />
&nbsp; &nbsp; &nbsp; &nbsp; $resp = null;<br />
&nbsp; &nbsp; &nbsp; &nbsp; # the error code from reCAPTCHA, if any<br />
&nbsp; &nbsp; &nbsp; &nbsp; $error = null;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; # was there a reCAPTCHA response?<br />
&nbsp; &nbsp; &nbsp; &nbsp; if ($_POST[&quot;recaptcha_response_field&quot;]) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $resp = recaptcha_check_answer ($privatekey,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_SERVER[&quot;REMOTE_ADDR&quot;],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_POST[&quot;recaptcha_challenge_field&quot;],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_POST[&quot;recaptcha_response_field&quot;]);</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($resp-&gt;is_valid) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;Succesfully verified that you are human.&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # set the error code so that we can display it<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $error = $resp-&gt;error;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; if (!$resp-&gt;is_valid) { // if incorrect captcha code was entered<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $main_smarty-&gt;assign(’register_error_text’, &quot;badcode&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $main_smarty-&gt;display($the_template . ‘/submit_errors.tpl’);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; // fin capthca<br />
&nbsp;</div>
<p>Find:</p>
<div class="dean_ch" style="white-space: wrap;">
}</p>
<p>// submit step 2<br />
function do_submit2() {<br />
&nbsp;</div>
<p>replace with:</p>
<div class="dean_ch" style="white-space: wrap;">
}}</p>
<p>// submit step 2<br />
function do_submit2() {<br />
&nbsp;</div>
<p>Download the latest reCaptcha library from <a rel="nofollow" target="_blank" href="http://code.google.com/p/recaptcha/downloads/list?q=label:phplib-Latest" target="_blank">here</a> and upload to your &#8220;root&#8221;. </p>
<p><img class="alignnone size-medium wp-image-506" title="pliggsantitheft" src="http://www.pliggs.com/wp-content/uploads/2008/12/pliggsantitheft.png" alt="" width="10" height="10" /></p>
<p>You will also need reCaptcha keys for your site, you will need to register and add your site to reCaptcha.  Register <a rel="nofollow" target="_blank" href="http://recaptcha.net/" target="_blank">here</a>.</p>
<p>    In the above snippets, retype all instances of the single apostraphe ( &#8216; ) as they are not appearing properly here. In the download they will appear properly however.</p>
<p>If the user/bot fails to enter the correct reCaptcha code, they will be forwarded to your error page controlled by submit_errors.tpl, I have not come with a custom error message for this, maybe someone can submit one.</p>
<p>This should eliminate almost all spam submissions.</p>
<p></em></p>
<h4>Related Search:</h4><ul><li>block spam pligg</li><li>block spam on pligg</li><li>recaptcha - on submit</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pliggs.com/recaptcha-for-submit-pligg-1-0/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Stopping Comment Spam</title>
		<link>http://www.pliggs.com/stopping-comment-spam/</link>
		<comments>http://www.pliggs.com/stopping-comment-spam/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 01:04:52 +0000</pubDate>
		<dc:creator>Geoserv</dc:creator>
				<category><![CDATA[Modules]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[Pligg]]></category>
		<category><![CDATA[SPAM]]></category>

		<guid isPermaLink="false">http://www.pliggs.com/?p=861</guid>
		<description><![CDATA[One of the biggest issues with the Pligg CMS is SPAM.  As a Pligg powered website owner you are constantly dealing with submissions of links that are blatent spam, spam bots and spam in the comments.  To be fair, Pligg is not the only CMS that faces this issue, but it does have very little [...]]]></description>
			<content:encoded><![CDATA[<p>One of the biggest issues with the Pligg CMS is SPAM.  As a Pligg powered website owner you are constantly dealing with submissions of links that are blatent spam, spam bots and spam in the comments.  To be fair, Pligg is not the only CMS that faces this issue, but it does have very little deterents in place to prevent it.</p>
<p><span id="more-861"></span></p>
<p><img class="alignleft size-full wp-image-862" title="Pligg comment spam" src="http://www.pliggs.com/wp-content/uploads/2009/04/976655_let_us_talk.jpg" alt="Pligg comment spam" width="300" height="200" style="padding:5px;" />I have told you how to prevent auto-submitters or spam bots from submitting to your site by using <a title="reCaptcha for Pligg" href="http://www.pliggs.com/recaptcha-for-submit-pligg-v995/">reCaptcha</a> on step 1 of the submission process.  If you successfully install it, you will see a drastic decrease in spam as bots will no longer be able to submit, which is the source of the most of the spam submissions.</p>
<p>The only other source of spam is via the comments.  This again has been a problem with Pligg since day one and if you search their forums the developers have yet to post a solution to users being able to post links in their comments.</p>
<p>I will show you 2 methods for dealing with comments that contain spam links.</p>
<p><em><strong>Making comment links nofollow</strong></em></p>
<p><strong>Open libs/utils.php, find:</strong></p>
<div class="dean_ch" style="white-space: wrap;">function text_to_html($string) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; return preg_replace(&#8216;/([hf][tps]{2,4}:\/\/[^ \t\n\r]+[^ .\t,\n\r\(\)&quot;\'])/&#8217;, &#8216;&lt;a href=&quot;$1&quot;&gt;$1&lt;/a&gt;&#8217;, $string);<br />
}</div>
<p><strong>change it to:</strong></p>
<div class="dean_ch" style="white-space: wrap;">function text_to_html($string) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; return preg_replace(&#8216;/([hf][tps]{2,4}:\/\/[^ \t\n\r]+[^ .\t,\n\r\(\)&quot;\'])/&#8217;, &#8216;&lt;a rel=&quot;nofollow&quot; href=&quot;$1&quot;&gt;$1&lt;/a&gt;&#8217;, $string);<br />
}</div>
<p><strong><em>Make links un-clickable:</em></strong></p>
<p><strong>Open libs/utils.php, find:</strong></p>
<div class="dean_ch" style="white-space: wrap;">function text_to_html($string) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; return preg_replace(&#8216;/([hf][tps]{2,4}:\/\/[^ \t\n\r]+[^ .\t,\n\r\(\)&quot;\'])/&#8217;, &#8216;&lt;a href=&quot;$1&quot;&gt;$1&lt;/a&gt;&#8217;, $string);<br />
}</div>
<p><strong>change it to:</strong></p>
<div class="dean_ch" style="white-space: wrap;">function text_to_html($string) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; return preg_replace(&#8216;/([hf][tps]{2,4}:\/\/[^ \t\n\r]+[^ .\t,\n\r\(\)&quot;\'])/&#8217;, &#8216;$1&#8242;, $string);<br />
}</div>
<p>That&#8217;s it.  Which method, is up to you.</p>
<p><strong>Which one will you be using?</strong></p>
<p><strong><br />
</strong></p>
<p>We provide guaranteed <a rel="nofollow" target="_blank" href="http://www.goseeq.com/car-insurance.html">car insurance</a> with online <a rel="nofollow" target="_blank" href="http://www.testkingworld.com/640-816.asp">640-816</a> training and <a rel="nofollow" target="_blank" href="http://www.actualtests.com/exam-MB2-631.htm">MB2-631</a>. You can also get best quality <a rel="nofollow" target="_blank" href="http://www.certkiller.com/A-plus-certification-training.htm">a+ certification</a> dumps along with <a rel="nofollow" target="_blank" href="http://www.realpass4sures.com/MCPD-practice.html">mcpd</a> for your guaranteed success.</p>
<h4>Related Search:</h4><ul><li>stop pilgg spam</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pliggs.com/stopping-comment-spam/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>FREE Pligg modules</title>
		<link>http://www.pliggs.com/free-pligg-modules/</link>
		<comments>http://www.pliggs.com/free-pligg-modules/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 16:59:40 +0000</pubDate>
		<dc:creator>Geoserv</dc:creator>
				<category><![CDATA[Modules]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Pligg]]></category>
		<category><![CDATA[Quick Submit Module]]></category>
		<category><![CDATA[submit]]></category>

		<guid isPermaLink="false">http://www.pliggs.com/?p=843</guid>
		<description><![CDATA[A while back the developers setup a store where members could purchase modules and templates, this was to help the team with costs. While I have no issue with Pligg selling modules, I do have an issue with them selling modules that have no business being sold. Some of the modules are worth the price, [...]]]></description>
			<content:encoded><![CDATA[<p>A while back the developers setup a store where members could purchase modules and templates, this was to help the team with costs.  While I have no issue with Pligg selling modules, I do have an issue with them selling modules that have no business being sold.</p>
<p><span id="more-843"></span></p>
<p>Some of the modules are worth the price, and if you have a few bucks, are worth the investment.  But there are countless that are simply there to get newbies to part with their cash and nothing more.</p>
<p>I will talk about a couple here and will show you how to have the features they are selling for FREE.</p>
<p><strong>Module Name</strong>: <em>Latest User Welcome Bot</em></p>
<p><em><strong>Price: $9.99</strong></em></p>
<p>This little module, and it&#8217;s little, is a good addition to your Pligg install as it adds a little interactivity with your members especially new ones.  Is it worth $9.99, no.  Here&#8217;s how to do it for free.</p>
<p><strong>Open index.php, find:</strong></p>
<div class="dean_ch" style="white-space: wrap;">// sidebar<br />
$main_smarty = do_sidebar($main_smarty);</div>
<p>after, add:</p>
<div class="dean_ch" style="white-space: wrap;">
<p>// last person to register<br />
$sql = &quot;SELECT user_login FROM &quot; . table_users . &quot; ORDER BY user_id DESC LIMIT 1&quot;;<br />
$last_user = $db-&gt;get_var($sql);<br />
$main_smarty-&gt;assign(&#8216;last_user&#8217;, $last_user);</div>
<p><strong>Save.  Open index_center.tpl, find:</strong></p>
<div class="dean_ch" style="white-space: wrap;">Welcome to our latest member &lt;a href=&quot;{$URL_user, $last_user}&quot;&gt;{$last_user}&lt;/a&gt;</div>
<p>That&#8217;s it, you can style it to fit your needs.</p>
<p><strong>Module Name</strong>: <em>Top Members Sidebar Module</em></p>
<p><em><strong>Price: $8.97</strong></em></p>
<p>Here&#8217;s another could addition to any Pligg install, but again, it&#8217;s another one that you do not need to pay for.  Here&#8217;s how to accomplish this for free.</p>
<p><strong>Open sidebar.tpl and add the following where you want it to appear:</strong></p>
<div class="dean_ch" style="white-space: wrap;">
<p>&lt;div class=&quot;headline&quot;&gt;Top users&lt;/div&gt;<br />
&lt;ul&gt;<br />
{php}<br />
global $db;<br />
$sql=&quot;SELECT * from &quot; . table_users . &quot; order by user_karma desc limit 0,10&quot;;<br />
$result = @mysql_query ($sql);<br />
$rowCount = 0;<br />
while($row = mysql_fetch_array($result, MYSQL_ASSOC))<br />
{<br />
$uname=$row['user_login'];<br />
$ukarma=$row['user_karma'];<br />
if (($rowCount++)%2 == 0)<br />
echo &quot;&lt;li&gt;&lt;img src=&#8217;&quot;. get_avatar(&#8216;small&#8217;, &quot;&quot;, &quot;$uname&quot;,&quot;&quot;,&quot;&quot;).&quot;&#8217; class=&#8217;align-middle&#8217;/&gt; &lt;a href=&#8217;&quot; . getmyurl(&#8216;user2&#8242;, $uname, &#8216;profile&#8217;) . &quot;&#8217;&gt;$uname&lt;/a&gt; $ukarma&lt;/li&gt;&quot;;<br />
else<br />
echo &quot;&lt;li&gt;&lt;img src=&#8217;&quot;. get_avatar(&#8216;small&#8217;, &quot;&quot;, &quot;$uname&quot;,&quot;&quot;,&quot;&quot;).&quot;&#8217; class=&#8217;align-middle&#8217; alt=&#8217;Avatar&#8217; /&gt; &lt;a href=&#8217;&quot; . getmyurl(&#8216;user2&#8242;, $uname, &#8216;profile&#8217;) . &quot;&#8217;&gt;$uname&lt;/a&gt; $ukarma&lt;/li&gt;&quot;;<br />
}<br />
{/php}<br />
&lt;/ul&gt;</p>
<p>&nbsp;</p></div>
<p><strong>Module name:</strong> <em>Quick Submit Module:</em></p>
<p><strong>Price: $8.99</strong></p>
<p>This little module makes it easy for your members to submit by displaying a form that the user can put a URL in and a submit button, it then takes them to step 2 of the submission process.</p>
<p><strong>Open index_center.tpl, at the top add the following:</strong></p>
<div class="dean_ch" style="white-space: wrap;">
<p>{if $user_authenticated eq true}<br />
&lt;blockquote&gt;&lt;blockquote&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp;&lt;form action=&quot;{$URL_submit}?url=&quot; method=&quot;GET&quot; id=&quot;thisform&quot;&gt;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;input type=&quot;text&quot; name=&quot;url&quot; id=&quot;url&quot; value=&quot;Quick Submit URL&quot; size=&quot;55&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;input type=&quot;hidden&quot; name=&quot;phase&quot; value=1/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;input type=&quot;hidden&quot; name=&quot;randkey&quot; value=&quot;{$submit_rand}&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;input type=&quot;hidden&quot; name=&quot;id&quot; value=&quot;c_1&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;input type=&quot;submit&quot; value=&quot;{#PLIGG_Visual_Submit1_Continue#}&quot;<br />
class=&quot;submit-s&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp;&lt;/form&gt;<br />
&lt;/blockquote&gt; &nbsp; &lt;/blockquote&gt;<br />
{/if}</p>
<p>&nbsp;</p></div>
<p><strong>Module name:</strong> <em>Google Analytics for Pligg</em></p>
<p><strong>Price: $6.97</strong></p>
<p>This module is intended to add code for Google Analytics to every page of your Pligg install.  However, you do not need a module for this, you simply need to add the code to your footer.tpl file.</p>
<p><strong>Open footer.tpl, find:</strong></p>
<div class="dean_ch" style="white-space: wrap;">
<p>{* Please do not edit the code below. *}<br />
{checkActionsTpl location=&quot;tpl_footer&quot;}</p>
<p>&nbsp;</p></div>
<p><strong>above it, add:</strong></p>
<div class="dean_ch" style="white-space: wrap;">
<p>{literal}&lt;script type=&quot;text/javascript&quot;&gt;<br />
var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);<br />
document.write(unescape(&quot;%3Cscript src=&#8217;&quot; + gaJsHost + &quot;google-analytics.com/ga.js&#8217; type=&#8217;text/javascript&#8217;%3E%3C/script%3E&quot;));<br />
&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
try {<br />
var pageTracker = _gat._getTracker(&quot;UA-4370044-4&quot;);<br />
pageTracker._trackPageview();<br />
} catch(err) {}&lt;/script&gt;{/literal}</p>
<p>&nbsp;</p></div>
<p>Simply grab the javascript code from your Google Analytics panel and replace the one above.</p>
<p>There are others that I will post about later, but, before you spend money on a module, make sure you know what your getting and that it is actually owrth paying for.</p>
<p>Is there a module you are looking for?  Let us know below.</p>
<h4>Related Search:</h4><ul><li>free pligg modules</li><li>pligg free modules</li><li>Google Analytics for Pligg</li><li>free pligg</li><li>pligg use google analytics</li><li>pligg module</li><li>pligg google analytics</li><li>google analytics pligg</li><li>pligg 1 2 free modules</li><li>pligg modules free</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pliggs.com/free-pligg-modules/feed/</wfw:commentRss>
		<slash:comments>74</slash:comments>
		</item>
		<item>
		<title>reCaptcha for submit &#8211; Pligg v9.9.5</title>
		<link>http://www.pliggs.com/recaptcha-for-submit-pligg-v995/</link>
		<comments>http://www.pliggs.com/recaptcha-for-submit-pligg-v995/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 20:36:05 +0000</pubDate>
		<dc:creator>Geoserv</dc:creator>
				<category><![CDATA[Modules]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[Pligg]]></category>
		<category><![CDATA[submit]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.pliggs.com/?p=499</guid>
		<description><![CDATA[One of the most sought after modules for Pligg is adding reCaptcha for story submissions. Pligg member fhelik came up with the solution by adding reCaptcha on step 2, this however isn&#8217;t the ideal place for it to be, the reason being, most of your spam is being submitted by a bot.  Once the bot [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most sought after modules for Pligg is adding reCaptcha for story submissions.</p>
<p><span id="more-499"></span></p>
<p><img class="alignleft size-full wp-image-500" style="padding: 5px;" title="reCaptcha for Pligg" src="http://www.pliggs.com/wp-content/uploads/2008/12/logo2-nobottom.gif" alt="" width="187" height="125" />Pligg member <a rel="nofollow" target="_blank" href="http://indipop.net/" target="_blank">fhelik</a> came up with the solution by adding reCaptcha on step 2, this however isn&#8217;t the ideal place for it to be, the reason being, most of your spam is being submitted by a bot.  Once the bot registers an account, it then attempts to submit a submission, once it hits step 2, it will be blocked because of the reCaptcha, but what you are left with is an incomplete story submission that will show up in your &#8220;Upcoming&#8221; section.</p>
<p>Using fhelik, I simply modified it and added it to step 1, this way if it&#8217;s a bot doing the story submission, it won&#8217;t make it past submitting a URL, and it will prevent incomplete submissions from littering my &#8220;Upcoming&#8221; pages.</p>
<blockquote><p><strong>Backup each file before installing this module</strong></p></blockquote>
<p>I have this installed on Pligg v9.9.5, a demo can be seen at <a rel="nofollow" target="_blank" title="FAQ PAL" href="http://www.faqpal.com" target="_blank">FAQ PAL</a>.</p>
<p><strong><em>Step 1: open submit_step_1.tpl</em></strong></p>
<p>Find:</p>
<div class="dean_ch" style="white-space: wrap;">{if $Submit_Require_A_URL neq 1}{#PLIGG_Visual_Submit_Editorial#}{/if}</div>
<p>before, add:</p>
<div class="dean_ch" style="white-space: wrap;">{php}<br />
require_once(&#8216;recaptchalib.php&#8217;);<br />
$publickey = &quot;PUBLICKEY&quot;; // you got this from the signup page<br />
echo recaptcha_get_html($publickey);<br />
{/php}</div>
<p><em><strong>Step 2: open submit.php</strong></em></p>
<p>Find:</p>
<div class="dean_ch" style="white-space: wrap;">// submit step 1<br />
function do_submit1() {<br />
global $main_smarty, $db, $dblang, $current_user, $the_template;</div>
<p>after, add:</p>
<div class="dean_ch" style="white-space: wrap;">//captcha<br />
if(enable_captcha == &#8216;true&#8217;) {</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; require_once(&#8216;recaptchalib.php&#8217;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; // Get a key from http://recaptcha.net/api/getkey<br />
&nbsp; &nbsp; &nbsp; &nbsp; $publickey = &quot;ENTER YOURPUBLICKEY&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; $privatekey = &quot;ENTER YOURPRIVATE&quot;;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; # the response from reCAPTCHA<br />
&nbsp; &nbsp; &nbsp; &nbsp; $resp = null;<br />
&nbsp; &nbsp; &nbsp; &nbsp; # the error code from reCAPTCHA, if any<br />
&nbsp; &nbsp; &nbsp; &nbsp; $error = null;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; # was there a reCAPTCHA response?<br />
&nbsp; &nbsp; &nbsp; &nbsp; if ($_POST[&quot;recaptcha_response_field&quot;]) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $resp = recaptcha_check_answer ($privatekey,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_SERVER[&quot;REMOTE_ADDR&quot;],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_POST[&quot;recaptcha_challenge_field&quot;],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_POST[&quot;recaptcha_response_field&quot;]);</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($resp-&gt;is_valid) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo &quot;Succesfully verified that you are human.&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # set the error code so that we can display it<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $error = $resp-&gt;error;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; if (!$resp-&gt;is_valid) { // if incorrect captcha code was entered<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $main_smarty-&gt;assign(&#8216;register_error_text&#8217;, &quot;badcode&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $main_smarty-&gt;display($the_template . &#8216;/submit_errors.tpl&#8217;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; // fin capthca</div>
<p>Find:</p>
<div class="dean_ch" style="white-space: wrap;">}</p>
<p>// submit step 2<br />
function do_submit2() {</div>
<p>Replace, with:</p>
<div class="dean_ch" style="white-space: wrap;">}}</p>
<p>// submit step 2<br />
function do_submit2() {</div>
<p>Download the latest reCaptcha library from <a rel="nofollow" target="_blank" href="http://code.google.com/p/recaptcha/downloads/list?q=label:phplib-Latest" target="_blank">here</a> and upload to your &#8220;root&#8221;.  <img class="alignnone size-medium wp-image-506" title="pliggsantitheft" src="http://www.pliggs.com/wp-content/uploads/2008/12/pliggsantitheft.png" alt="" width="10" height="10" /></p>
<p>You will also need reCaptcha keys for your site, you will need to register and add your site to reCaptcha.  Register <a rel="nofollow" target="_blank" href="http://recaptcha.net/" target="_blank">here</a>.</p>
<blockquote><p>In the above snippets, retype all instances of the single apostraphe ( &#8216; ) as they are not appearing properly here. In the download they will appear properly however.</p></blockquote>
<p>If the user/bot fails to enter the correct reCaptcha code, they will be forwarded to your error page controlled by submit_errors.tpl, I have not come with a custom error message for this, maybe someone can submit one.</p>
<p>This should eliminate almost all spam submissions.</p>
Note: There is a file embedded within this post, please visit this post to download the file.
<p><strong>Error page:</strong></p>
<p>If the user enters the wrong reCaptcha code, heres a sample error page complete with error message and back button.</p>
<p>Download the file below and upload it to templates/yget .</p>
Note: There is a file embedded within this post, please visit this post to download the file.
<p><strong>Go to submit.php and change:</strong></p>
<div class="dean_ch" style="white-space: wrap;"> &nbsp; &nbsp; &nbsp; &nbsp;if (!$resp-&gt;is_valid) { // if incorrect captcha code was entered<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $main_smarty-&gt;assign(’register_error_text’, &quot;badcode&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $main_smarty-&gt;display($the_template . ‘/submit_errors.tpl’);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; // fin capthca</div>
<p><strong>to,</strong></p>
<div class="dean_ch" style="white-space: wrap;"> &nbsp; &nbsp; &nbsp; &nbsp;if (!$resp-&gt;is_valid) { // if incorrect captcha code was entered<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $main_smarty-&gt;assign(&#8216;submit_error&#8217;, &#8216;badcode&#8217;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $main_smarty-&gt;assign(&#8216;tpl_center&#8217;, $the_template . &#8216;/captcha&#8217;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $main_smarty-&gt;display($the_template . &#8216;/pligg.tpl&#8217;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; // fin capthca</div>
<p>Again, you can test this on <a rel="nofollow" target="_blank" href="http://www.faqpal.com" target="_blank">FAQPAL</a></p>
<h4>Related Search:</h4><ul><li>pligg modules nulled</li><li>continue inurl:/submit html</li><li>closed inurl:/submit php</li><li>inurl:/register php attempting</li><li>inurl:/register php else</li><li>transmission inurl:/submit html</li><li>exists inurl:/submit html</li><li>challenges inurl:/submit html</li><li>romantic inurl:/submit html</li><li>add recaptcha on pligg</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pliggs.com/recaptcha-for-submit-pligg-v995/feed/</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
		<item>
		<title>Blocking .ru URLs</title>
		<link>http://www.pliggs.com/blocking-ru-urls/</link>
		<comments>http://www.pliggs.com/blocking-ru-urls/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 21:47:02 +0000</pubDate>
		<dc:creator>Geoserv</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[Modules]]></category>

		<guid isPermaLink="false">http://www.pliggs.com/?p=425</guid>
		<description><![CDATA[If your site is anything like mine, you will be flooded with spam posts from .ru (Russian) websites. Heres how to use .htaccess to block these submissions by disallowing them to register. Open your .htaccess add the contents of the attached download to it. This will block registrations from Russia. If you found this post [...]]]></description>
			<content:encoded><![CDATA[<p>If your site is anything like mine, you will be flooded with spam posts from .ru (Russian) websites. Heres how to use .htaccess to block these submissions by disallowing them to register. <strong></strong></p>
<p><strong>Open your .htaccess</strong></p>
<p style="text-align: center;"><a href="http://www.pliggs.com/wp-content/uploads/2008/11/1055089_no_spam.jpg"><img class="size-medium wp-image-426 aligncenter" title="1055089_no_spam" src="http://www.pliggs.com/wp-content/uploads/2008/11/1055089_no_spam.jpg" alt="" width="300" height="295" /></a></p>
<p>add the contents of the attached download to it.</p>
Note: There is a file embedded within this post, please visit this post to download the file.
<p>This will block registrations from Russia.</p>
<p>If you found this post helpful, please consider thumbing up on <a rel="nofollow" target="_blank" href="http://www.stumbleupon.com">StumbleUpon</a>.</p>
<h4>Related Search:</h4><ul><li>block ru</li><li>block ru pligg</li><li>how to blockink all ru</li><li>how to block russian ru</li><li>htaccess block ru</li><li>htaccess to ban ru</li><li>xisicongatarc ru block</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.pliggs.com/blocking-ru-urls/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>

