How To Disable Captcha - Please Help

by 5 replies
7


I have been pulling my hair out trying to figure out how to disable the Captcha Security on my website...

I am using php

here is a screenshot




I would really love some help on this .. If you would like to see the index page or the form code please let me know and I can send it over ..


Thank you so much for your time
Matthew
#programming #captcha #disable
  • Hi Matthew.

    Can you PM me the form code?
  • Hi getsometraffic,

    the code would be nice...

    Anyways, just look for the captcher in your code and delete or outcomment it.

    In PHP a one-line comment is: // and a multiline-comment is: /* */

    Maybe searching for the keyword "capture" or something like that in the code and if there is a capture and a textbox with the name "security code" you're good to go...

    Please let me know if you need any further assistance!

    Best regards,
    PHR
  • Right click on captcha & click inspect element. Get the line number in HTML & open the index.php & go to that line. You have to search few lines up or down there. As PHR said you have to comment those lines "In PHP a one-line comment is: // and a multiline-comment is: /* */"

    Word of caution. By commenting you might break something else. (Knows as cascading effect).
    If you can share index.php then I might be able to to get it done for you.
  • Banned
    [DELETED]
  • Look at the page that the value from the form is being passed on to.
    You might need to comment out any validation there.

    Now test the form without entering the captcha value. If it works, you can remove the captcha from the form itself.

    PS : Make sure you backup all source code before you make any changes. Should something go wrong, you can easily restore the old version.



  • Check the security code text-field in the form code and delete it.
    Make sure that you completely delete the opening and closing tags.


    .

Next Topics on Trending Feed