phpmyadmin logs out after 1440 secs

后端 未结 24 1291
予麋鹿
予麋鹿 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:52

    You just Increase the phpMyAdmin Session Timeout, open config.inc.php in the root phpMyAdmin directory and add this line.

    from the wamp folder path wamp\apps\phpmyadmin4.0.4\config.inc.php

    $cfg['LoginCookieValidity'] = ;
    

    Example

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

    Note: short cookie lifetime is all well and good for the development server not for your production server.

提交回复
热议问题