Jump to content

Broken captcha in signup page


gmacar

Recommended Posts

2 hours ago, gmacar said:

The captcha is broken and should be fixed. Thank you.

I agree with your statement, but this issue seems to happening with different browsers.  From this other post, they tried a different browser.  If you could verify that the java scri_pt issue is also the problem, then maybe that can narrow it down.

http://forum.spamcop.net/topic/29780-captcha-problem-on-registering/

Link to comment
Share on other sites

7 hours ago, gnarlymarley said:

I agree with your statement, but this issue seems to happening with different browsers.  From this other post, they tried a different browser.  If you could verify that the java scri_pt issue is also the problem, then maybe that can narrow it down.

http://forum.spamcop.net/topic/29780-captcha-problem-on-registering/

It happens with any browser (Windows 10).

I solved by fixing the java scri_pt code and re-executing it with the debugger. However, I don't think the average user would ever do that.

Link to comment
Share on other sites

  • 6 months later...

It looks like nobody is going to fix the bug, so this is what a new user should do to create a new account:

HTH

Link to comment
Share on other sites

  • 11 months later...

In my case the $.getJSON is not working (not sending any request). So i made a solution:

 

const xhr = new XMLHttpRequest();
xhr.open('GET', '/mcgi?action=captcha');
xhr.cache = false;
xhr.setRequestHeader("Pragma", "no-cache");
xhr.setRequestHeader("Cache-Control", "no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
xhr.setRequestHeader("Expires", 0);
xhr.setRequestHeader("Last-Modified", new Date(0).getTime());
xhr.setRequestHeader("If-Modified-Since", new Date(0).getTime());
xhr.responseType = 'json';
xhr.send();
xhr.onload = function() {
    const data = xhr.response;
    $("#captcha_img").attr("src", data.image);
    $("#token").attr("value",data.token);
    $("#getcaptcha-button").prop("disabled", false).removeAttr("style");
};

Open the console (F12), paste this code and hit enter. Captcha should appear.

Link to comment
Share on other sites

  • 10 months later...

I just have solved with Edge Browser (Chromium Based) in Windows 10

using the option "reloading the page in Microsoft Internet Explorer mode"

the captcha image appeared and the registering process finally worked.


This is the easy solution for non expert users.

Link to comment
Share on other sites

  • 2 weeks later...
On 6/24/2023 at 6:59 AM, Anna said:

I just have solved with Edge Browser (Chromium Based) in Windows 10

using the option "reloading the page in Microsoft Internet Explorer mode"

the captcha image appeared and the registering process finally worked.


This is the easy solution for non expert users.

Try this Gingko.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...