How so?
WP-CONFIG.PHP :
<?php
// ** MySQL settings ** //
define(‘ewoky_blog’, ‘wordpress’); // The name of the database
define(‘ewoky_martyn’, ‘username’); // Your MySQL username
define(‘xxxxxxxx’, ‘password’); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
Seems correct to me, where is it wrong?
It seems correct no?
ewoky_blog
Users in blog
ewoky_martyn (Privileges: ALL PRIVILEGES)
Connection Strings
Perl $dbh = DBI->connect(“DBI:mysql:ewoky_blog:localhost”,”ewoky_martyn”,”<PASSWORD HERE>”);
PHP $dbh=mysql_connect (“localhost”, “ewoky_martyn”, “<PASSWORD HERE>”) or die (‘I cannot connect to the database because: ‘ . mysql_error());
mysql_select_db (“ewoky_blog”);