Page 1 of 1

[SOLVED] Custom exit page

Posted: Tue Feb 26, 2013 8:38 pm
by ttuhsc-user
Script URL:
Version of script: 2.4.1
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:

Write your message below:

Is it possible to configure a custom exit page, so that when a user logs out they are automatically redirected to another web page? Ideally, this would also happen after a timeout or after a failed login attempt.

Re: Custom exit page

Posted: Wed Feb 27, 2013 3:56 pm
by Klemen
You would have to edit "index.php" values in "inc/admin_functions.inc.php" inside functions hesk_autoLogin and hesk_isLoggedIn.

Additionally, in "admin/index.php" inside logout function you would need to change

Code: Select all

'NOREDIRECT'
to your own URL address, for example

Code: Select all

'http://domain.com/page.php'

Re: [SOLVED] Custom exit page

Posted: Wed Feb 27, 2013 10:10 pm
by ttuhsc-user
Perfect! Thank you so much! :-)