We currently use some other software in the members section of amember. We authorize access to this content using the following session strings // user id $Url .= "&usi=" . urlencode($_SESSION['_amember_user']['login']); // user email $Url .= "&eml=" . urlencode($_SESSION['_amember_user']['email']); Since we upgraded to version 4.0 these sesssion strings are not pulling the correct value. They are pulling nothing. What is the new correct session string for login and email thank you todd
have a look: http://www.amember.com/docs/API/Lite PHP: $user = Am_Lite::getInstance()->getUser();$Url .= "&usi=" . urlencode($user['login']);$Url .= "&eml=" . urlencode($user['email']);