Hello everyone,
I would 'like to ask if it is possible not to check the box related to "Only allow your session to be used from this IP address" on the login password page".
See file in attachment.
Thanks
Customize password login page
Moderators: Developer, Contributor
Customize password login page
- Attachments
-
- login page.png (8.66 KiB) Viewed 12497 times
Re: Customize password login page
You can disable sessionvalidation in config/config_inc.php with the followring statement:
Code: Select all
$g_session_validation = OFF;Re: Customize password login page
Keep in mind that this could be a potential security risk.
https://mantisbt.org/docs/master/en-US/ ... .webserver
https://mantisbt.org/docs/master/en-US/ ... .webserver
Re: Customize password login page
In case you want to keep session validation active and you want the checkbox to be unchecked, you would need to make a change to login_password_page.php.
find the following line:
Add the following line just the before that line
Downside of this that it needs to be repeated which each upgrade of Mantis
find the following line:
Code: Select all
layout_login_page_begin();Code: Select all
$t_default_secure_session = OFF;