Captcha in Tuleap - plugins

I am very new to Tuleap. I need to integrate captcha. I did and got the success but the problem is, the captcha is displaying on register form only.
I need to display on the register page as well as the login page.
Please help me

This is actually not possible to do that on Tuleap, captcha is only for registration

Related

Mailchimp Embedded Sign up form not displaying Captcha

I am using mailchimp embedded sign up form. It displays Email Account, First Name and Last Name, but captcha is not showing. I enabled captcha from Settings->List Name and Defaults.
What other steps do I need? Captcha is not showing in Preview Mode Option.
Please help, getting lot of fake emails. Double opt in is also enabled.
Had the same problem. Make sure its V2(checkbox) NOT V3. Documentation here: https://mailchimp.com/help/about-recaptcha-for-signup-forms/
The Sign-up forms have invisible not checkbox re-captcha.
Source: https://mailchimp.com/help/about-recaptcha-for-signup-forms/#Enable_reCAPTCHA
You can find the summary in the below image.
I came here looking for an answer. Followed the instructions to enable the reCaptcha. After reloading website could not see it. After finally trying to submit the form it took me to a mailchimp external page with the reCaptcha showing. Makes sense when you think about doing some kind of server side check for a reCaptcha with minimal installation fuss.
I've run into the same problem, and this is what I have found.
I set the url to https://s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js, not sure if that helped, but it's one less spot for failure
You might need to announce somewhere to allow for pop-up's to be allowed on the page when the captcha shows. It seems that when that option is enabled that it opens up a new windows for the confirmation.

Integrate GWT with Spring Security with custom login page

I have followed
http://krams915.blogspot.hk/2011/01/spring-and-gwt-security-via-spring.html
to build a GWT app with spring security with custom login page.
However, How can I handle the followings things?
1) If the user is not logged in, direct the user to login page, but not showing the HTTP ERROR page.
2) after the user is logged in, direct the user to front page or previous page but not /j_spring_security_check
I have tried replacing /j_spring_security_check in the loginpage.jsp to the /XXXEntry.html?gwt.codesvr=127.0.0.1:9997. I can successfully redirect back to the GWT app, but it stills said that Authentication required.
Could anybody help? Better with code examples. Thanks a lot!!
I have found another solutions for GWT and Spring Security integration:
http://www.site.lalitbhatt.com/spring-security-gwt-integration
this article make a login.html rather that jsp. Very easy to understand and implement.
Everthing works fine now.
Updated: The link moved to http://tech.lalitbhatt.net/2014/08/spring-security-gwt-integration.html

I am having issue with my contact form for my Magento website

I have set a contact form in Magento and it is not working please help. The URL is http://v4vintage.com/magento/contact-us-email.
Regards,
Jay
You can use this page to learn how to POST form data, and this one to actually grab the form data and send an email.
I checked your page, it has many forms. Kindly check the score-code and use a single form.

Grab html code by entering username and password on a webpage on iPhone

Im trying to grab a HTML source code from a webpage which needs user to login with username and password, the code are all done in the back end, i can not use "?username=xx&pw=xxx" to get the html code.
There are many apps that does this kind of things, such as getting usage from a phone provider or view bills.
I would like to know how do people implement this. do they create some kind of robot that input those username into the textfield and click submit? and is there a way to download the html straight from the server, rather than create our own server to retrieve it.
How do i set the username textfield on the webpage and click log in button to retrieve the next page?
Thanks in advance
i can not use "?username=xx&pw=xxx" to get the html code.
Why not? If a user can submit their login creds over HTTP, then you can do the same. You'll probably need to use POST instead of GET to submit those fields, and there may be other fields on the form that you'll need to match. But the web server doesn't (in principle) have any idea what sort of client is submitting login data to it.
Now, they might screen out older, non-supported browsers, in which case your USER_AGENT field will need to be fudged to some legal value. There may be some session timeout token in the form that you need to get first and provide in your submitted data. Who knows what else they need back from you to validate the login. But if a web browser can do it, you can do it from the HTTP client methods in your app.

Zend Framework: How to POST data to some external page (e.g. external payment gate) without using form?

I would like to have a user redirected to an external credit card gate. Of course I have to POST some user info to that gate, but I don't know how exactly can I do this.
I know that I could do this by generating a html form with hidden or read-only fields and have a user click "Submit" button. But this solution is not perfect, because all the form data could be easily changed using e.g. Firebug. I think you cannot do this using $this->_redirect(...). But maybe there is some other solution?
Many thanks for any tips or suggestions.
I would like to have a user redirected to an external credit card gate. Of course I have to POST some user info to that gate, but I don't know how exactly can I do this.
Using a form is the only method available. The RFC states that the user should explicitly agree to sending a POST (i.e. click on a submit button).
I know that I could do this by generating a html form with hidden or read-only fields and have a user click "Submit" button. But this solution is not perfect, because all the form data could be easily changed using e.g.
It is no more secure that using a redirect as the header data can be modified without too much of a problem. There are even Firefox plugins to do it.
use cURL to post data
http://framework.zend.com/manual/en/zend.http.client.adapters.html