Go Back   Pligg Forum > Other > Retired Threads
 
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 12-29-2006, 03:48 PM
thinguy thinguy is offline
New Pligger
 
Join Date: Dec 2006
Posts: 26
Downloads: 19
Uploads: 0
Thanks: 0
Thanked 0 Times in 0 Posts
Anyone know how CAPTCHA could be added to the submit process?
Sponsored Links
  #12 (permalink)  
Old 02-22-2007, 05:25 PM
incode incode is offline
New Pligger
 
Join Date: Feb 2007
Posts: 1
Downloads: 1
Uploads: 0
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?
  #13 (permalink)  
Old 02-23-2007, 12:10 AM
dollars5's Avatar
dollars5 dollars5 is offline
Pligg is my love :)
 
Join Date: Dec 2006
Location: India
Posts: 2,163
Downloads: 29
Uploads: 1
Thanks: 292
Thanked 267 Times in 178 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.
  #14 (permalink)  
Old 02-23-2007, 12:26 AM
dollars5's Avatar
dollars5 dollars5 is offline
Pligg is my love :)
 
Join Date: Dec 2006
Location: India
Posts: 2,163
Downloads: 29
Uploads: 1
Thanks: 292
Thanked 267 Times in 178 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.
  #15 (permalink)  
Old 02-26-2007, 07:45 AM
dollars5's Avatar
dollars5 dollars5 is offline
Pligg is my love :)
 
Join Date: Dec 2006
Location: India
Posts: 2,163
Downloads: 29
Uploads: 1
Thanks: 292
Thanked 267 Times in 178 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.
  #16 (permalink)  
Old 02-26-2007, 11:55 AM
richrf richrf is offline
Casual Pligger
 
Join Date: Jan 2007
Posts: 49
Downloads: 4
Uploads: 0
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 10:01 PM.
  #17 (permalink)  
Old 02-26-2007, 07:49 PM
dollars5's Avatar
dollars5 dollars5 is offline
Pligg is my love :)
 
Join Date: Dec 2006
Location: India
Posts: 2,163
Downloads: 29
Uploads: 1
Thanks: 292
Thanked 267 Times in 178 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.
  #18 (permalink)  
Old 02-27-2007, 08:27 AM
dollars5's Avatar
dollars5 dollars5 is offline
Pligg is my love :)
 
Join Date: Dec 2006
Location: India
Posts: 2,163
Downloads: 29
Uploads: 1
Thanks: 292
Thanked 267 Times in 178 Posts
A better captcha implementation is provided at http://www.pligg.com/forum/showthread.php?p=20582
  #19 (permalink)  
Old 05-08-2007, 02:07 PM
meandean meandean is offline
New Pligger
 
Join Date: Mar 2007
Posts: 11
Downloads: 19
Uploads: 0
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.
  #20 (permalink)  
Old 05-15-2007, 05:15 PM
RockBottom RockBottom is offline
New Pligger
 
Join Date: Dec 2006
Posts: 17
Downloads: 5
Uploads: 0
Thanks: 0
Thanked 0 Times in 0 Posts
How do you turn this feature on? I'm starting to get spam
 



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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

LinkBacks Enabled by vBSEO 3.0.0