cagnese Posted April 22, 2008 Share Posted April 22, 2008 When looking for a domain name with Domain Availability Checker I have found de following: Simple Domain Search: - If I enter a name but don't check any tld and don't put captcha code, I have the error: Please enter the security code shown in the image - this is required to prevent automated submissions Nothing about the tld. - If I enter a name but don't check any tld and put captcha code, I have no error. But the search of course has not any result. Bulk Domain Search: - If I enter a name without his tld and don't put captcha code, I have no error. But the search of course has not any result. - If I enter a name without his tld and put captcha code, I have no error. But the search of course has not any result. - If I enter a name with his tld and don't put captcha code, I have no error. The search has a result. Thank you. 0 Quote Link to comment Share on other sites More sharing options...
WHMCS CEO Matt Posted April 22, 2008 WHMCS CEO Share Posted April 22, 2008 - If I enter a name but don't check any tld and don't put captcha code, I have the error: Please enter the security code shown in the image - this is required to prevent automated submissions. Nothing about the tld.- If I enter a name but don't check any tld and put captcha code, I have no error. But the search of course has not any result. - If I enter a name without his tld and don't put captcha code, I have no error. But the search of course has not any result. - If I enter a name without his tld and put captcha code, I have no error. But the search of course has not any result. - If I enter a name with his tld and don't put captcha code, I have no error. The search has a result. These seem logical? No domains entered = no search. No valid domains entered = no search. No TLDs selected = no search. Only thing which should be there is the error message on the bulk checker for when the captcha code isn't entered. Will check that. Matt 0 Quote Link to comment Share on other sites More sharing options...
isdoo Posted April 24, 2008 Share Posted April 24, 2008 Perhaps it would be useful to report back why the search did nothing - i.e. 'Please select at least one tld'. Clients are not always blessed with full brain cells 0 Quote Link to comment Share on other sites More sharing options...
SRobinson Posted April 24, 2008 Share Posted April 24, 2008 Perhaps it would be useful to report back why the search did nothing - i.e. 'Please select at least one tld'. Clients are not always blessed with full brain cells If any at all! 0 Quote Link to comment Share on other sites More sharing options...
itoverlord Posted May 6, 2008 Share Posted May 6, 2008 I logged in as a client and clicked Domain Availability Checker and there no tld availability in the drop down (.com, .net, etc) and therefore searching does not work. The drop downs look fine on the order/checkout pages. 0 Quote Link to comment Share on other sites More sharing options...
minadreapta Posted May 6, 2008 Share Posted May 6, 2008 i encountered this "problem" after the upgrade, but i didn't change the domainchecker.tpl 0 Quote Link to comment Share on other sites More sharing options...
tsiedsma Posted May 6, 2008 Share Posted May 6, 2008 i encountered this "problem" after the upgrade, but i didn't change the domainchecker.tpl For both checkers, can't you have it strip off .xxx so if someone mistakingly types mydomain.com it just strips the .com and processes the search? I know it is very easy to do in php and I would make the change myself but we are obviously locked out of the code. Also, my domainchecker and bullkchecker do not make suggestions. I thought they did before. If mydomain.com is taken, it should suggest any available domains based on the tlds I sell. 0 Quote Link to comment Share on other sites More sharing options...
itoverlord Posted May 7, 2008 Share Posted May 7, 2008 this is what my domainchecker.php looks like: http://www.usmhosting.com/billing/whmcs/domainchecker.php no option for simple or bulk, not able to search. the domainchecker.php looks like the same as in the upgrade.zip. I just looked over the upgrade instructions again and it did not say I needed to manually copy over templates. It does say "It is important to always remember to update your templates" Ok, so I checked and it looks like the templates that you listed have the same timestamps in the install distro that is in my live site. Now what? 0 Quote Link to comment Share on other sites More sharing options...
itoverlord Posted May 7, 2008 Share Posted May 7, 2008 ok, I just figured this out. I cleared out /whmcs/templates_c and now everything is working fine. 0 Quote Link to comment Share on other sites More sharing options...
texhead Posted May 22, 2008 Share Posted May 22, 2008 IT Overlord, What did you do as I am getting similar probs. http://texhead.com/images/dac.png Simple domain checker doesn't show TLDs Tony 0 Quote Link to comment Share on other sites More sharing options...
cdixon Posted June 17, 2008 Share Posted June 17, 2008 I just had to overwrite the domainchecker.tpl file in the template folder and it now works. I have another question now, though... How do I change the domain checker page so that some tlds are checked automatically? 0 Quote Link to comment Share on other sites More sharing options...
pearance Posted July 16, 2008 Share Posted July 16, 2008 you would have to override the for loop and spell them out manually as such... <form id="register-domain-form" action="domainchecker.php?systemtemplate=ss-domain" method="post"> <fieldset id="step1" class="STRUCTURE-incognito"> <legend>Step 1: Enter desired domain name</legend> <label class="hide" for="desired-domain">Domain Name</label> <input id="desired-domain" class="domain-input" type="text" name="domain" value="{$domain}" tabindex="1" /> </fieldset> <fieldset id="step2" class="STRUCTURE-incognito"> <legend>Step 2: Select desired extensions</legend> <div class="tld-group"> <label for="org"><input id="org" type="checkbox" name="tlds[]" value=".org" tabindex="4" /> .org</label> <label for="name"><input id="name" type="checkbox" name="tlds[]" value=".name" tabindex="7" /> .name</label> <label for="org.uk"><input id="org.uk" type="checkbox" name="tlds[]" value=".org.uk" tabindex="10" /> .org.uk</label> </div> <div class="tld-group"> <label for="net"><input id="net" type="checkbox" name="tlds[]" value=".net" tabindex="3" /> .net</label> <label for="biz"><input id="biz" type="checkbox" name="tlds[]" value=".biz" tabindex="6" /> .biz</label> <label for="co.uk"><input id="co.uk" type="checkbox" name="tlds[]" value=".co.uk" tabindex="9" /> .co.uk</label> </div> <div class="tld-group"> <label for="com"><input id="com" type="checkbox" name="tlds[]" value=".com" tabindex="2" /> .com</label> <label for="info"><input id="info" type="checkbox" name="tlds[]" value=".info" tabindex="5" /> .info</label> <label for="us"><input id="us" type="checkbox" name="tlds[]" value=".us" tabindex="8" /> .us</label> <div id="more-exts" class="light-links"><a href="domainchecker.php?search=bulk&systemtemplate=ss-domain">...all exts</a></div> </div> </fieldset> {if $capatacha} <div> {if $inccode}{$LANG.imagecheck}{/if} <img src="includes/verifyimage.php" alt=""> <input type="text" name="code" size="11" maxlength="5"> </div> {/if} <fieldset id="step3" class="STRUCTURE-incognito"> <legend>Step 3: Check their availability</legend> <input class="domain-go-btn.jpg" type="image" src="{$systemurl}/templates/{$template}/gfx/go-btn.jpg" alt="{$LANG.go}" width="43" height="30" tabindex="12" /> </fieldset> </form> making sure to add checked="checked" to the inputs you want checked by default Taine Pearance 0 Quote Link to comment Share on other sites More sharing options...
pearance Posted July 16, 2008 Share Posted July 16, 2008 Its relative wether or not this is a bug or not, I'll call it a modification request. After doing a search via the domainchecker.php it redirects to cart.php?a=add&domain=register if no domains are selected and the form is submited. My modification request is for the domainchecker.php to return back to itself if the user makes a mistake and clicks the submit button with no domains selected. Taine Pearance 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.