- Code: Select all
$db_url = 'mysql://myid:mypassword@localhost/myid_myDB';
$db_prefix = '';
is giving me this:
- Code: Select all
The MySQL error was: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2).
Currently, the username is myid and the database server is localhost.
Then I put a support ticket in trying to figure out if the server name has been changed from localhost. Localhost was working for me when I installed. The support person told me that it has changed form localhost to 66.249.137.131. But in the myphpAdmin it says the user is kingkey@localhost. Weird????
- Code: Select all
$db_url = 'mysql://myid:mypassword@66.249.137.131/myid_myDB';
$db_prefix = '';
is giving me this:
- Code: Select all
The MySQL error was: Access denied for user 'kingkey'@'dwhs144.dwhs.net' (using password: YES).
Currently, the username is myid and the database server is 66.249.137.131.
I am wondering if I have to delete the db and start fresh. But I am also wondering if I am using the right path. Anyone up for this???

.
