riccal Posted October 25, 2015 Share Posted October 25, 2015 all whmcs 6.1.1 invalid domain error not working. a.in or a.tel showing available. How to fix? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted October 26, 2015 Share Posted October 26, 2015 I believe WHMCS don't consider this a bug as you would be unable to register these domains... http://forum.whmcs.com/showthread.php?106118-How-to-tell-if-a-domain-is-unavailable&p=436754 http://forum.whmcs.com/showthread.php?107198-domain-name-min-length-not-checked&p=440371 0 Quote Link to comment Share on other sites More sharing options...
riccal Posted October 26, 2015 Author Share Posted October 26, 2015 Thank you. I fixed this problem in whmcs 6.1.1 six template domainchecker.js // validate domain input if (!domainInput) { showDomainWarning("#searchTermRequired"); return; } else if (invalidDomainCharacters.test(domainInput)) { showDomainWarning("#invalidChars"); return; } replace var domainInputlength = domainInput.length; // validate domain input if (!domainInput) { showDomainWarning("#searchTermRequired"); return; } else if (invalidDomainCharacters.test(domainInput)) { showDomainWarning("#invalidChars"); return; } else if (domainInputlength < 3) { showDomainWarning("#invalidDomainError"); return; } 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.