Hi, I need to modify wp-config.php and need help with the php.
Basically this wordpress blog is on ipowerweb and I need to work around the problem where you can only have 50,000 database connections an hour. Something to do with max_resource.
I want to change this:
define('DB_NAME', 'mydbname'); // The name of the database
define('DB_USER', 'mydbuser'); // Your MySQL username
define('DB_PASSWORD', 'mypass'); // ...and password
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
So that it calls more than one database user.
I'm using WP 2.0.
Anyone know how that might be accomplished?