使用 WAMP 服务器设置 phpMyAdmin

发布于 2025-01-08 07:22:23 字数 264 浏览 0 评论 0原文

我让 phpmyadmin 登录,然后按照此 链接。现在的问题是我编写了 php 代码来访问数据库并使用 sql 查询从表中读取数据,但它无法找到我使用 mysql 命令行控制台创建的数据库。但是,它可以找到我使用 phpmyadmin 创建的数据库。这是为什么?

I got phpmyadmin to log on, and followed this link. Now the problem is that I wrote php code for accessing a database and reading data from the tables using a sql query but it fails to find the database I created using mysql command line console. However, it can find the database I created using the phpmyadmin. Why is that?

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

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

发布评论

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

评论(2

提笔书几行 2025-01-15 07:22:23

这里可能有几种情况:

  • 你设置了河豚的秘密吗?

    $cfg['blowfish_secret'] = '7hfs97fs4fs847';
    
  • 您是否设置了 auth 配置参数?

    $cfg['服务器'][$i]['auth_type'] = 'config';
    
  • 尝试使用空白密码登录?

    $cfg['服务器'][$i]['用户'] = 'root';
    $cfg['服务器'][$i]['密码'] = '';
    
  • 重置MySQL的root密码?

    mysql>使用mysql;
    mysql>更新用户设置密码=PASSWORD('NewPass') where User='root';
    mysql>同花顺特权;
    mysql>退出
    

让我知道这些解决方案之一是否对您有帮助。

Several things could be the case here:

  • Have you set the blowfish secret?

    $cfg['blowfish_secret'] = '7hfs97fs4fs847';
    
  • Have you set the auth config parameter?

    $cfg['Servers'][$i]['auth_type']     = 'config';
    
  • Tried logging in with a blank password?

    $cfg['Servers'][$i]['user'] = 'root';
    $cfg['Servers'][$i]['password'] = '';
    
  • reset the root password for MySQL?

    mysql>use mysql;
    mysql>update user set Password=PASSWORD('NewPass') where User='root';
    mysql> flush privileges;
    mysql>exit
    

Let me know if one of these solution helped you.

萌化 2025-01-15 07:22:23

阅读官方文档,您还必须设置一些其他变量: http://www .phpmyadmin.net/documentation/Documentation.html#setup

例如:
$cfg['服务器'][$i]['auth_type'] = 'config';

Read the official documentation, you`ll have to setup some other variables too: http://www.phpmyadmin.net/documentation/Documentation.html#setup

For example:
$cfg['Servers'][$i]['auth_type'] = 'config';

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