Jump to content

AutoAuth not working


zeeshan

Recommended Posts

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&timestamp=$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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated