I have a web application that users are being authenticated byForms Based Authentication on our Sophos XG.
I would like to use a URL to force a logout of the session, currently the only way we have to logout is to close the browser window or allow the session to timeout after 5 minutes inactivity.
I have tried to clear the session data by running a php page with the functions:
Session_start();
Session_destroy();
but this is not working.
Is there any way to force a logout of an application which uses Forms Based Authenication with a URL?
This thread was automatically locked due to age.