How to change time limit in phpmyadmin (logging in)

后端 未结 6 1350
走了就别回头了
走了就别回头了 2021-01-04 03:11

I use phpmyadmin to create mysql database. And I have set the auth type to cookie in the config.inc.php. How do I change the time limit so that even if I logged in I stayed

6条回答
  •  庸人自扰
    2021-01-04 03:45

    You can avoid cookie authentication altogether and use

    $cfg['Servers'][$i]['auth_type'] = 'config';

    in your config.inc.php file found under the phpmyadmin folder.

    This will keep you logged in forever.

提交回复
热议问题