phpMyAdmin"高级功能未全部设置,部分功能不可用。要查出原因请点这里"及"配置文件现在需要一个短语密码"

时间:2022-08-31 15:29:02

一、在登录phpmyadmin管理数据库,会出现“配置文件现在需要一个短语密码”的警告,这个也不必太理会

原因:会出现这个问题,就是因为这段:$cfg['Servers'][$i]['auth_type'] = ‘cookie'
这里有四个值可供填写:cookie http HTTP config
config方式即输入phpmyadmin的访问网址即可直接进入,无需输入用户名和密码,是不安全的,不推荐使用。
cookie,http或HTTP时,登录phpmyadmin需要数据用户名和密码进行验证,
具体如下:PHP安装模式为Apache,可以使用http和cookie;PHP安装模式为CGI,可以使用cookie
通常这个值设置为cookie即可。

  1. 依次打开phpMyAdmin/libraries/config.default.php文件,这里需要使用文本编辑器,推荐使用BBEdit来打开,其他编辑器也可。    


  2. 找到$ cfg['blowfish_secret'] = ''这一栏,并将这一栏修改为$ cfg['blowfish_secret'] = '654321';(单引号中的数字是可以随意输入)


  3. 再次进入phpMyAdmin目录,打开config.sample.inc.php这个文件,并通过编辑器打开。    


  4. 找到页面中的$ cfg['blowfish_secret'] = '',将其修改为$ cfg['blowfish_secret'] = '567890'; (数字可以任意修改,如果已经有字符,不用修改。)


  5. 再次登陆phpmyadmin,刷新一下试试,红色的提示信息已经消失了!



二、 phpMyAdmin 高级功能未全部设置,部分功能不可用。

原因请先看官方的详细说明:

若要使用一些高级功能 (如: 书签、注释、SQL 查询历史、结构追踪、生成 PDF 、内容转换等),你需要创建一些特殊的数据表。这些表可以放在你自己的数据库里,也可以在一个多用户的服务器上创建一个独立的数据库 (这个数据库将通过其对应的帐号访问,所以不应该给其他用户访问这个数据库的权限)。

Please look at your ./examples/ directory, where you should find a file called create_tables.sql. (If you are using a Windows server, pay special attention to FAQ 1.23).

If you already had this infrastructure and upgraded to MySQL 4.1.2 or newer, please use ./examples/upgrade_tables_mysql_4_1_2+.sql and then create new tables by importing ./examples/create_tables.sql.

你可以使用 phpMyAdmin 来创建这些数据表。但请注意,你可能需要特殊 (管理员) 权限来创建数据库和数据表,而且可能还需要根据实际所使用的数据修改这个脚本中数据库的名字。

After having imported the ./examples/create_tables.sql file, you should specify the table names in your ./config.inc.php file. The directives used for that can be found in the Configuration section. You will also need to have a controluser with the proper rights to those tables (see section Using authentication modes below).

说明这些功能是不必须的,可以不理会,一定要做按下面步骤来,已经为你翻译了


解决方法:
1、在mysql中创建名为phpmyadmin的数据库。
2、将phpmyadmin安装目录下的examples/create_tables.sql导入这个数据库。
3、修改libraries中的config.default.php文件,内容如下(查找关键词并修改):

保存上传到服务器,重新登录phpMyAdmin,就搞定了。