Hi,
I have just installed CE10 on a test server and am in the process of testing everything before I install it on production. In ePortfolio, in my personal "folder", when I click the "Logoff" box, it asks if I am sure that I want to log off, I say yes, and it never goes back to the launchpad.
It goes to that same screen.
I have read the "ePortfolio logoff button doesn't work for
Single sign on users" document and checked the logon.csp.
It seems to be set up as it is supposed to be.
Here is a copy of the code:
{
// ****************************************
// LOGOFF CURRENT USER ACCOUNT
// ****************************************
if( Request.QueryString.Item("action") == "logoff" )
{
LogoffUser();
LogonUser(usr, pwd, aps, aut, false);
}
// ****************************************
// EXIT TO LAUNCHPAD
// ****************************************
else if( Request.QueryString.Item("action") == "exit" )
{
LogoffUser();
Session.Abandon();
Response.Redirect(URL_EXIT);
}
I have put an url in the response redirect to test and it doesn't help. I have also tried numerous other tests, to no avail. The knowledge base on Crystal Decisions is not much help. Has anyone else run into this?
Thanks,
Rory
I have just installed CE10 on a test server and am in the process of testing everything before I install it on production. In ePortfolio, in my personal "folder", when I click the "Logoff" box, it asks if I am sure that I want to log off, I say yes, and it never goes back to the launchpad.
It goes to that same screen.
I have read the "ePortfolio logoff button doesn't work for
Single sign on users" document and checked the logon.csp.
It seems to be set up as it is supposed to be.
Here is a copy of the code:
{
// ****************************************
// LOGOFF CURRENT USER ACCOUNT
// ****************************************
if( Request.QueryString.Item("action") == "logoff" )
{
LogoffUser();
LogonUser(usr, pwd, aps, aut, false);
}
// ****************************************
// EXIT TO LAUNCHPAD
// ****************************************
else if( Request.QueryString.Item("action") == "exit" )
{
LogoffUser();
Session.Abandon();
Response.Redirect(URL_EXIT);
}
I have put an url in the response redirect to test and it doesn't help. I have also tried numerous other tests, to no avail. The knowledge base on Crystal Decisions is not much help. Has anyone else run into this?
Thanks,
Rory