[xwiki-users] CAPTCHA for comments and registration
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 advance. -Marlon
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 plugin enabled but I'm kinda stuck on what to do next. Thanks in advance.
Look in the dodo skin files. Particularly: captcha.vm comments.vm edit.vm wysiwyg.vm Paul -- End dual-measurement, let's finish going metric! http://gometric.us/ http://www.metric.org/
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) <form ...> ##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> #if ($context.user=="XWiki.XWikiGuest") <img style="border: solid 1px #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> <br /> #end <input type="hidden" name="demande" value="1" /> <input type="submit" value="Send"> </form> #end Hope this helps Guillaume On 06/11/2007, Paul Armstrong <[email protected]> wrote:
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 plugin enabled but I'm kinda stuck on what to do next. Thanks in advance.
Look in the dodo skin files. Particularly: captcha.vm comments.vm edit.vm wysiwyg.vm
Paul
-- End dual-measurement, let's finish going metric! http://gometric.us/ http://www.metric.org/
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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? Thanks On 11/6/07, Guillaume Lerouge <[email protected]> wrote:
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)
<form ...>
##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> #if ($context.user=="XWiki.XWikiGuest") <img style="border: solid 1px #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> <br /> #end <input type="hidden" name="demande" value="1" /> <input type="submit" value="Send"> </form> #end
Hope this helps
Guillaume
On 06/11/2007, Paul Armstrong <[email protected]> wrote:
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 plugin enabled but I'm kinda stuck on what to do next. Thanks in advance.
Look in the dodo skin files. Particularly: captcha.vm comments.vm edit.vm wysiwyg.vm
Paul
-- End dual-measurement, let's finish going metric! http://gometric.us/ http://www.metric.org/
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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 achieve this though. As for a documentation, I guess you already checked XWiki.org + the mailing list archives? Guillaume On 07/11/2007, marlon hendred <[email protected]> wrote:
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? Thanks
On 11/6/07, Guillaume Lerouge <[email protected]> wrote:
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)
<form ...>
##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> #if ($context.user=="XWiki.XWikiGuest") <img style="border: solid 1px #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> <br /> #end <input type="hidden" name="demande" value="1" /> <input type="submit" value="Send"> </form> #end
Hope this helps
Guillaume
On 06/11/2007, Paul Armstrong <[email protected]> wrote:
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 plugin enabled but I'm kinda stuck on what to do next. Thanks in advance.
Look in the dodo skin files. Particularly: captcha.vm comments.vm edit.vm wysiwyg.vm
Paul
-- End dual-measurement, let's finish going metric! http://gometric.us/ http://www.metric.org/
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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 11:39 PM, Guillaume Lerouge <[email protected]> wrote:
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 achieve this though.
As for a documentation, I guess you already checked XWiki.org + the mailing list archives?
Guillaume
On 07/11/2007, marlon hendred <[email protected]> wrote:
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? Thanks
On 11/6/07, Guillaume Lerouge <[email protected]> wrote:
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)
<form ...>
##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> #if ($context.user=="XWiki.XWikiGuest") <img style="border: solid 1px #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> <br /> #end <input type="hidden" name="demande" value="1" /> <input type="submit" value="Send"> </form> #end
Hope this helps
Guillaume
On 06/11/2007, Paul Armstrong <[email protected]> wrote:
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 plugin enabled but I'm kinda stuck on what to do next. Thanks in advance.
Look in the dodo skin files. Particularly: captcha.vm comments.vm edit.vm wysiwyg.vm
Paul
-- End dual-measurement, let's finish going metric! http://gometric.us/ http://www.metric.org/
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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 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 11:39 PM, Guillaume Lerouge <[email protected]> wrote:
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 achieve this though.
As for a documentation, I guess you already checked XWiki.org + the mailing list archives?
Guillaume
On 07/11/2007, marlon hendred <[email protected]> wrote:
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? Thanks
On 11/6/07, Guillaume Lerouge <[email protected]> wrote:
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)
<form ...>
##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> #if ($context.user=="XWiki.XWikiGuest") <img style="border: solid 1px #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> <br /> #end <input type="hidden" name="demande" value="1" /> <input type="submit" value="Send"> </form> #end
Hope this helps
Guillaume
On 06/11/2007, Paul Armstrong <[email protected]> wrote:
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 plugin enabled but I'm kinda stuck on what to do next. Thanks in advance.
Look in the dodo skin files. Particularly: captcha.vm comments.vm edit.vm wysiwyg.vm
Paul
-- End dual-measurement, let's finish going metric! http://gometric.us/ http://www.metric.org/
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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/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 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 11:39 PM, Guillaume Lerouge <[email protected]> wrote:
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 achieve this though.
As for a documentation, I guess you already checked XWiki.org + the mailing list archives?
Guillaume
On 07/11/2007, marlon hendred < [email protected]> wrote:
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? Thanks
On 11/6/07, Guillaume Lerouge <[email protected]> wrote:
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)
<form ...>
##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> #if ($context.user==" XWiki.XWikiGuest") <img style="border: solid 1px #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> <br /> #end <input type="hidden" name="demande" value="1" /> <input type="submit" value="Send"> </form> #end
Hope this helps
Guillaume
On 06/11/2007, Paul Armstrong < [email protected]> wrote:
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 > plugin enabled but I'm kinda stuck on what to do next. Thanks in advance.
Look in the dodo skin files. Particularly: captcha.vm comments.vm edit.vm wysiwyg.vm
Paul
-- End dual-measurement, let's finish going metric! http://gometric.us/ http://www.metric.org/
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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 found related to captcha was this: #if ($captchaPlugin) $captchaPlugin.displayCaptcha("edit","wiki_captcha") #end I added that to the registerinline.vm file and got nothing! In WEB-INF/xwiki.cfg, the captcha plugin is set to 1. I would really appreciated it if a developer would surface and tell me how this works, what im doing wrong, or point me to some WORKING examples. Thanks. -Marlon On Nov 7, 2007 10:12 AM, marlon hendred <[email protected]> wrote:
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/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 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 11:39 PM, Guillaume Lerouge <[email protected]>
wrote:
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 achieve this though.
As for a documentation, I guess you already checked XWiki.org + the mailing list archives?
Guillaume
On 07/11/2007, marlon hendred < [email protected]> wrote:
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? Thanks
On 11/6/07, Guillaume Lerouge < [email protected]> wrote:
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)
<form ...>
##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> #if ($context.user==" XWiki.XWikiGuest") <img style="border: solid 1px #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> <br /> #end <input type="hidden" name="demande" value="1" /> <input type="submit" value="Send"> </form> #end
Hope this helps
Guillaume
On 06/11/2007, Paul Armstrong < [email protected]> wrote: > > 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 > > plugin enabled but I'm kinda stuck on what to do next. Thanks in advance. > > Look in the dodo skin files. > Particularly: > captcha.vm > comments.vm > edit.vm > wysiwyg.vm > > Paul > > -- > End dual-measurement, let's finish going metric! > http://gometric.us/ > http://www.metric.org/ > > _______________________________________________ > users mailing list > [email protected] > http://lists.xwiki.org/mailman/listinfo/users >
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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 commentsinline.vm, am I right ? Then, when I copy the following code into commentsinline.vm but nothing happens #if ($captchaPlugin) $captchaPlugin.displayCaptcha("comment","wiki_captcha") #end Any idea 2007/11/29, marlon hendred <[email protected]>:
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 found related to captcha was this:
#if ($captchaPlugin) $captchaPlugin.displayCaptcha("edit","wiki_captcha") #end
I added that to the registerinline.vm file and got nothing! In WEB-INF/xwiki.cfg, the captcha plugin is set to 1.
I would really appreciated it if a developer would surface and tell me how this works, what im doing wrong, or point me to some WORKING examples. Thanks.
-Marlon
On Nov 7, 2007 10:12 AM, marlon hendred <[email protected]> wrote:
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/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 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 11:39 PM, Guillaume Lerouge <[email protected]> wrote:
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 achieve this though.
As for a documentation, I guess you already checked XWiki.org + the mailing list archives?
Guillaume
On 07/11/2007, marlon hendred < [email protected]> wrote:
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? Thanks
On 11/6/07, Guillaume Lerouge < [email protected]> wrote: > 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) > > > <form ...> > > > ##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> > #if ($context.user==" XWiki.XWikiGuest") <img style="border: solid 1px #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> <br /> #end > <input type="hidden" name="demande" value="1" /> <input type="submit" value="Send"> </form> #end > > > Hope this helps > > > Guillaume > > > > On 06/11/2007, Paul Armstrong < [email protected]> wrote: > > > > 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 > > > plugin enabled but I'm kinda stuck on what to do next. Thanks in advance. > > > > Look in the dodo skin files. > > Particularly: > > captcha.vm > > comments.vm > > edit.vm > > wysiwyg.vm > > > > Paul > > > > -- > > End dual-measurement, let's finish going metric! > > http://gometric.us/ > > http://www.metric.org/ > > > > _______________________________________________ > > users mailing list > > [email protected] > > http://lists.xwiki.org/mailman/listinfo/users > > > > > > -- > http://wikibc.blogspot.com/ > _______________________________________________ > users mailing list > [email protected] > http://lists.xwiki.org/mailman/listinfo/users > >
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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 xwiki.cfg . Dodo uses comments.vmbut it looks like the most appropriate place in Albatros is commentsinline.vm, am I right ? Then, when I copy the following code into commentsinline.vm but nothing happens
#if ($captchaPlugin) $captchaPlugin.displayCaptcha("comment","wiki_captcha") #end
Any idea
2007/11/29, marlon hendred <[email protected]>:
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 found related to captcha was this:
#if ($captchaPlugin) $captchaPlugin.displayCaptcha("edit","wiki_captcha") #end
I added that to the registerinline.vm file and got nothing! In WEB-INF/xwiki.cfg, the captcha plugin is set to 1.
I would really appreciated it if a developer would surface and tell me how this works, what im doing wrong, or point me to some WORKING examples. Thanks.
-Marlon
On Nov 7, 2007 10:12 AM, marlon hendred <[email protected]> wrote:
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/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 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 11:39 PM, Guillaume Lerouge <[email protected] > wrote:
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 achieve this though.
As for a documentation, I guess you already checked XWiki.org + the mailing list archives?
Guillaume
On 07/11/2007, marlon hendred < [email protected]> wrote: > 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? Thanks > > > > > > On 11/6/07, Guillaume Lerouge < [email protected]> wrote: > > 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) > > > > > > <form ...> > > > > > > ##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> > > #if ($context.user==" XWiki.XWikiGuest") <img style="border: solid 1px #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> <br /> #end > > <input type="hidden" name="demande" value="1" /> <input type="submit" value="Send"> </form> #end > > > > > > Hope this helps > > > > > > Guillaume > > > > > > > > On 06/11/2007, Paul Armstrong < [email protected]> wrote: > > > > > > 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 > > > > plugin enabled but I'm kinda stuck on what to do next. Thanks in advance. > > > > > > Look in the dodo skin files. > > > Particularly: > > > captcha.vm > > > comments.vm > > > edit.vm > > > wysiwyg.vm > > > > > > Paul > > > > > > -- > > > End dual-measurement, let's finish going metric! > > > http://gometric.us/ > > > http://www.metric.org/ > > > > > > _______________________________________________ > > > users mailing list > > > [email protected] > > > http://lists.xwiki.org/mailman/listinfo/users > > > > > > > > > > > -- > > http://wikibc.blogspot.com/ > > _______________________________________________ > > users mailing list > > [email protected] > > http://lists.xwiki.org/mailman/listinfo/users > > > > > > > _______________________________________________ > users mailing list > [email protected] > http://lists.xwiki.org/mailman/listinfo/users > >
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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 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 commentsinline.vm, am I right ? Then, when I copy the following code into commentsinline.vm but nothing happens
#if ($captchaPlugin) $captchaPlugin.displayCaptcha("comment","wiki_captcha") #end
Any idea
2007/11/29, marlon hendred <[email protected]>:
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 found related to captcha was this:
#if ($captchaPlugin) $captchaPlugin.displayCaptcha("edit","wiki_captcha") #end
I added that to the registerinline.vm file and got nothing! In WEB-INF/xwiki.cfg, the captcha plugin is set to 1.
I would really appreciated it if a developer would surface and tell me how this works, what im doing wrong, or point me to some WORKING examples. Thanks.
-Marlon
On Nov 7, 2007 10:12 AM, marlon hendred <[email protected]> wrote:
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/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 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 11:39 PM, Guillaume Lerouge <[email protected] > wrote: > 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 > achieve this though. > > As for a documentation, I guess you already checked XWiki.org+ the mailing > list archives? > > Guillaume > > > > On 07/11/2007, marlon hendred < [email protected]> wrote: > > 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? Thanks > > > > > > > > > > > > On 11/6/07, Guillaume Lerouge < [email protected]> wrote: > > > 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) > > > > > > > > > <form ...> > > > > > > > > > ##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br />
> > > #if ($context.user==" XWiki.XWikiGuest") <img style="border: solid 1px > #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha > below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> <br > /> #end > > > <input type="hidden" name="demande" value="1" /> <input type="submit" > value="Send"> </form> #end > > > > > > > > > Hope this helps > > > > > > > > > Guillaume > > > > > > > > > > > > On 06/11/2007, Paul Armstrong < [email protected]> wrote: > > > > > > > > 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 > > > > > plugin enabled but I'm kinda stuck on what to do next. Thanks in > advance. > > > > > > > > Look in the dodo skin files. > > > > Particularly: > > > > captcha.vm > > > > comments.vm > > > > edit.vm > > > > wysiwyg.vm > > > > > > > > Paul > > > > > > > > -- > > > > End dual-measurement, let's finish going metric! > > > > http://gometric.us/ > > > > http://www.metric.org/ > > > > > > > > _______________________________________________ > > > > users mailing list > > > > [email protected] > > > > http://lists.xwiki.org/mailman/listinfo/users > > > > > > > > > > > > > > > > -- > > > http://wikibc.blogspot.com/ > > > _______________________________________________ > > > users mailing list > > > [email protected] > > > http://lists.xwiki.org/mailman/listinfo/users > > > > > > > > > > > > _______________________________________________ > > users mailing list > > [email protected] > > http://lists.xwiki.org/mailman/listinfo/users > > > > > > > > -- > http://wikibc.blogspot.com/ > _______________________________________________ > users mailing list > [email protected] > http://lists.xwiki.org/mailman/listinfo/users > > _______________________________________________
users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
-- http://wikibc.blogspot.com/ _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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] <mailto:[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 xwiki.cfg . Dodo uses comments.vm but it looks like the most appropriate place in Albatros is commentsinline.vm, am I right ? Then, when I copy the following code into commentsinline.vm but nothing happens
#if ($captchaPlugin) $captchaPlugin.displayCaptcha("comment","wiki_captcha") #end
Any idea
2007/11/29, marlon hendred <[email protected] <mailto:[email protected]>>:
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 found related to captcha was this:
#if ($captchaPlugin) $captchaPlugin.displayCaptcha("edit","wiki_captcha") #end
I added that to the registerinline.vm file and got nothing! In WEB-INF/xwiki.cfg, the captcha plugin is set to 1.
I would really appreciated it if a developer would surface and tell me how this works, what im doing wrong, or point me to some WORKING examples. Thanks.
-Marlon
On Nov 7, 2007 10:12 AM, marlon hendred <[email protected] <mailto:[email protected]>> wrote:
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] <mailto:[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/11/2007, marlon hendred < [email protected] <mailto:[email protected]>> wrote: > > > > > > > > Yes I have scowerd xwiki.org <http://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 11:39 PM, Guillaume Lerouge <[email protected] <mailto:[email protected]>> wrote: > > > 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 > > > achieve this though. > > > > > > As for a documentation, I guess you already checked XWiki.org + the > mailing > > > list archives? > > > > > > Guillaume > > > > > > > > > > > > On 07/11/2007, marlon hendred < [email protected] <mailto:[email protected]>> wrote: > > > > 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? Thanks > > > > > > > > > > > > > > > > > > > > > > > > On 11/6/07, Guillaume Lerouge < [email protected] <mailto:[email protected]>> wrote: > > > > > 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) > > > > > > > > > > > > > > > <form ...> > > > > > > > > > > > > > > > ##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> > > > > > #if ($context.user==" XWiki.XWikiGuest") <img style="border: solid > 1px > > > #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha > > > below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> > <br > > > /> #end > > > > > <input type="hidden" name="demande" value="1" /> <input > type="submit" > > > value="Send"> </form> #end > > > > > > > > > > > > > > > Hope this helps > > > > > > > > > > > > > > > Guillaume > > > > > > > > > > > > > > > > > > > > On 06/11/2007, Paul Armstrong < [email protected] <mailto:[email protected]>> wrote: > > > > > > > > > > > > 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 > > > > > > > plugin enabled but I'm kinda stuck on what to do next. Thanks in > > > advance. > > > > > > > > > > > > Look in the dodo skin files. > > > > > > Particularly: > > > > > > captcha.vm > > > > > > comments.vm > > > > > > edit.vm > > > > > > wysiwyg.vm > > > > > > > > > > > > Paul
Thank you soooooooooooooooo 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] <mailto:[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 xwiki.cfg . Dodo uses comments.vm but it looks like the most appropriate place in Albatros is commentsinline.vm, am I right ? Then, when I copy the following code into commentsinline.vm but nothing happens
#if ($captchaPlugin) $captchaPlugin.displayCaptcha("comment","wiki_captcha") #end
Any idea
2007/11/29, marlon hendred <[email protected] <mailto:[email protected]>>:
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 found related to captcha was this:
#if ($captchaPlugin) $captchaPlugin.displayCaptcha("edit","wiki_captcha") #end
I added that to the registerinline.vm file and got nothing! In WEB-INF/xwiki.cfg, the captcha plugin is set to 1.
I would really appreciated it if a developer would surface and tell me how this works, what im doing wrong, or point me to some WORKING examples. Thanks.
-Marlon
On Nov 7, 2007 10:12 AM, marlon hendred <[email protected] <mailto:[email protected]>> wrote:
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] <mailto:[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/11/2007, marlon hendred < [email protected] <mailto:[email protected]>> wrote: > > > > > > > > Yes I have scowerd xwiki.org <http://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 11:39 PM, Guillaume Lerouge <[email protected] <mailto:[email protected]>> wrote: > > > 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 > > > achieve this though. > > > > > > As for a documentation, I guess you already checked XWiki.org + the > mailing > > > list archives? > > > > > > Guillaume > > > > > > > > > > > > On 07/11/2007, marlon hendred < [email protected] <mailto:[email protected]>> wrote: > > > > 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? Thanks > > > > > > > > > > > > > > > > > > > > > > > > On 11/6/07, Guillaume Lerouge < [email protected] <mailto:[email protected]>> wrote: > > > > > 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) > > > > > > > > > > > > > > > <form ...> > > > > > > > > > > > > > > > ##$xwiki.jcaptcha.displayCaptcha("CaptchaName", "") <br /> > > > > > #if ($context.user==" XWiki.XWikiGuest") <img style="border: solid > 1px > > > #000000" src="$doc.getURL("jcaptcha")"> <br /> Please type the captcha > > > below:* <br /> <input size="40" type="text" name="jcaptcha_response" /> > <br > > > /> #end > > > > > <input type="hidden" name="demande" value="1" /> <input > type="submit" > > > value="Send"> </form> #end > > > > > > > > > > > > > > > Hope this helps > > > > > > > > > > > > > > > Guillaume > > > > > > > > > > > > > > > > > > > > On 06/11/2007, Paul Armstrong < [email protected] <mailto:[email protected]>> wrote: > > > > > > > > > > > > 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 > > > > > > > plugin enabled but I'm kinda stuck on what to do next. Thanks in > > > advance. > > > > > > > > > > > > Look in the dodo skin files. > > > > > > Particularly: > > > > > > captcha.vm > > > > > > comments.vm > > > > > > edit.vm > > > > > > wysiwyg.vm > > > > > > > > > > > > Paul
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
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: <form action="verifyCaptcha" > ... ## declare the plugin #set($captchaPlugin = $xwiki.jcaptcha) #if ($captchaPlugin) ##call the displayCaptcha pass the class name as "register_captcha" which should map to the css classname to render the image ##pass the name as edit ##and under http://<host>:<port>/xwiki/bin/edit/XWiki/XWikiPreferences?editor=object& ##under XWiki.XWikiPreferences[0]: XWiki.DefaultSkin select the values for Anonymous: and Registered: as image or text $captchaPlugin.displayCaptcha("edit","register_captcha") #end ... </form> 2. For Validation in the vm file that is called from "verifyCaptcha" action add the following: ## declare the plugin #set($captchaPlugin = $xwiki.jcaptcha) #if ($captchaPlugin) ##call the verifyCaptcha #if($captchaPlugin.verifyCaptcha("edit")) ##register the user #$xwiki.createUser(false) #else ##display some error #error("$msg.get('core.register.registerFailed', [$reg])") #end #end *note: by default in register use the RegisterAction is called which by default does not verify captcha. However same is done in other actions like PreviewAction,CommentAddAction and SaveAction. Again all this may not be easy for users of xwiki as to add Captcha to registration page progmaing knowledge is required. Thanks Sachin ----- http://www.assembla.com/wiki/show/sachin_mittal about me: -- View this message in context: http://www.nabble.com/CAPTCHA-for-comments-and-registration-tp13598294p15417... Sent from the XWiki- Users mailing list archive at Nabble.com.
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 it in the same vm file, and if not which one?). Sachin says "For Validation in the vm file that is called from "verifyCaptcha" action add the following:" - but I can't work out which vm file to put it in. Sachin Mittal wrote:
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: <form action="verifyCaptcha" > ... ## declare the plugin #set($captchaPlugin = $xwiki.jcaptcha) #if ($captchaPlugin) ##call the displayCaptcha pass the class name as "register_captcha" which should map to the css classname to render the image ##pass the name as edit ##and under http://<host>:<port>/xwiki/bin/edit/XWiki/XWikiPreferences?editor=object& ##under XWiki.XWikiPreferences[0]: XWiki.DefaultSkin select the values for Anonymous: and Registered: as image or text $captchaPlugin.displayCaptcha("edit","register_captcha") #end
... </form>
2. For Validation in the vm file that is called from "verifyCaptcha" action add the following: ## declare the plugin #set($captchaPlugin = $xwiki.jcaptcha) #if ($captchaPlugin) ##call the verifyCaptcha #if($captchaPlugin.verifyCaptcha("edit")) ##register the user #$xwiki.createUser(false) #else ##display some error #error("$msg.get('core.register.registerFailed', [$reg])") #end #end
*note: by default in register use the RegisterAction is called which by default does not verify captcha. However same is done in other actions like PreviewAction,CommentAddAction and SaveAction.
Again all this may not be easy for users of xwiki as to add Captcha to registration page progmaing knowledge is required.
Thanks Sachin
-- View this message in context: http://n2.nabble.com/CAPTCHA-for-comments-and-registration-tp507976p3212461.... Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello everybody. I've set up Xwiki 1.9.21179 on Ubuntu 8.04, configured it to use Russian localisation (language: ru, default language: ru). But signs on many buttons are not shown. For example, the "rollback" button in history disappeared. When I switch back to English all signs appear again. What log files do I need to examine to figure out the problem? Thanks in advance. Dmitry
participants (8)
-
Antonio Goncalves -
Guillaume Lerouge -
marlon hendred -
maxelcat -
Paul Armstrong -
Sachin Mittal -
Sergiu Dumitriu -
Николаев Дмитрий