PriMoThemes — now s2Member® (official notice)

This is now a very OLD forum system. It's in READ-ONLY mode.
All community interaction now occurs at WP Sharks™. See: new forums @ WP Sharks™

Captch not working - Security Error

s2Member Plugin. A Membership plugin for WordPress®.

Captch not working - Security Error

Postby b4thestreet » November 16th, 2011, 2:25 pm

The reCaptch on my registration is not working. Initially, it was simply giving a warning that the code was being entered incorrectly but now I am getting the following warning where the reCaptcha should be: 'An internal error occurred: 4B1DED7FA5570.A897313.431'

I have removed the captcha="clean" from the Pro Forms code but set up a temporary page (Trial Temp) so you can view the error: http://b4thestreet.com/main/trial-temp/

Any help is greatly appreciated. Thanks in advance.
User avatar
b4thestreet
Registered User
Registered User
 
Posts: 20
Joined: March 14, 2011

Re: Captch not working - Security Error

Postby Bruce C » November 16th, 2011, 2:29 pm

Try changing the value to red, and make sure that you haven't declared clean more than once.

If neither of those things work, can you try to redo the Pro Forms again?
~Bruce ( a.k.a. Ace )

If you're interested in a Professional Installation, or Custom Coding Job, you can send your request here.

Proud Supporter of:
The Zeitgeist Movement
and Occupy Everything
User avatar
Bruce C
Experienced User
Experienced User
 
Posts: 337
Joined: July 20, 2011

Re: Captch not working - Security Error

Postby b4thestreet » November 16th, 2011, 5:27 pm

Thanks for the quick reply. What do you mean by; "Try changing the value to red.."
User avatar
b4thestreet
Registered User
Registered User
 
Posts: 20
Joined: March 14, 2011

Re: Captch not working - Security Error

Postby Eduan » November 16th, 2011, 5:29 pm

I think he means that instead of:
Code: Select all
captcha="clean"

you put it like this:
Code: Select all
captcha="red"
Now officially accepting Professional s2Member installations along with Bruce C (a.k.a. Ace).

If you're interested in a Professional s2Member Installation, or a Custom Coding Job, you can send your request here.
User avatar
Eduan
Experienced User
Experienced User
 
Posts: 1154
Joined: August 27, 2011
Location: Taxco de Alarcón, Guerrero, México.

Re: Captch not working - Security Error

Postby b4thestreet » November 16th, 2011, 5:35 pm

I tested with captcha="red" and am still getting the same security warning: 'An internal error occurred: 4B1DED7FA5570.A897313.431'. Thanks for the suggestion though.
User avatar
b4thestreet
Registered User
Registered User
 
Posts: 20
Joined: March 14, 2011

Re: Captch not working - Security Error

Postby raygulick » November 17th, 2011, 10:00 am

I'm having this exact same problem. Solution offered above does not work for me either. No problems with this form yesterday, and have not altered the form since then (except to try the solution above).

'An internal error occurred: 4B1EF74EEE138.A88CD08.73EC'
User avatar
raygulick
Registered User
Registered User
 
Posts: 18
Joined: November 9, 2011

Re: Captch not working - Security Error

Postby raygulick » November 17th, 2011, 10:05 am

This script is from Google. I'm having other Google issues this morning with Gmail unable to deliver email to email addresses I know are good. Maybe this issue is a Google problem?
User avatar
raygulick
Registered User
Registered User
 
Posts: 18
Joined: November 9, 2011

Re: Captch not working - Security Error

Postby raygulick » November 17th, 2011, 10:28 am

If I delete captcha="clean" from the shortcode, captcha is eliminated, and the form works: OK while we're in beta testing. Hopefully, this really is a rare Google glitch, and it will work again soon.
User avatar
raygulick
Registered User
Registered User
 
Posts: 18
Joined: November 9, 2011

Re: Captch not working - Security Error

Postby craigjb12 » November 17th, 2011, 11:33 am

I'm getting this one today too:

An internal error occurred: 4B1F0C622FDE0.A0CEF10.625
User avatar
craigjb12
Registered User
Registered User
 
Posts: 29
Joined: July 22, 2011

Re: Captch not working - Security Error

Postby Jason Caldwell » November 17th, 2011, 11:47 am

Thanks for the heads up on this thread.
~ Investigating this now.
~ Jason Caldwell / Lead Developer
& Zeitgeist Movie Advocate: http://www.zeitgeistmovie.com/

