search
HomeBackend DevelopmentPHP TutorialphpMyAdmin2.11.6 installation and configuration method_PHP tutorial
phpMyAdmin2.11.6 installation and configuration method_PHP tutorialJul 21, 2016 pm 03:50 PM
mcryptphpInstallExpandmethodexaminenowConfigurationConfiguration file

1/Unable to load the mcrypt extension, please check the 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, the solutions to these problems encountered are summarized on the Piaoyi blog, so as to avoid having to read documents everywhere 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 added phpMyAdmin2.11.5 The configuration steps of .1 are also 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 http://www.phpmyadmin.net, click the "DOWNLOADS" link on the navigation bar to enter the download page, and select "all-languages .zip" version locally and decompress it; put the decompressed file into the phpmyadmin folder in the virtual root directory specified by the system (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 with a WordPad that supports UTF-8 encoding. edit.

3. Find $cfg['PmaAbsoluteUri']
Change it to the URL of phpMyAdmin that you will upload to the space
For example: $cfg['PmaAbsoluteUri'] = 'http://www. jb51.net/phpmyadmin/';
Because I am debugging locally, I changed it to $cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin/';
Note: Don’t miss the last one Backslash/ and http at the beginning.

4. Find $cfg['Servers'][$i]['host'] = 'localhost'; (usually the default is used, there are exceptions, and you don’t need to modify it)

5. Find $cfg['Servers'][$i]['auth_type'] = 'config';
Use config for debugging in your own machine; if you use cookies in the network space, since we have added it before If the URL is found, change it to cookie.
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 another place that needs to be modified:
$cfg['blowfish_secret'] = '';
Change to: $cfg['blowfish_secret' ] = 'www.jb51.net';
The www.jb51.net 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. Search $cfg['Servers'][$i]['user'] = 'root'; // MySQL user (user name, use root on your machine; on the Internet it is usually your ftp user name, the virtual host provider will tell you; generally do not modify it)

7. Find $cfg['Servers'][$i]['password'] = '123456'; // MySQL password (Change 123456 to the user password connecting to your MYSQL database)

8. Find $cfg['DefaultLang'] = 'zh'; (Here is the language selection, zh means Simplified Chinese) and $ cfg['DefaultCharset'] = 'gb2312'; (Change the default encoding to the national standard)

At this point, phpMyAdmin has been configured OK; you can open http://localhost/phpmyadmin/ to access convenient and fast graphics The management software phpMyAdmin is now available. 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 three problems encountered by flymorn during the installation and configuration of phpMyAdmin.

First question: "Unable to load mcrypt extension, please check PHP configuration".

1. The Mysql database is not installed correctly, and Mysql-related services are not started in the system services.
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 Web services.
3. In the php.ini file in the PHP directory, the first ";" in ";extension=php_mcrypt.dll" is not removed, so the corresponding function cannot be used. The solution is to open the php.ini file. Find;extension=php_mcrypt.dll and change it 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 after modifying this item) server).
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 (the directory where your PHP is in is the directory)
(reference source: address)

Second question: "The configuration file now requires 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';
Also
$ cfg['blowfish_secret'] = 'www.jb51.net'; // (Write this value casually, but cannot leave it blank)

Actually, I encountered this problem and it was really depressing. If you follow what I said above If the configuration method mentioned is done, 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 had an idea and suddenly discovered: 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, which means that changing the authentication mode did not work on phpmyadmin. , is it other configuration files that affect phpmyadmin?

I immediately went to the root directory of phpmyadmin, and I was surprised to find 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 phpmyadmin root directory has a higher priority than the /libraries/config.default.php configuration file. The system calls the configuration file in the root directory first, and then It's the configuration file in the libraries folder. Ai, I've been struggling with this problem for so long. Sorry. It's finally solved, let me breathe a sigh of relief.

Third question: "#2003-Server not responding".

When encountering this problem, it is most likely that the MYSQL database has not been started. It is recommended to start MYSQL directly in: Control Panel - Management 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.

Just don’t encounter these problems. But for novices, like me, 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. I am optimistic about you ^__^

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319268.htmlTechArticle1/Unable to load the mcrypt extension, please check the PHP configuration; 2/The configuration file now requires a top-secret phrase password ( blowfish_secret); 3/#2003-The server did not respond. In order to prepare for emergencies, please...
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
win11安装语言包错误0x800f0950什么原因win11安装语言包错误0x800f0950什么原因Jul 01, 2023 pm 11:29 PM

win11安装语言包错误0x800f0950什么原因?当我们在给windows11系统安装新语言包时,有时会遇到系统提示错误代码:0x800f0950,导致语言包安装流程无法继续进行下去。导致这个错误代码一般是什么原因,又要怎么解决呢?今天小编就来给大家说明一下win11安装语言包错误0x800f0950的具体解决步骤,有需要的用户们赶紧来看一下吧。win11电脑错误代码0x800f0950解决技巧1、首先按下快捷键“Win+R”打开运行,然后输入:Regedit打开注册表。2、在搜索框中输入“

