开启phpMyAdmin高级功能的设置方法
注:本文基于phpMyAdmin5.5,使用LNMP环境 问题: 登录到phpMyAdmin以后,在主界面的底部,我们发现两条提示信息:一条提示信息是“phpMyAdmin高级功能尚未完全设置,部分功能未激活。请点击这里查看原因”,另外一条信息是“配置文件现在需要一个短语密码。
注:本文基于phpMyAdmin5.5,使用LNMP环境
问题:
<code>登录到phpMyAdmin以后,在主界面的底部,我们发现两条提示信息: 一条提示信息是“phpMyAdmin高级功能尚未完全设置,部分功能未激活。请点击这里查看原因”,另外一条信息是“配置文件现在需要一个短语密码。” </code>
一旦出现这两条信息,就意味着phpMyAdmin中的部分功能不能使用。解决这个问题的操作步骤分为三部分:上传create_tables.sql文件、配置config.inc.php文件和修改config.default.php文件等。
解决:
1. phpmyadmin数据库创建:
打开phpMyAdmin目录,找到create_tables.sql
cd ./sql
就可以看到create_tables.sql,然后把里面的sql语句copy,然后执行,这样,phpmyadmin数据库就创建成功
2. 配置config.inc.php文件
打开phpMyAdmin文件夹,找到config.sample.inc.php文件,将它重命名为config.inc.php文件。
3. 打开config.inc.php文件,找到下面的语句:
<code class="language-python hljs ">/* Storage database <span class="hljs-keyword">and</span> tables */ // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'pmadb'</span>] = <span class="hljs-string">'phpmyadmin'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'bookmarktable'</span>] = <span class="hljs-string">'pma__bookmark'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'relation'</span>] = <span class="hljs-string">'pma__relation'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'table_info'</span>] = <span class="hljs-string">'pma__table_info'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'table_coords'</span>] = <span class="hljs-string">'pma__table_coords'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'pdf_pages'</span>] = <span class="hljs-string">'pma__pdf_pages'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'column_info'</span>] = <span class="hljs-string">'pma__column_info'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'history'</span>] = <span class="hljs-string">'pma__history'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'table_uiprefs'</span>] = <span class="hljs-string">'pma__table_uiprefs'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'tracking'</span>] = <span class="hljs-string">'pma__tracking'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'designer_coords'</span>] = <span class="hljs-string">'pma__designer_coords'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'userconfig'</span>] = <span class="hljs-string">'pma__userconfig'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'recent'</span>] = <span class="hljs-string">'pma__recent'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'favorite'</span>] = <span class="hljs-string">'pma__favorite'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'users'</span>] = <span class="hljs-string">'pma__users'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'usergroups'</span>] = <span class="hljs-string">'pma__usergroups'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'navigationhiding'</span>] = <span class="hljs-string">'pma__navigationhiding'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'savedsearches'</span>] = <span class="hljs-string">'pma__savedsearches'</span>;</code>
将/* Storage database and tables */语句下面的每一条语句前面的//(双斜杠)和空格全部去掉。
注:
在/* Storage database and tables */句子上面,有下面两行句子:
<code class="language-python hljs ">// $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'controluser'</span>] = <span class="hljs-string">'pma'</span>; // $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'controlpass'</span>] = <span class="hljs-string">'pmapass'</span>;</code>
如果需要,可以修改为:
<code class="language-python hljs ">$cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'controluser'</span>] = <span class="hljs-string">'用户名'</span>; $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'controlpass'</span>] = <span class="hljs-string">'密码'</span>;</code>
4. 修改config.default.php文件
打开phpMyAdmin\libraries\文件夹内的config.default.php文件。
在config.default.php文件内
<code class="language-python hljs "><span class="hljs-number">1</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'pmadb'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'pmadb'</span>] = <span class="hljs-string">'phpmyadmin'</span>; <span class="hljs-number">2</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'bookmarktable'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'bookmarktable'</span>] = <span class="hljs-string">'pma__bookmark'</span>; <span class="hljs-number">3</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'relation'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'relation'</span>] = <span class="hljs-string">'pma__relation'</span>; <span class="hljs-number">4</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'table_info'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'table_info'</span>] = <span class="hljs-string">'pma__table_info'</span>; <span class="hljs-number">5</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'table_coords'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'table_coords'</span>] = <span class="hljs-string">'pma__table_coords'</span>; <span class="hljs-number">6</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'pdf_pages'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'pdf_pages'</span>] = <span class="hljs-string">'pma__pdf_pages'</span>; <span class="hljs-number">7</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'column_info'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'column_info'</span>] = <span class="hljs-string">'pma__column_info'</span>; <span class="hljs-number">8</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'history'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'history'</span>] = <span class="hljs-string">'pma__history'</span>; <span class="hljs-number">9</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'table_uiprefs'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'table_uiprefs'</span>] = <span class="hljs-string">'pma__table_uiprefs'</span>; <span class="hljs-number">10</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'tracking'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'tracking'</span>] = <span class="hljs-string">'pma__tracking'</span>; <span class="hljs-number">11</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'designer_coords'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'designer_coords'</span>] = <span class="hljs-string">'pma__designer_coords'</span>; <span class="hljs-number">12</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'userconfig'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'userconfig'</span>] = <span class="hljs-string">'pma__userconfig'</span>; <span class="hljs-number">13</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'recent'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'recent'</span>] = <span class="hljs-string">'pma__recent'</span>; <span class="hljs-number">14</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'favorite'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'favorite'</span>] = <span class="hljs-string">'pma__favorite'</span>; <span class="hljs-number">15</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'users'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'users'</span>] = <span class="hljs-string">'pma__users'</span>; <span class="hljs-number">16</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'usergroups'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'usergroups'</span>] = <span class="hljs-string">'pma__usergroups'</span>; <span class="hljs-number">17</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'navigationhiding'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'navigationhiding'</span>] = <span class="hljs-string">'pma__navigationhiding'</span>; <span class="hljs-number">18</span>)查找: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'savedsearches'</span>] = <span class="hljs-string">''</span>; 修改为: $cfg[<span class="hljs-string">'Servers'</span>][$i][<span class="hljs-string">'savedsearches'</span>] = <span class="hljs-string">'pma__savedsearches'</span>;</code>
提示:
实际上,上面这些句子就是config.inc.php文件中已经去掉//(双斜杠)的句子。
保存并关闭config.default.php文件。
重新登录phpMyAdmin

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The primary key of a table is one or more columns that uniquely identify each record in the table. Here are the steps to set a primary key: Log in to phpMyAdmin. Select database and table. Check the column you want to use as the primary key. Click "Save Changes". Primary keys provide data integrity, lookup speed, and relationship modeling benefits.

