phpmyadmin logs out after 1440 secs

后端 未结 24 1778
予麋鹿
予麋鹿 2021-01-29 23:29

In my local development Ubuntu box I use MySQL and phpmyadmin to work with the database.

Whenever phpmyadmin is idle for 1440 secs (24min) the session expires. I lose m

24条回答
  •  你的背包
    2021-01-29 23:41

    We can change the cookie time session feature at:

    Settings->Features->General->Login cookie validity

    I found the answer in here.. No activity within 1440 seconds; please log in again

    EDIT:

    This solution will work only for the current session, to change permanently do:

    open config.inc.php in the root phpMyAdmin directory .

    wamp folder: wamp\apps\phpmyadmin{version}\config.inc.php

    ubuntu: /etc/phpmyadmin

    add this line

    $cfg['LoginCookieValidity'] = ;
    

    Example

    $cfg['LoginCookieValidity'] = '144000';
    

提交回复
热议问题