RE: Customer Center - prevent access and get info about the user
Hi Patrik, not sure how your code is, but if you use customer.fcgi you can use getParserVariable("authenticated") to check if the user is authenticated or not.
Something like this:
String authenticated = getParserVariable("authenticated");
if(authenticated == "true")
{
// Do Code
}
Also, you have the possibility to add %PARSER_TREE% to your code in the customer center to see all available information.
What kind of information are you interested in fetching?