Current time: 02-09-2012, 02:12 AM Hello There, Guest! (LoginRegister)

Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to get rid of captcha
07-16-2010, 01:43 PM (This post was last modified: 10-27-2010 03:04 PM by Nick.)
Post: #1
How to get rid of captcha
Open up ajax.php in the /includes folder and look for the code

Code:
//Basic captcha check... thanks http://frikk.tk!
public function humancheck() {
    global $main;
    if($main->getvar['human'] != $_SESSION["pass"]) {
        $_SESSION['check']['human'] = true;
        echo 0;            
    }        
    else {
        $_SESSION['check']['human'] = true;
        echo 1;            
    }
}

Change the echo 0; to echo 1; like so

Code:
//Basic captcha check... thanks http://frikk.tk!
public function humancheck() {
    global $main;
    if($main->getvar['human'] != $_SESSION["pass"]) {
        $_SESSION['check']['human'] = false;
        echo 1;            
    }        
    else {
        $_SESSION['check']['human'] = true;
        echo 1;            
    }
    }

Then open up orderform.tpl in the /includes/tpl/ and look for

Code:
<tr>
    <td><img src="<URL>includes/captcha_image.php"></td>
    <td><input type="text" name="human" id="human" onchange="check('human', this.value)" /></td>
    <td align="left"><a title="Answer the question to prove you are not a bot." class="tooltip"><img src="<URL>themes/icons/information.png" /></a></td>
    <td id="humancheck" align="left">&nbsp;</td>
</tr>

And erase that part completely. This doesn't get rid of captcha but just always passes captcha while at the same time hiding it.
Find all posts by this user
Quote this message in a reply
07-17-2010, 05:07 PM (This post was last modified: 07-17-2010 05:08 PM by Kevin.)
Post: #2
RE: How to get rid of captcha
Thank you for posting this. Wink Also, if you didn't want to delete it you could aways hide it with CSS via: style="display: none;"

Kevin Mark - TheHostingTool Lead Developer
Visit this user's website Find all posts by this user
Quote this message in a reply
01-16-2011, 11:25 PM
Post: #3
RE: How to get rid of captcha
it still not done.
still showing the human thing. tht's a big problem for my forum.
Find all posts by this user
Quote this message in a reply
01-17-2011, 12:24 AM
Post: #4
RE: How to get rid of captcha
(01-16-2011 11:25 PM)infotronix Wrote:  it still not done.
still showing the human thing. tht's a big problem for my forum.

I remember having this problem. Dont know where the Human Verification thing is though
Find all posts by this user
Quote this message in a reply
01-17-2011, 01:46 PM
Post: #5
RE: How to get rid of captcha
Some body help me please.
i need it to start working.
Please make relese it with working captcha or no captcha option. thank you.
Find all posts by this user
Quote this message in a reply
06-19-2011, 12:51 PM
Post: #6
RE: How to get rid of captcha
it does nto work for me -.- i just keep getting human verification incorecct or somthing liike that on step 5
Find all posts by this user
Quote this message in a reply
06-22-2011, 08:42 PM
Post: #7
RE: How to get rid of captcha
The ability to remove the captcha will be present in v1.2.5. I might end up pushing it into v1.2.4 if I can.

Kevin Mark - TheHostingTool Lead Developer
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)