Re: [xwiki-users] CAPTCHA for comments and registration

2009-07-06 Thread maxelcat
PLEASE HELP - REALLY STUCK I am trying to get a captcha field to verify I have (I think) fully carried out step 1 from Sachin's reply in the file registerinline.vm in my xwiki. The captcha field appears with an input box. I now want to add part 2 - but I can't work out where to put the code (is

Re: [xwiki-users] CAPTCHA for comments and registration

2008-02-11 Thread Sachin Mittal
Following is needed to get the Captcha working on say user registration page: 1. For display inside the form that submits the user registration information add the following: ... ## declare the plugin #set($captchaPlugin = $xwiki.jcaptcha) #if ($captchaPlugin) ##call the displayCaptcha pass the c

Re: [xwiki-users] CAPTCHA for comments and registration

2007-12-19 Thread marlon hendred
Thank you s much!!! On Dec 19, 2007 12:21 AM, Sergiu Dumitriu <[EMAIL PROTECTED]> wrote: > I will, but after the 1.2 release. > > Sergiu > > marlon hendred wrote: > > Is no one going to help? > > > > On Dec 3, 2007 3:16 AM, Antonio Goncalves <[EMAIL PROTECTED] > >

Re: [xwiki-users] CAPTCHA for comments and registration

2007-12-19 Thread Sergiu Dumitriu
I will, but after the 1.2 release. Sergiu marlon hendred wrote: > Is no one going to help? > > On Dec 3, 2007 3:16 AM, Antonio Goncalves <[EMAIL PROTECTED] > > wrote: > > Hi, > > I'm also trying to add captcha validation to the comments. I've > looke

Re: [xwiki-users] CAPTCHA for comments and registration

2007-12-18 Thread marlon hendred
Is no one going to help? On Dec 3, 2007 3:16 AM, Antonio Goncalves <[EMAIL PROTECTED]> wrote: > Hi, > > I'm also trying to add captcha validation to the comments. I've looked at > Dodo skin and I'm trying to do the same for Albatross but it doesn't work. > I've set xwiki.plugin.captcha=1 in the x

Re: [xwiki-users] CAPTCHA for comments and registration

2007-12-18 Thread marlon hendred
Antonio, Were you able to get this working? On Dec 18, 2007 4:17 PM, marlon hendred <[EMAIL PROTECTED]> wrote: > Is no one going to help? > > > On Dec 3, 2007 3:16 AM, Antonio Goncalves <[EMAIL PROTECTED]> > wrote: > > > Hi, > > > > I'm also trying to add captcha validation to the comments. I've

Re: [xwiki-users] CAPTCHA for comments and registration

2007-12-03 Thread Antonio Goncalves
Hi, I'm also trying to add captcha validation to the comments. I've looked at Dodo skin and I'm trying to do the same for Albatross but it doesn't work. I've set xwiki.plugin.captcha=1 in the xwiki.cfg. Dodo uses comments.vm but it looks like the most appropriate place in Albatros is commentsinlin

Re: [xwiki-users] CAPTCHA for comments and registration

2007-11-29 Thread marlon hendred
Hello All, Im trying to captcha validate my register page on my xwiki because i've had a problem with spam bots. I am using the albatross skin on xwiki v1.1.1.5166. I've asked this question before, and was told by someone to look at captcha.vm, edit.vm etc... in the dodo skins. The only thing I fou

Re: [xwiki-users] CAPTCHA for comments and registration

2007-11-07 Thread marlon hendred
Hi, So what documentation or resources did you read to get this working for you? On Nov 7, 2007 1:18 AM, Guillaume Lerouge <[EMAIL PROTECTED]> wrote: > Hi, > > I'm sorry but my competencies do not go so far as to explain why this does > not work... It worked for me :( > > Guillaume > > > > On 07/

Re: [xwiki-users] CAPTCHA for comments and registration

2007-11-07 Thread Guillaume Lerouge
Hi, I'm sorry but my competencies do not go so far as to explain why this does not work... It worked for me :( Guillaume On 07/11/2007, marlon hendred <[EMAIL PROTECTED]> wrote: > > Yes I have scowerd xwiki.org in search of some documentation on a lot > of things but have come up empty handed eve

Re: [xwiki-users] CAPTCHA for comments and registration

2007-11-07 Thread marlon hendred
Yes I have scowerd xwiki.org in search of some documentation on a lot of things but have come up empty handed every time. Although the code you gave does display the captcha with an input box, it seems that it accepts anything. How do i verify the user has input the correct value? On Nov 6, 2007 1

Re: [xwiki-users] CAPTCHA for comments and registration

2007-11-06 Thread Guillaume Lerouge
CaptchaName is indeed simply an arbitrary identifier you assign to your captcha, like an ID tag. That's useful when you are using the captcha twice on the same page or on your wiki. I think you can get jcaptcha to display a "please tell me how much do 3+8" instead of an image, not sure how to achie

Re: [xwiki-users] CAPTCHA for comments and registration

2007-11-06 Thread marlon hendred
Thanks for the response. So I got the captcha to show up but I still have some questions. what is "CaptchaName"? Just an arbitrary string? and what args does displayCaptcha() take? What other methods does jcaptcha have? Is there some sort of documentation somewhere that I could look at on this? Th

Re: [xwiki-users] CAPTCHA for comments and registration

2007-11-06 Thread Guillaume Lerouge
You can use this (with the plugin enabled): #if ($xwiki.jcaptcha.verifyCaptcha("CaptchaName")) The code for the action that needs to be captcha protected goes here (like for sending a form for instance) ##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") #if ($context.user=="XWiki.XWikiGuest")

Re: [xwiki-users] CAPTCHA for comments and registration

2007-11-05 Thread Paul Armstrong
On Mon, Nov 05, 2007 at 03:52:16PM -0800, marlon hendred wrote: > Hi, can someone help me with setting up CAPTCHA with the albatross skin for > registration and comments? Is there some example code I could look at? Or if > someone has this working could they give some guidence? I have the captcha >

[xwiki-users] CAPTCHA for comments and registration

2007-11-05 Thread marlon hendred
Hi, can someone help me with setting up CAPTCHA with the albatross skin for registration and comments? Is there some example code I could look at? Or if someone has this working could they give some guidence? I have the captcha plugin enabled but I'm kinda stuck on what to do next. Thanks in advanc