Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/263.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何更改phpmyAdmin的配置设置?_Php_Mysql - Fatal编程技术网

如何更改phpmyAdmin的配置设置?

如何更改phpmyAdmin的配置设置?,php,mysql,Php,Mysql,…我想更改密码和其他参数。我正在使用lampp堆栈。在mysql终端中,我知道我可以做到: update user set password=PASSWORD("......."), file_priv='Y' where user='root'; INSERT INTO user (host, user, password, select_priv, max_connections, max_user_connections) VALUES ('localhost','webu

…我想更改密码和其他参数。我正在使用lampp堆栈。在mysql终端中,我知道我可以做到:

   update user set password=PASSWORD("......."), file_priv='Y' where user='root';
    INSERT INTO user (host, user, password, select_priv, max_connections, max_user_connections) 
VALUES ('localhost','webuser',PASSWORD('ohhai'),'Y',1000,1000);
如何使用phpMyAdmin实现这一点


另外,假设我的数据在文本文件中,并且我有一个.sql文件来还原表,那么如何使用phpMyAdmin来执行此操作?

您可以在phpMyAdmin中编辑帐户。但是您也可以导入sql文件,或者只在phpmyadmin控制面板中运行sql


登录后,请使用root。上传文件,或者直接在
sql
选项卡中运行sql。编辑用户也很容易,当我加载本地填充时,单击“权限”

,我应该指定什么路径?~指根路径,但文件位于“我的桌面”中