Is the s2Member plugin working for you? Please rate s2Member at WordPress.org.
You'll need a WordPress.org account ( comes in handy ). Then rate s2Member here Image
.
User avatar
Jason Caldwell
Lead Developer
Lead Developer
 
Posts: 4045
Joined: May 3, 2010
Location: Georgia / USA

Re: Captch not working - Security Error

Postby raygulick » November 17th, 2011, 11:53 am

Thanks for jumping on this, Jason.
User avatar
raygulick
Registered User
Registered User
 
Posts: 18
Joined: November 9, 2011

Re: Captch not working - Security Error

Postby Jason Caldwell » November 17th, 2011, 12:45 pm

This error comes from the reCAPTCHA service. I've just done some research on this error. It appears to be a common issue among reCAPTCHA users. I've seen several reports about this in their support forums here: https://groups.google.com/forum/#!searc ... al$20error

After digging on this a bit, it looks like reCAPTCHA has suffered some data loss, which is what has caused this issue for s2Member Pro clients. The global reCAPTCHA public/private keys that the s2Member Pro application is distributed with, no longer exists, for whatever reason. Resulting in the error code.

In the short term, you can resolve this by acquiring your own public/private keys for reCAPTCHA ( it's free ). Please follow the instructions below. In the next release of s2Member Pro, we'll update the default global public/private keys and also make this a configurable option to avoid any further downtime associated with this in the future.

Please create this directory and file:
/wp-content/mu-plugins/s2-recaptchya-keys.php
( these are MUST USE plugins, see: http://codex.wordpress.org/Must_Use_Plugins )

Please acquire your own public/private keys with the link provided in the code below. Again, this will be addressed in a more formal way in the next release of s2Member Pro. This hack is just a temporary fix.
Code: Select all
<?php
add_action 
("ws_plugin__s2member_after_loaded", "my_s2_recaptcha_keys"); function my_s2_recaptcha_keys ()
    {
        /* Get your own public/private keys, please go here:
            <https://www.google.com/recaptcha/admin/create>. */
        $GLOBALS["WS_PLUGIN__"]["s2member"]["c"]["recaptcha"]["public_key"] = "xxxxxxxxxxxxx";
        $GLOBALS["WS_PLUGIN__"]["s2member"]["c"]["recaptcha"]["private_key"] = "xxxxxxxxxx";
    }
?>
s2-recaptchya-keys.zip
(419 Bytes) Downloaded 131 times
~ Jason Caldwell / Lead Developer
& Zeitgeist Movie Advocate: http://www.zeitgeistmovie.com/

Is the s2Member plugin working for you? Please rate s2Member at WordPress.org.
You'll need a WordPress.org account ( comes in handy ). Then rate s2Member here Image
.
User avatar
Jason Caldwell
Lead Developer
Lead Developer
 
Posts: 4045
Joined: May 3, 2010
Location: Georgia / USA

Re: Captch not working - Security Error

Postby b4thestreet » November 17th, 2011, 1:15 pm

Thanks for resolving this issue so quickly!! Greatly appreciated.

I followed your instructions exactly and it worked 100%!! You guys rock. Thanks again :)
User avatar
b4thestreet
Registered User
Registered User
 
Posts: 20
Joined: March 14, 2011

Re: Captch not working - Security Error

Postby raygulick » November 17th, 2011, 1:26 pm

This fix is creating another problem associated with a different plugin:

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/nmtc/public_html/wp-content/mu-plugins/s2-recaptchya-keys.php:1) in /home/nmtc/public_html/wp-content/plugins/facebook-feed-grabber/facebook.php on line 127
User avatar
raygulick
Registered User
Registered User
 
Posts: 18
Joined: November 9, 2011

Re: Captch not working - Security Error

Postby raygulick » November 17th, 2011, 1:30 pm

Here's the code in the facebook feed grabber that is in conflict, in case that gives you more clues about how to avoid the conflict:

// The Facebook PHP SDK uses sessions. So start sessions now before anything is output.
if ( !session_id() )
session_start();
User avatar
raygulick
Registered User
Registered User
 
Posts: 18
Joined: November 9, 2011

Re: Captch not working - Security Error

Postby Jason Caldwell » November 17th, 2011, 1:34 pm

Try downloading the PHP file attachment instead. Header errors are usually attributed to extra white-space before or after the <?php ?> tags. This may have happened when you copied/pasted from the forum. The original file is attached though, please give that a shot.
~ Jason Caldwell / Lead Developer
& Zeitgeist Movie Advocate: http://www.zeitgeistmovie.com/

