How can I change the phpmyadmin automatic log out time?
It will log out automatically after 1440 seconds which is very low for me. How can I change the option or re
For phpMyadmin 5.0.2 running on Ubuntu 18.04, I edited the file as follows:
sudo nano /usr/share/phpmyadmin/libraries/classes/Config/Forms/User/FeaturesForm.php
find the method public static function getForms() and added LoginCookieValidity field
public static function getForms()
{
$result = [
'General' => [
'VersionCheck',
'NaturalOrder',
'InitialSlidersState',
'LoginCookieValidity', //Added this line if it missing
...........
}
save the file and now you will be able to change the value from user interface.
[Settings -> General -> Features -> Login Cookie Validatity]