7seas Posted March 4, 2016 Share Posted March 4, 2016 Hello, I am testing the autoauth with wordpress. I well have this code: <?php Define WHMCS URL & AutoAuth Key $whmcsurl = "https://www.domain.com/clients/dologin.php"; $autoauthkey = "abcXYZ123"; $timestamp = time(); # Get current timestamp $email = "demo@123.com"; # 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; ?> I use Wordpress in multisite and it redirects from Admin WP to WHMCS But I am not able to replace the "demo@123.com" email for the users. Also I would like redirect to the specified product, it should retrieve the ID product/ service. I have other code but not able to handle it. Thank you for your interest. 0 Quote Link to comment Share on other sites More sharing options...
wsa Posted March 4, 2016 Share Posted March 4, 2016 Please contact me here 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.