Is the s2Member plugin working for you? Please rate s2Member at WordPress.org.
You'll need a WordPress.org account ( comes in handy ). Then rate s2Member here Image
.
User avatar
Jason Caldwell
Lead Developer
Lead Developer
 
Posts: 4045
Joined: May 3, 2010
Location: Georgia / USA

Re: Captch not working - Security Error

Postby raygulick » November 17th, 2011, 1:38 pm

Yup. A space before the opening <?php tag. Removing it fixed the issue. Thanks a bunch!
User avatar
raygulick
Registered User
Registered User
 
Posts: 18
Joined: November 9, 2011

Re: Captch not working - Security Error

Postby loewenberg » November 17th, 2011, 3:38 pm

Thanks, people. I applied the fix and I'm back in business too. Thought you'd want to know!
--
mike loewenberg
mesh business solutions, inc.
new city, ny
http://meshbiz.com
websites, graphics design, custom programming
User avatar
loewenberg
Registered User
Registered User
 
Posts: 25
Joined: November 9, 2011
Location: ny

Re: Captch not working - Security Error

Postby Cristián Lávaque » November 18th, 2011, 12:57 am

Thanks for the great feedback, guys. Very appreciated, it really helps. :)
Cristián Lávaque http://s2member.net
Is s2Member working for you? Please rate it Image at WordPress.org. Thanks! :)
User avatar
Cristián Lávaque
Developer
Developer
 
Posts: 6836
Joined: December 22, 2010

Re: Captch not working - Security Error

Postby raygulick » November 18th, 2011, 9:33 am

You guys impressed me with your quick support. Yet another reason to recommend s2Member to other developers.
User avatar
raygulick
Registered User
Registered User
 
Posts: 18
Joined: November 9, 2011

Re: Captch not working - Security Error

Postby virtuallight » November 23rd, 2011, 7:33 am

It is probably me - but I have carried out the instructions - captcha is working again but the code when entered is never accepted, preventing all registration.
What have I missed?
User avatar
virtuallight
Registered User
Registered User
 
Posts: 10
Joined: November 11, 2011

Re: Captch not working - Security Error

Postby Jason Caldwell » November 23rd, 2011, 11:17 am

virtuallight wrote:It is probably me - but I have carried out the instructions - captcha is working again but the code when entered is never accepted, preventing all registration.
What have I missed?
I would double-check your private key in this case. It sounds like your public key is correct, but your private is not, or has an extra space in it; something like that.
~ Jason Caldwell / Lead Developer
& Zeitgeist Movie Advocate: http://www.zeitgeistmovie.com/

Is the s2Member plugin working for you? Please rate s2Member at WordPress.org.
You'll need a WordPress.org account ( comes in handy ). Then rate s2Member here Image
.
User avatar
Jason Caldwell
Lead Developer
Lead Developer
 
Posts: 4045
Joined: May 3, 2010
Location: Georgia / USA

Re: Captch not working - Security Error

Postby virtuallight » November 24th, 2011, 8:05 am

Great - thank you Jason - when I pasted the privet key in, it missed off the last letter!
User avatar
virtuallight
Registered User
Registered User
 
Posts: 10
Joined: November 11, 2011

Re: Captch not working - Security Error

Postby lmdean22 » December 4th, 2011, 5:08 pm

I'm still having some issues mainly b/c I am not sure how to make a new directory... I tried opening Dreamweaver, connecting to my FTP and adding the folders, but its giving me an error message. Is there a plugin I can download instead that will do this for me?
User avatar
lmdean22
Registered User
Registered User
 
Posts: 6
Joined: February 12, 2011

Re: Captch not working - Security Error

Postby Podge » December 4th, 2011, 5:31 pm

Hi Guys

I've tried the fix mentioned above and I'm afraid I still have the internal error message. I followed the instructions and even used the file you supply, the plugin is recognised in wordpress as a must have but other than that, nothing! It's pretty bad now as our site hasn't been able to take any registrations for the past week.

Is there any word on when the update will be coming along that fixes this properly?
User avatar
Podge
Registered User
Registered User
 
Posts: 2
Joined: August 29, 2011

Next

Return to s2Member Plugin

Who is online

Users browsing this forum: Exabot [Bot], Yahoo [Bot] and 4 guests

cron