如何在 Google Docs 中安装自定义字体如何在 Google Docs 中安装自定义字体Apr 26, 2023 pm 01:40 PM

GoogleDocs在学校和工作环境中变得很流行,因为它提供了文字处理器所期望的所有功能。使用Google文档,您可以创建文档、简历和项目提案,还可以与世界各地的其他用户同时工作。您可能会注意到GoogleDocs不包括MicrosoftWord附带的所有功能,但它提供了自定义文档的能力。使用正确的字体可以改变文档的外观并使其具有吸引力。GoogleDocs提供了大量字体,您可以根据自己的喜好从中选择任何人。如果您希望将自定义字体添加到Google文档,请继续阅读本文。在本文中

适用于 Windows 11 的记事本++:如何下载和安装它适用于 Windows 11 的记事本++:如何下载和安装它Jul 06, 2023 pm 10:41 PM

Notepad++主要由开发人员用于编辑源代码,由临时用户用于编辑文本。但是,如果您刚刚升级到Windows11,则在您的系统上下载和安装该应用程序可能具有挑战性。因此,我们将讨论在Windows11上下载和安装记事本++。此外,您可以轻松阅读我们关于修复Notepad++在Windows上没有响应的详细指南。记事本++可以在Windows11上运行吗?是的,记事本++可以在Windows11上有效工作,而不会出现兼容性问题。更具体地说,没有臃肿的选项或错误,只需在一个非常小的编辑器中即可。此外

Steam 未检测到 Windows 11/10 中已安装的游戏,如何修复Steam 未检测到 Windows 11/10 中已安装的游戏,如何修复Jun 27, 2023 pm 11:47 PM

Steam客户端无法识别您计算机上的任何游戏吗?当您从计算机上卸载Steam客户端时,会发生这种情况。但是,当您重新安装Steam应用程序时,它会自动识别已安装文件夹中的游戏。但是,别担心。不,您不必重新下载计算机上的所有游戏。有一些基本和一些高级解决方案可用。修复1–尝试在同一位置安装游戏这是解决这个问题的最简单方法。只需打开Steam应用程序并尝试在同一位置安装游戏即可。步骤1–在您的系统上打开Steam客户端。步骤2–直接进入“库”以查找您拥有的所有游戏。第3步–选择游戏。它将列在“未分类

Windows 11 Lite:它是什么以及如何在您的 PC 上安装它Windows 11 Lite:它是什么以及如何在您的 PC 上安装它Apr 14, 2023 pm 11:19 PM

我们深知MicrosoftWindows11是一个功能齐全且设计吸引人的操作系统。但是,用户一直要求Windows11Lite版本。尽管它提供了重大改进,但Windows11是一个资源匮乏的操作系统,它可能很快就会使旧机器混乱到无法顺利运行的地步。本文将解决您最常问的关于是否有Windows11Lite版本以及是否可以安全下载的问题。跟着!有Windows11Lite版本吗?我们正在谈论的Windows11Lite21H2版本是由Neelkalpa的T

修复:在 Xbox 应用上的 Halo Infinite(Campaign)安装错误代码 0X80070032、0X80070424 或 0X80070005修复:在 Xbox 应用上的 Halo Infinite(Campaign)安装错误代码 0X80070032、0X80070424 或 0X80070005May 21, 2023 am 11:41 AM

<p><strong>HaloInfinite(Campaign)</strong>是一款第一人称射击视频游戏,于2021年11月推出,可供单人和多用户使用。该游戏是Halo系列的延续,适用于Windows、XboxOne和Xbox系列的用户X|S。最近,它还在PC版XboxGamePass上发布,以提高其可访问性。大量玩家报告在尝试使用WindowsPC上的<strong>Xbox应

虚拟机如何安装Win11虚拟机如何安装Win11Jul 03, 2023 pm 12:17 PM

  虚拟机怎么安装Win11?近期有用户想要尝试使用VirtualBox虚拟机安装Win11,但是不太清楚具体的操作方法,针对这一情况,小编将为大家演示使用VirtualBox安装Win11的方法,很多小伙伴不知道怎么详细操作,小编下面整理了使用VirtualBox安装Win11的步骤,如果你感兴趣的话,跟着小编一起往下看看吧!  使用VirtualBox安装Win11的步骤  1、要下载VirtualBox,请前往VirtualBox官方下载页面,下载适用于Windows的.exe文件。如果你

教大家win7精简版如何安装教大家win7精简版如何安装Jul 09, 2023 pm 02:05 PM

重装系统对于电脑小白来说真不是一件简单的事情,那么下面就和大家聊聊电脑重装精简版win7系统的一个方法吧。1、在小白一键重装系统官网中下载小白三步装机版软件并打开,软件会自动帮助我们匹配合适的系统,然后点击立即重装。2、接下来软件就会帮助我们直接下载系统镜像,只需要耐心等候即可。3、下载完成后软件会帮助我们直接进行在线重装Windows系统,请根据提示操作。4、安装完成后会提示我们重启,选择立即重启。5、重启后在PE菜单中选择XiaoBaiPE-MSDNOnlineInstallMode菜单进入

See all articles

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 Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version