我似乎无法使用php脚本连接到mysql,即使我可以与phpmyadmin正常连接.我创建了一个带密码的用户,并为数据库提供了适当的权限,但每次连接时都会死掉访问被拒绝.我在windows xp盒子上使用xampp.防火墙全部被禁用,我已经检查了用户名和密码是否正确.这是代码:
$conn=mysql_connect('localhost','west*c16','megadots') || die (mysql_error());
用户名必须是特定格式还是其他什么?
解决方法:
我有一个预感,这里的问题是你授予它的主机,虽然它实际上只不过是一个有根据的猜测.如果您授予访问权限myuser@’127.0.0.1’或服务器实际IP地址,则不允许使用localhost作为主机进行连接.这是因为当“localhost”被指定为主机时,php将假定您要使用unix套接字而不是网络套接字,并且在该上下文中127.0.0.1与localhost不同.
从mysql_connect()的手动输入:
Note: Whenever you specify “localhost”
or “localhost:port” as server, the
MySQL client library will override
this and try to connect to a local
socket (named pipe on Windows). If you
want to use TCP/IP, use “127.0.0.1”
instead of “localhost”. If the MySQL
client library tries to connect to the
wrong local socket, you should set the
correct path as Runtime Configuration
in your PHP configuration and leave
the server field blank.
希望这不是完全多余的.