Auto Login allows you to automatically login a user from your own third-party code.
// URL to Clientexec $ceURL = "https://www.clientexec.com/members/index.php?fuse=admin&action=autologin"; // SHA1 hash of your Application Key $key = sha1('A3973FE4-FA52-FB04ACA2063B'); // URL to send the user to, after Auto Login is successful. $goto = urlencode('index.php?fuse=support&controller=ticket&view=submitticket'); // Current Time $timestamp = time(); // Email of the User $email = "[email protected]"; // Unqiue Hash to send to AutoLogin $hash = sha1($key . $email . $timestamp); // Full URL for AutoLogin $url = "{$ceURL}&email={$email}×tamp={$timestamp}&hash={$hash}&goto={$goto}"; header("Location: $url"); die();