如何使用密码访问phpmyadmin

发布于 2024-08-21 01:30:41 字数 63 浏览 3 评论 0原文

如果我给phpmyadmin/Wampserver(界面)分配了密码,我该如何访问它,有没有可以输入密码的页面?

how do I access phpmyadmin/Wampserver(interface) if I have assigned it a password, is there any page where you can input the password?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

天暗了我发光 2024-08-28 01:30:41

您可以在配置中设置自动访问,只需将 $cfg['Servers'][$i]['AllowNoPassword'] 更改为 true 参数(如果不是)。

示例:

$cfg['服务器'][$i]['AllowNoPassword'] = true;

它将允许您根据您的通行证和登录信息自动访问您的 phpmyadmin。

如果您想在 phpmyadmin 页面中输入您自己的登录名和密码,只需在配置文件中将 true 参数更改回 false 即可。

祝你好运。

You can set the automatic access in your configuration just change $cfg['Servers'][$i]['AllowNoPassword'] to true argument if it's not.

Example:

$cfg['Servers'][$i]['AllowNoPassword'] = true;

It will allow you to automatically access to your phpmyadmin base on your pass and login.

If you would like to input your own login and password in phpmyadmin page just change the true argument back to false in the config file.

good luck.

离鸿 2024-08-28 01:30:41

这是一篇旧文章,但如果有人需要知道

转到您的 xampp 文件夹,打开 phpmyadmin 文件夹
在文本编辑器上打开 config.inc php 文件

您应该看到
$cfg['服务器'][$i]['密码'] = '';

只需在其中输入您的密码,保存并尝试再次连接
例如:$cfg['服务器'][$i]['密码'] = '1234';

This is an old post, but in case anyone needs to know

Go to your xampp folder, open phpmyadmin folder
Open the config.inc php file on text editor

You should see
$cfg['Servers'][$i]['password'] = '';

Just input your password in there, save it and try connecting again
example: $cfg['Servers'][$i]['password'] = '1234';

梦过后 2024-08-28 01:30:41

当您通过以 phpmyadmin 结尾的地址访问主机时,系统将提示您输入分配的用户名和密码。如果您没有指定用户名,请尝试“root”

尝试:

http://localhost/phpmyadmin/

这是来自 如何设置您自己的 Wampserver

When you access your host via an address which ends with phpmyadmin, you will be prompted for the username and password you assigned. If you didn't specify a username, try 'root'

Try:

http://localhost/phpmyadmin/

This was from How to setup Your Own Wampserver

且行且努力 2024-08-28 01:30:41

尝试使用root作为用户名,并让密码为空(不要输入任何内容)
这对我有用。

Try root as username and let the password empty ( don't type anything )
It worked for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文