Jump to content

How to disable captha only on Domain Checker/Bulk domain register page?


DemoTiger

Recommended Posts

  • 1 year later...
You can't. You either need to disable CAPTCHA completely, or keep it on.

 

Or, submit a feature request and hope many others think it's a good idea to have it disabled as well.

 

Thats not true, you should be able to edit templates/YOURTEMPLATE/domainchecker.tpl and remove the captcha code.

 

     {if $capatacha}
           {if $capatacha eq "recaptcha"}
               <p>{$LANG.captchaverify}</p>
               <p>{$recapatchahtml}</p>
           {else}
               <p><img src="includes/verifyimage.php" align="middle" /> <input type="text" name="code" class="small" maxlength="5" /></p>
           {/if}
       {/if}

 

 

EDIT: I take that back, you'll need to add some code to get a valid "code" field autopopulated. Its possible, but will take some hacking to get working.

Edited by laszlof
Link to comment
Share on other sites

  • 5 weeks later...
There's got to be an option to disable the captcha for domain searches. Any help on this would be fantastic!

 

Ok,

 

Here's what is working for me:

 

1 Comment out or remove the following from you domainchecker.tpl

 

   {if $capatacha}
       <div class="captchainput">
           <p>{$LANG.captchaverify}</p>
           {if $capatacha eq "recaptcha"}
           <p>{$recapatchahtml}</p>
           {else}
           <p><img src="includes/verifyimage.php" align="middle" /> <input type="text" name="code" class="small" maxlength="5" /></p>
           {/if}
       </div>
       {/if}

 

2 Add the following line directly after the above:

<input type="hidden" name="direct" value="true">

 

So far this is appears to allow simple domain search without the annoying captcha.

BuT, this doesn't seem to work on the bulk domain checker/transfer option.

 

Suggestions?

Link to comment
Share on other sites

Just remove {if $capatacha} {/if} ?

 

 

{if $capatacha}

<div class="captchainput">

<p>{$LANG.captchaverify}</p>

{if $capatacha eq "recaptcha"}

<p>{$recapatchahtml}</p>

{else}

<p><img src="includes/verifyimage.php" align="middle" /> <input type="text" name="code" class="small" maxlength="5" /></p>

{/if}

</div>

{/if}

 

?

Link to comment
Share on other sites

  • 2 months later...

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated