Home Backend Development PHP Tutorial The whole process of phpMyAdmin installation and configuration method, and problem solving_PHP tutorial

The whole process of phpMyAdmin installation and configuration method, and problem solving_PHP tutorial

Jul 13, 2016 pm 05:52 PM
mysql php phpmyadmin unit exist Install database method solve debug Configuration question

Text:
Today, I debugged the PHP database Mysql and installed the phpMyAdmin database management software on the work computer. It was originally a very simple matter, but several problems arose:
1/Unable to load mcrypt extension, please check PHP configuration;
2/The configuration file now requires a top-secret phrase password (blowfish_secret);
3/#2003-The server is not responding.
In order to prepare for emergencies, we have summarized the solutions to these problems encountered on the Piaoyi blog, so as to avoid having to read documents and find solutions when encountering such problems in the future.
Since the latest version of phpMyAdmin has been updated to 2.11.5.1, many configuration methods circulated on the Internet are from the old version and are no longer suitable for the configuration requirements of the new version; so flymorn also includes the configuration steps for phpMyAdmin2.11.5.1. Listed below; in order to facilitate switching and debugging PHP, I use the windows system and debug locally.

1. First download the phpMyAdmin installation package:
Go to the official foreign website, click the "DOWNLOADS" link on the navigation bar to enter the download page, select the "all-languages.zip" version to download locally, and decompress it; put the decompressed file into the phpmyadmin file in the virtual root directory specified by the system folder (the folder name can be customized), for example, the local storage location of flymorn is D:wwwphpmyadmin.
2. Find the /libraries/config.default.php file in the phpmyadmin folder (the old version is the config.inc.php file in the root directory), and open it for editing with WordPad that supports UTF-8 encoding.
3. Search $cfg['PmaAbsoluteUri']
Change it to the URL of phpMyAdmin that you will upload to the space
For example: $cfg['PmaAbsoluteUri'] = 'http://www.piaoyi.org/phpmyadmin/';
Because I am debugging locally, I changed it to $cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin/';
Note: Don’t miss the last backslash / and the beginning http.
4. Search $cfg['Servers'][$i]['host'] = 'localhost'; (usually the default is used, there are exceptions, and no modification is required)
5. Search $cfg['Servers'][$i]['auth_type'] = 'config';
Use config for debugging on your own machine; if you use cookies in the network space, since we have added the URL before, we will change it to cookies.
My personal suggestion: Whether it is local or online, it is recommended to set cookies, safety first.
At the same time, when the auth_type value is set to cookie, there is still one place that needs to be modified accordingly:
$cfg['blowfish_secret'] = '';
Change to: $cfg['blowfish_secret'] = 'www.piaoyi.org';
The www.piaoyi.org here can be defined by yourself, no more than 46 characters. If this field is left blank, the second error mentioned above will appear: "The configuration file now requires a top-secret phrase password (blowfish_secret)".
6. Find $cfg['Servers'][$i]['user'] = 'root'; // MySQL user (user name, use root on your machine; on the Internet, it is usually your ftp user name, virtual host The provider will tell you; generally do not modify it)
7. Search $cfg['Servers'][$i]['password'] = '123456'; // MySQL password (change 123456 to the user password to connect to your MYSQL database)
8. Find $cfg['DefaultLang'] = 'zh'; (here is the language selection, zh represents Simplified Chinese) and $cfg['DefaultCharset'] = 'gb2312'; (modify the default encoding to the national standard)
At this point, phpMyAdmin has been configured OK; you can open http://localhost/phpmyadmin/ to access the convenient and fast graphical management software phpMyAdmin. Regarding other options in the configuration file not mentioned in this article, you don’t need to worry about it or modify it. The specific how to operate phpMyAdmin is beyond the scope of this article, but the graphical interface is easy to understand and you will be able to use it after just a few glances (reference).
Let’s talk about several problems encountered by flymorn during the installation and configuration of phpMyAdmin.
The first question: "Unable to load mcrypt extension, please check PHP configuration".
1. The Mysql database is not installed correctly, and the Mysql-related services in the system services are not started.
2. The libmcrypt.dll file is missing in the system's system32 (C:windowssystem32) directory. The solution is to find libmcrypt.dll in the php directory, copy libmcrypt.dll to the C:windowssystem32 directory, and then restart the Web service.
3. In the php.ini file in the PHP directory, the first ";" in ";extension=php_mcrypt.dll" has not been removed, so the corresponding function cannot be used. The solution is to open the php.ini file and find;extension =php_mcrypt.dll changed to extension=php_mcrypt.dll //Remove the previous; to make it effective
4. The Mysql directory does not have read permissions. The correct directory permissions are as follows:
administrator Full control
system Full control
user Read and run
Delete all other user permissions (can also be retained, but the security is not high, it is recommended to delete), and then restart the MYsql service and Web service (it is recommended to restart the server after modifying this).
5. If none of the above methods work, use this method: Desktop>My Computer>Right-click Properties>Advanced>Environment Variables>System Variables>New
Name: phpdir
Value: C:php (whatever directory your PHP is in)
(Reference source: address)
Second question: "Unable to load mysql extension, please check PHP configuration"
Copy libmySQL.dll in the PHP directory to: c:windowssystem32, and then restart APACHE.
Third question: “Configuration files now require a top-secret phrase password (blowfish_secret)”
Make sure you have the correct settings in the config.default.php file:
$cfg['Servers'][$i]['auth_type']= 'cookie';
At the same time
$cfg['blowfish_secret'] = 'www.piaoyi.org'; //(Write this value as you like, but cannot leave it blank)
In fact, I was really depressed when I encountered this problem. If I followed the configuration method I mentioned above, this error should not be prompted. After more than 2 hours of constant modification of the config.default.php configuration file, I kept getting this error, which was almost on the verge of collapse.
Then I suddenly had an idea: I changed the auth_type authentication method to http, and when I changed it to config, this error always appeared when I opened the page. In other words, changing the authentication mode did not affect phpmyadmin. Could it be other configurations? Documentation affects decision making in phpmyadmin?
Immediately went to the phpmyadmin root directory, and surprisingly found that while there was a config.sample.inc.php file in the root directory, there was also a file config.inc.php! ! And this is the configuration file of the previous old version. It turns out that this file is the trouble. Delete config.inc.php immediately, enter the debugging page again, and the error disappears! Problem solved.
It seems that the config.inc.php configuration file in the root directory of phpmyadmin has a higher priority than the configuration file in /libraries/config.default.php. The system calls the configuration file in the root directory first, and then the configuration file in the libraries folder. Configuration file, Ai, I have been struggling with this problem for so long, so sad. It's finally solved, let me breathe a sigh of relief.
The fourth question: "#2003-The server did not respond."
If you encounter this problem, it is most likely that the MYSQL database has not been started. It is recommended to start MYSQL directly in: Control Panel-Administrative Tools-Services. Regarding whether to start, you can check whether there is a process such as "mysqld-nt.exe" in the task manager. If there is, it means that mysql has been started.

The fifth question: "The PHP extension setting mbstring was not found."
Modify the PHP.INI file under C:WINDOWS, find ;extension=php_mbstring.dll, remove;, save PHP.INI, and restart Apache.
​​It’s okay not to encounter these problems. But for novices, when they encounter it for the first time, they usually look everywhere for solutions. When a lot of methods on the Internet are not applicable, they will feel so helpless. I still suggest that you don’t worry when you encounter problems, read the documentation carefully, and refer to the solutions of your predecessors. Although they may not be applicable, they will be inspiring to you. Practice more and experiment more, no problem can stump you.
Author: pureboy

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478079.htmlTechArticleText: Today I debugged the PHP database Mysql and installed the phpMyAdmin database management software on the work computer. It was originally very simple. thing, but several problems occurred: 1/Unable to load mcrypt extension...
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The relationship between mysql user and database The relationship between mysql user and database Apr 08, 2025 pm 07:15 PM

In MySQL database, the relationship between the user and the database is defined by permissions and tables. The user has a username and password to access the database. Permissions are granted through the GRANT command, while the table is created by the CREATE TABLE command. To establish a relationship between a user and a database, you need to create a database, create a user, and then grant permissions.

RDS MySQL integration with Redshift zero ETL RDS MySQL integration with Redshift zero ETL Apr 08, 2025 pm 07:06 PM

