Home  >  Article  >  Backend Development  >  How to solve the error when accessing phpmyadmin

How to solve the error when accessing phpmyadmin

WBOY
WBOYOriginal
2016-08-08 09:33:151289browse


XAMPP (Apache+MySQL+PHP+PERL) is a powerful integrated software package for building XAMPP software sites. It is lightweight and easy to use. It provides the powerful phpmyadmin database management tool, allowing users to use and manage the database with ease. For the problem of not being able to open phpmyadmin locally, my solution is as follows:

MySQL has a default dedicated port: 3306, so if you have installed MySQL independently before, port 3306 is already occupied. When installing MySQL integrated with XAMPP, you must reset the independent port, otherwise you will not be able to access phpmyadmin. The error message I received is shown in the picture:


The modification method is also very convenient. Open the XAMPP control panel, find the config on the right side of mysql, click it, and the my.ini selection will appear. This is the mysql configuration file, as shown in the picture:


Of course I just changed the port, but I still can’t access it. You also need to modify the configuration file of phpmyadmin. There are two ways:

1. Solution to error when accessing phpmyadmin

1. Open the xampp directory (the default installation directory, if you modify it, please find the xampp installation directory), open the phpmyadmin directory, and find config.inc.php in the directory. My default configuration:

/*  * This is needed for cookie based authentication to encrypt password in  * cookie  */ $cfg['blowfish_secret'] = 'xampp'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */ /*  * Servers configuration  */ $i = 0; /*  * First server  */ $i++; /* Authentication type and info */ $cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'username';            //mysql用户名
$cfg['Servers'][$i]['password'] = 'password';       //mysql密码
$cfg['Servers'][$i]['extension'] = 'mysqli';     //扩展配置,若访问出现没有配置mysqli等错误,加上这个。默认是有的
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = ''; /* Bind to the localhost ipv4 address and tcp */ $cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp'; /* User for advanced features */ $cfg['Servers'][$i]['controluser'] = 'pma';
$cfg['Servers'][$i]['controlpass'] = ''; /* Advanced phpMyAdmin features */ $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
$cfg['Servers'][$i]['relation'] = 'pma_relation';
$cfg['Servers'][$i]['table_info'] = 'pma_table_info';
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'pma_column_info';
$cfg['Servers'][$i]['history'] = 'pma_history';
$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
$cfg['Servers'][$i]['tracking'] = 'pma_tracking';
$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
$cfg['Servers'][$i]['recent'] = 'pma_recent';
$cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs'; /*  * End of servers configuration  */ ?>

        Then add the following code after $cfg['Lang'] = ":

$cfg['Servers'][$i]['port'] = '3307'

Save, restart apache, enter localhost/phpmyadmin in the address bar, and you can directly enter the phpmyadmin management interface


This method is not very safe. Without verification, anyone can enter the phpmyadmin management database. Go back to the configuration file and find the following code:

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

Change the config of the above code to cookie or http, and the verification interface will appear (the verification interfaces corresponding to cookie and http are not the same on Windows), I changed it to cookie, and the verification interface as shown will appear


2. This method also modifies the configuration file of phpmyadmin, but the path is different. Find the config.default.php file in phpmyadmin/libraries, which contains various configuration parameters of the server

$cfg['Servers'][$i]['port'] = '';

Find this line of code, mine is on line 132. This is to configure the port. If the value is empty, it is the default 3306. After changing the value to 3307, save it, restart apache, and you can also access phpmyadmin

2. Detailed explanation of phpmyadmin configuration file

Open the config.default.php file found in phpmyadmin/libraries. Commonly used parameters are configured as follows

$cfg['PmaAbsoluteUri'] = ''; //phpmyadmin的访问网址 ,默认就行 $cfg['TranslationWarningThreshold'] = 80; //服务器端口 $cfg['Servers'][$i]['host'] = 'localhost';//mysql主机ip,如果mysql和该phpmyadmin在同一服务器,则按默认localhost $cfg['Servers'][$i]['port'] = '3307'; //mysql端口,默认3306,保留为空即可 $cfg['Servers'][$i]['user'] = 'root'; //mysql用户名 $cfg['Servers'][$i]['password'] = '';//密码 $cfg['Servers'][$i]['auth_type'] = 'cookie'; //认证方式 /*端口、用户名、认证方式等也可以再config.inc.php中配置,并且优先级高 *$cfg['Servers'][$i]['auth_type'] = 'config';  这个是在config.inc.php的 *配置,若不修改这个值,仍然可以直接访问phpmyadmin */ $cfg['DefaultLang']='zh'; //设置默认语言 

For the authentication method $cfg['Servers'][$i]['auth_type'] = 'cookie'; there are four values: cookie, http, HTTP, config

The config method is to enter the access URL of phpmyadmin to enter directly. There is no need to enter the user name and password. It is unsafe and not recommended.

When this item is set to cookie, http or HTTP, logging in to phpmyadmin requires a data username and password for verification, the details are as follows:

          PHP installation mode is Apache, you can use http and cookies;

                                                                                                                                                            PHP installation mode is CGI, but cookies can be used.

In addition, in cookie mode, you can also set $cfg['blowfish_secret'] = "; (phrase password). As for what password to set, it is up to you, or you can ignore it. (I haven't tested it, this point comes from the documentation Explanation, I think you can just ignore it)

Next article: How to use PHP to generate PDF files in HTML

The above introduces how to solve the error when accessing phpmyadmin, including XAMPP and phpmyadmin. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
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