Jump to content

Autoauth for Wordpress


Recommended Posts

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

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