|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#1 |
|
Member (10 bit)
|
cant connect to db...
When i try to connect to my db(using netfirms), i get these errors:
Code:
Warning: Access denied for user: 'u70006585@cgi1_2' (Using password: YES) in /mnt/web_j/d39/s01/a000grk9/www/users.php on line 8 Warning: MySQL Connection Failed: Access denied for user: 'u70006585@cgi1_2' (Using password: YES) in /mnt/web_j/d39/s01/a000grk9/www/users.php on line 8 Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in /mnt/web_j/d39/s01/a000grk9/www/users.php on line 10 Warning: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) in /mnt/web_j/d39/s01/a000grk9/www/users.php on line 14 Warning: MySQL Connection Failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) in /mnt/web_j/d39/s01/a000grk9/www/users.php on line 14 Warning: MySQL: A link to the server could not be established in /mnt/web_j/d39/s01/a000grk9/www/users.php on line 14 Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /mnt/web_j/d39/s01/a000grk9/www/users.php on line 16 here is my php code: *edit: it is messing up the code, but the main stuff is ok** Code:
< html>
< head>
< /head>
< body>
< ?
$conn = mysql_connect("MYSQLHOST", "u70006585", "*****");
mysql_select_db("d60005427", $conn);
$sql = "SELECT * FROM Userlist";
$result = mysql_query($sql);
while( $row = mysql_fetch_assoc($result)) {
foreach($row as $key=>$value) {
print "$key: $value\n";
}
print "
Ive changed the pw to my normal pw, so i know its right. what could cause this? TIA ^dan if you need more info, ask
Last edited by GSXdan; 03-13-2004 at 07:06 PM. |
|
|
|
|
|
#2 |
|
Staff
Premium Member
Join Date: Jul 1999
Location: Arlington, TN
Posts: 5,538
|
It looks like the user or the password that you are using can't connect to the database. All the other errors are because you have no connection to the database and no data.
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|