zeeshan Posted October 20, 2015 Share Posted October 20, 2015 Hi I am working on WHMCS and I am using AutoAuth according to their document http://docs.whmcs.com/AutoAuth And I have created a new page using this http://docs.whmcs.com/Creating_Pages and on that page i want to use AutoAuth <?php # Define WHMCS URL & AutoAuth Key $whmcsurl = "http://demo.whmcs.com/dologin.php"(mysite url different); $autoauthkey = "**************"; $timestamp = time(); # Get current timestamp $email = "demo@whmcs.com"(custom email address); # Clients Email Address to Login $goto = "clientarea.php?action=products"; $hash = sha1($email.$timestamp.$autoauthkey); # Generate Hash # Generate AutoAuth URL & Redirect $url = $whmcsurl."?email=$email×tamp=$timestamp&hash=$hash&goto=".urlencode($goto); header("Location: $url"); exit; ?> But there comes an error Login details incorrect I tried this on my two servers but it did not work on both. 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.