Data Integration Simplification: AmazonRDSMySQL and Redshift's zero ETL integration Efficient data integration is at the heart of a data-driven organization. Traditional ETL (extract, convert, load) processes are complex and time-consuming, especially when integrating databases (such as AmazonRDSMySQL) with data warehouses (such as Redshift). However, AWS provides zero ETL integration solutions that have completely changed this situation, providing a simplified, near-real-time solution for data migration from RDSMySQL to Redshift. This article will dive into RDSMySQL zero ETL integration with Redshift, explaining how it works and the advantages it brings to data engineers and developers.

How to fill in mysql username and password How to fill in mysql username and password Apr 08, 2025 pm 07:09 PM

To fill in the MySQL username and password: 1. Determine the username and password; 2. Connect to the database; 3. Use the username and password to execute queries and commands.

Query optimization in MySQL is essential for improving database performance, especially when dealing with large data sets Query optimization in MySQL is essential for improving database performance, especially when dealing with large data sets Apr 08, 2025 pm 07:12 PM

1. Use the correct index to speed up data retrieval by reducing the amount of data scanned select*frommployeeswherelast_name='smith'; if you look up a column of a table multiple times, create an index for that column. If you or your app needs data from multiple columns according to the criteria, create a composite index 2. Avoid select * only those required columns, if you select all unwanted columns, this will only consume more server memory and cause the server to slow down at high load or frequency times For example, your table contains columns such as created_at and updated_at and timestamps, and then avoid selecting * because they do not require inefficient query se

MySQL: The Ease of Data Management for Beginners MySQL: The Ease of Data Management for Beginners Apr 09, 2025 am 12:07 AM

MySQL is suitable for beginners because it is simple to install, powerful and easy to manage data. 1. Simple installation and configuration, suitable for a variety of operating systems. 2. Support basic operations such as creating databases and tables, inserting, querying, updating and deleting data. 3. Provide advanced functions such as JOIN operations and subqueries. 4. Performance can be improved through indexing, query optimization and table partitioning. 5. Support backup, recovery and security measures to ensure data security and consistency.

How to view mysql How to view mysql Apr 08, 2025 pm 07:21 PM

View the MySQL database with the following command: Connect to the server: mysql -u Username -p Password Run SHOW DATABASES; Command to get all existing databases Select database: USE database name; View table: SHOW TABLES; View table structure: DESCRIBE table name; View data: SELECT * FROM table name;

Can I retrieve the database password in Navicat? Can I retrieve the database password in Navicat? Apr 08, 2025 pm 09:51 PM

Navicat itself does not store the database password, and can only retrieve the encrypted password. Solution: 1. Check the password manager; 2. Check Navicat's "Remember Password" function; 3. Reset the database password; 4. Contact the database administrator.

Understand ACID properties: The pillars of a reliable database Understand ACID properties: The pillars of a reliable database Apr 08, 2025 pm 06:33 PM

Detailed explanation of database ACID attributes ACID attributes are a set of rules to ensure the reliability and consistency of database transactions. They define how database systems handle transactions, and ensure data integrity and accuracy even in case of system crashes, power interruptions, or multiple users concurrent access. ACID Attribute Overview Atomicity: A transaction is regarded as an indivisible unit. Any part fails, the entire transaction is rolled back, and the database does not retain any changes. For example, if a bank transfer is deducted from one account but not increased to another, the entire operation is revoked. begintransaction; updateaccountssetbalance=balance-100wh

See all articles