Go Back   Pligg CMS Forum > Other > Retired Threads

Reply
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 12-29-2006, 04:48 PM
New Pligger
 
Join Date: Dec 2006
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
Anyone know how CAPTCHA could be added to the submit process?
Reply With Quote
  #12 (permalink)  
Old 02-22-2007, 06:25 PM
New Pligger
 
Join Date: Feb 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
How secure is the current captcha used by Pligg? It looks pretty basic to me. Is there any easy way to change to a more complex image?
Reply With Quote
  #13 (permalink)  
Old 02-23-2007, 01:10 AM
dollars5's Avatar
Pligg is my love :)
 
Join Date: Dec 2006
Location: India
Posts: 2,153
Thanks: 290
Thanked 266 Times in 177 Posts
Smile

Quote:
Originally Posted by thinguy View Post
Anyone know how CAPTCHA could be added to the submit process?
We have added by playing around with the tpl files, but we do plan to release as a module sooner.

Currently we have capchas for Registration, Submitting stories. (We did not intend to have it for comments as it would make peoples life a mess in our sites, even the story submission we plan to remove if it gets negative feedback - but Digg does have this)

Regards,
Dollars5.
Reply With Quote
  #14 (permalink)  
Old 02-23-2007, 01:26 AM
dollars5's Avatar
Pligg is my love :)
 
Join Date: Dec 2006
Location: India
Posts: 2,153
Thanks: 290
Thanked 266 Times in 177 Posts
phpBB's captchas (a mod called Better Captcha is even better) and we plan to use it for Pligg, but no work in these areas will be done by us till Monday, if anyone wants to begin it before that - Good!

References:
Check our community site for a workin demo for Better Captchas (phpBB) - http://dollars5.com/munity/profile.p...er&agreed=true

phpBB better captcha code and link: http://www.phpbb.com/phpBB/viewtopic.php?t=473222

It uses alpha numeric code and uses font files for captcha displays, instead of all numbers only thing we currently have.
Reply With Quote
  #15 (permalink)  
Old 02-26-2007, 08:45 AM
dollars5's Avatar
Pligg is my love :)
 
Join Date: Dec 2006
Location: India
Posts: 2,153
Thanks: 290
Thanked 266 Times in 177 Posts
A temporary solution would be is to do the following modifications:
1] open submit_empty_submit_form.tpl before
Code:
<input type="text" name="url" id="url" value="http://" size=55 class="form-full" />
add the following lines
Code:
<input type="hidden" name="ts_random" value="{$submit_rand}" /><br />
		<img src="{$my_pligg_base}/ts_image.php?ts_random={$submit_rand}" class="ch2" />
		<p><input type="text" size="20" name="ts_code" /><br /><br />
2] Open submit.php, in function do_submit1(); before
Code:
if($url == "http://" || $url == ""){
		if(Submit_Require_A_URL == false){$linkres->valid = true;}else{$linkres->valid = false;}
	}
add
Code:
if (!ts_is_human()) {
		$main_smarty->assign('register_error_text', "badcode");
		$main_smarty->display($the_template . '/register_error.tpl');
		return;
	}
This uses the same register_error.tpl files - should need another type of display, edit or forward accordingly.
Reply With Quote
  #16 (permalink)  
Old 02-26-2007, 12:55 PM
Casual Pligger
 
Join Date: Jan 2007
Posts: 47
Thanks: 4
Thanked 7 Times in 5 Posts
Hi all,

The WordPress community, by-and-large, has decided that Captchas are not a viable approach to stopping bots and other spam engines. They have gone with the Akismet database approach, which seems to work very well on Links.com. Of course, with Akismet, there must be a way to moderate/delete/accept comments that Akismet has flagged. This might be a viable long term approach. Second to Akismet, a Bad Behavior approach also seems to work well, though I think Akismet is the best first line defense, since Bad Behavior is known to lock out legitimate users (it once locked me out of my own site).

I am right now working out the plans for using Pligg for Links.com, and spam control is one of my top items on my list, since Links does get some heavy spam volume.

Rich
__________________
LINKS to Rising Stars of Cyberspace

LINKS Stars - Vote for the Rising Stars of Cyberspace

Last edited by richrf; 02-26-2007 at 11:01 PM..
Reply With Quote
  #17 (permalink)  
Old 02-26-2007, 08:49 PM
dollars5's Avatar
Pligg is my love :)
 
Join Date: Dec 2006
Location: India
Posts: 2,153
Thanks: 290
Thanked 266 Times in 177 Posts
Those are good - but are in early stages and are not yet very complete protection, but many sites (including Digg) is dependent on Capchas.
Reply With Quote
  #18 (permalink)  
Old 02-27-2007, 09:27 AM
dollars5's Avatar
Pligg is my love :)
 
Join Date: Dec 2006
Location: India
Posts: 2,153
Thanks: 290
Thanked 266 Times in 177 Posts
A better captcha implementation is provided at http://www.pligg.com/forum/showthread.php?p=20582
Reply With Quote
  #19 (permalink)  
Old 05-08-2007, 03:07 PM
New Pligger
 
Join Date: Mar 2007
Posts: 11
Thanks: 1
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by richrf View Post
Hi all,

The WordPress community, by-and-large, has decided that Captchas are not a viable approach to stopping bots and other spam engines. They have gone with the Akismet database approach, which seems to work very well on Links.com. Of course, with Akismet, there must be a way to moderate/delete/accept comments that Akismet has flagged. This might be a viable long term approach. Second to Akismet, a Bad Behavior approach also seems to work well, though I think Akismet is the best first line defense, since Bad Behavior is known to lock out legitimate users (it once locked me out of my own site).

I am right now working out the plans for using Pligg for Links.com, and spam control is one of my top items on my list, since Links does get some heavy spam volume.

Rich
I agree - Akismet would be the way to go - especially as many Pligg implementations are by and for bloggers whom currently enjoy the benefits of Akismet.
Reply With Quote
  #20 (permalink)  
Old 05-15-2007, 06:15 PM
New Pligger
 
Join Date: Dec 2006
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
How do you turn this feature on? I'm starting to get spam
Reply With Quote
Reply

Thread Tools
Display Modes
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Similar Threads
Thread Thread Starter Forum Replies Last Post
Pligg captcha useless against spammers beatniak Suggestions 9 09-04-2007 11:31 AM


Search Engine Friendly URLs by vBSEO 3.2.0