Jump to content

Recommended Posts

Here is my connection.php file...

 

<?php

$con = mysql_connect("p50mysql151.secureserver.net", "te****", "*********");
$db = mysql_select_db("texting");

?>

 

But when I attempt to connect, I get this message.

 

Can't connect to MySQL server on 'localhost' (10061)

 

Why is the script trying to connect to localhost?  It should be connecting to p50mysql151.secureserver.net, which is what I got from my host.

Link to comment
https://forums.phpfreaks.com/topic/103423-why-is-it-using-localhost/
Share on other sites

There is an sql.safe_mode setting that will cause the symptom you describe, but this is rarely set.

 

It is more likely that the whole error message is referring to a different statement in your code. Please post the whole error message.

The posted code does not contain any usage of the mysql_error() function so it is not the code that caused and output the posted error. Either your connection.php file is not being used or there is some other code attempting to connect to the database server or as I wrote, sql.safe_mode might be on.

Searching for that error, yields this - http://dev.mysql.com/doc/refman/5.0/en/old-client.html

 

The client is php's mysql client library. The version of it that your version of php is using it not new enough for the version of mysql. The link I posted gives some things to do to work around the problem.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.