Hi there,
I have the domain checker integrated into my website in a few places with the use of the integration code. This function was working properly on v5.2.13 before my most recent update to v5.2.16 (was on holiday for a bit so it hadn't been updated yet).
Whenever trying to check a domain name, it simply redirects to the client login page - even if I am already logged in on a user test account.
Here is the domain
/http://orbhost.co.nz/domain-names/
Both domain checkers on this page (below the navigation, and just before the footer begins) have this fault.
I've looked at the domain checker integration code and it appears to no longer have the following string as it used to:
<input type="hidden" name="token" value="75bf75a2261b32da9da8fdb60b64700b89f71319" />
The only difference as far as I can see with my code was the token value string, but I have tried removing this to no avail.
Here is my current integration code (mixed in with CSS, this was working properly at the end of last year):
<div class="domainsearch">
<div class="row">
<div class="twelve columns text-center">
<form action="https://orbhost.co.nz/clients/domainchecker.php" method="post">
<input type="hidden" name="direct" value="true" />
<div class="two columns formpadding">
<p>Domain Lookup</p>
</div>
<div class="six columns formpadding">
<input type="text" placeholder="(eg. business name)" name="domain" size="20" />
</div>
<div class="two columns formpadding">
<select name="ext">
<option>.co.nz</option>
<option>.net.nz</option>
<option>.org.nz</option>
<option>.geek.nz</option>
<option>.com</option>
<option>.net</option>
<option>.org</option>
<option>.com.au</option>
<option>.net.au</option>
<option>.org.au</option>
<option>.co.uk</option>
<option>.org.uk</option>
</select>
</div>
<div class="two columns formpadding">
<input type="submit" value="Search" class="button" />
</div>
</form>
</div>
</div>
</div>
Any help would be appreciated - did a search and couldn't find anything about my problem within the last 6mo.
Cheers.