Hi. I know that it is posible to access amember sessions if I am on the same domain but is it posible to get the logged in status if I am on another domain... I have www.example.com with a login box which accesses www.example2.com/member and completes the logon and then loops back round to www.example.com all of my protected content is delivered through www.example2.com/member/content is it posible to get the logged in status and display it on www.example.com ? I realise that session data is not available cross domain but I wonder is there is anything I can do I hope that has made some sense. Chris
Chris, Use iframes. Create simple script that will show only login form if user is not logged in and show logged in message if user is logged in. For example: www.example2.com/member/simplelogin.php then include it in iframe from your www.example.com domain.
Hi Alex. If I use an Iframe am I able to make use of the amember session data else where within the page (outside of the Iframe) I want to be able to have different links in place depending if they are signed in or not etc. Thanks Chris
Chris, No. You can't get session data on other domain name. Cookies can't be read from different domain name so you can't access session.