Home > Backend Development > PHP Tutorial > phpmyadmin login time method_PHP tutorial

phpmyadmin login time method_PHP tutorial

WBOY
Release: 2016-07-13 10:54:12
Original
1022 people have browsed it

Here we can modify its login mode to http. In this way, you can continue to use it as long as the browser is not closed.
Take the php tutorial myadmin installed through apt-get in the Ubuntu environment as an example.
The document location is /etc/phpmyadmin/config.inc.php
Modify the document as follows:
The code is as follows:

if (!empty($dbname)) {
/* authentication type */
// $cfg['servers'][$i]['auth_type'] = 'cookie';
//Reset login mode
$cfg['servers'][$i]['auth_type'] = 'http';

ps tutorial: In fact, many places on the Internet have mentioned that changing to http mode is enough, but why have I never succeeded? Because phpmyadmin has 3 config.inc.php documents, and I have only modified the documents in the phpmyadmin folder. The correct documentation is in /etc/phpmyadmin/config.inc.php

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632326.htmlTechArticleHere we can modify its login mode to http. In this way, you can continue to use it as long as the browser is not closed. Take the php tutorial myadmin installed through apt-get in the Ubuntu environment as an example. ...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template