Status
Not open for further replies.

dban

New Member
1
2012
0
0
PHP:
# Database
define('WCDDL_DB_DSN', 'mysql.hourb.com;dbname=mydbname');
define('WCDDL_DB_USER', 'u651576126_wcddl');
define('WCDDL_DB_PASS', '*********');
define('WCDDL_DB_PREFIX', 'wcddl_');
this is my conf and the result is Database Error. (pass hiden) How to fix it?
 
4 comments
this define('WCDDL_DB_DSN', 'mysql.hourb.com;dbname=mydbname') doesn't look like a valid mysql host, try only mysql.hourb.com
 
You should be able to leave it as default localhost

PHP:
mysql:host=localhost;dbname=mydbname

Replace mydbname with your database name
 
Status
Not open for further replies.
Back
Top