Adding a foreign key in phpMyAdmin can be achieved by following these steps: Select the parent table that contains the foreign key. Edit the parent table structure and add new columns in "Columns". Enable foreign key constraints and select the referencing table and key. Set update/delete operations. save Changes.

Unfortunately, people often delete certain contacts accidentally for some reasons. WeChat is a widely used social software. To help users solve this problem, this article will introduce how to retrieve deleted contacts in a simple way. 1. Understand the WeChat contact deletion mechanism. This provides us with the possibility to retrieve deleted contacts. The contact deletion mechanism in WeChat removes them from the address book, but does not delete them completely. 2. Use WeChat’s built-in “Contact Book Recovery” function. WeChat provides “Contact Book Recovery” to save time and energy. Users can quickly retrieve previously deleted contacts through this function. 3. Enter the WeChat settings page and click the lower right corner, open the WeChat application "Me" and click the settings icon in the upper right corner to enter the settings page.

The WordPress database is housed in a MySQL database that stores all website data and can be accessed through your hosting provider’s dashboard, FTP, or phpMyAdmin. The database name is related to the website URL or username, and access requires the use of database credentials, including name, username, password, and hostname, which are typically stored in the "wp-config.php" file.

Steps to delete a data table in phpMyAdmin: Select the database and data table; click the "Action" tab; select the "Delete" option; confirm and perform the deletion operation.

phpMyAdmin is susceptible to multiple vulnerabilities, including: 1. SQL injection vulnerability; 2. Cross-site scripting (XSS) vulnerability; 3. Remote code execution (RCE) vulnerability; 4. Local file inclusion (LFI) vulnerability; 5. Information disclosure Vulnerability; 6. Privilege escalation vulnerability.

Mobile games have become an integral part of people's lives with the development of technology. It has attracted the attention of many players with its cute dragon egg image and interesting hatching process, and one of the games that has attracted much attention is the mobile version of Dragon Egg. To help players better cultivate and grow their own dragons in the game, this article will introduce to you how to hatch dragon eggs in the mobile version. 1. Choose the appropriate type of dragon egg. Players need to carefully choose the type of dragon egg that they like and suit themselves, based on the different types of dragon egg attributes and abilities provided in the game. 2. Upgrade the level of the incubation machine. Players need to improve the level of the incubation machine by completing tasks and collecting props. The level of the incubation machine determines the hatching speed and hatching success rate. 3. Collect the resources required for hatching. Players need to be in the game

Setting font size has become an important personalization requirement as mobile phones become an important tool in people's daily lives. In order to meet the needs of different users, this article will introduce how to improve the mobile phone use experience and adjust the font size of the mobile phone through simple operations. Why do you need to adjust the font size of your mobile phone - Adjusting the font size can make the text clearer and easier to read - Suitable for the reading needs of users of different ages - Convenient for users with poor vision to use the font size setting function of the mobile phone system - How to enter the system settings interface - In Find and enter the "Display" option in the settings interface - find the "Font Size" option and adjust it. Adjust the font size with a third-party application - download and install an application that supports font size adjustment - open the application and enter the relevant settings interface - according to the individual
