Hi, As I need to display link & pages day by day, i have grouped them in one category, so that the page with all the link is automatically updated. ie : day 1, first link, day 2, second link and so on. I needed a separated page, with link appearing each day to avoid a mess on member index page... So I have a page like http://mysite.com/membres/content/c/id/6 When people are already logged in, on a computer, it works perfectly. But when people are not logged in, they arrive on a page just saying "an error occured : You must be authorized to access this area". How can I add a login screen on that error so people don't get lost ? I found the feature to redirect people to login page when they try to access everything else... but it does not work for categories. Tx in advance. Jerome
maybe do what i did, a small php script to test the login status and go to a page or another depending... <?php require_once '/home/myusername/public_html/amember/library/Am/Lite.php'; $log=Am_Lite::getInstance()->isLoggedIn(); if ($log <> "1") { Header('Location: http://www.trainingthewrightway.co.uk/onlinecourses/memberlogin.html'); } else { Header('Location: http://www.trainingthewrightway.co.uk/onlinecourses/shibashi-one/'); } ?>