I need help, when I register an account on my adoptables site, it fails to make a forum account and says "unable to create forum account". I need a solution, can someone please help?
My installation is on the root directory and  the forum is on /forum. My host is x10Hosting.
Here's my config_forums.php file:
	Code:
	<?php
//Mysidia Adoptables Site Configuration File
//Forum Integration Info: MyBB
$mybbenabled = 1; // 0 = disabled, 1 = enabled
$mybbhost = 'localhost'; // Consult your host if you believe this field is not localhost
$mybbuser = 'coolgem_fpets';
$mybbpass = '(password)';
$mybbdbname = 'coolgem_mybb420';
$mybbpath = 'forum';
$mybbprefix = 'mybb_'; // This is the default setting as you install MyBB forum, feel free changing it if you have a different prefix
$mybbremember = -1;  		
?>
 And my config.php file
	Code:
	<?php
//Mysidia Adoptables Site Configuration File
define('DBHOST', 'localhost');             //DB Hostname
define('DBUSER', 'coolgem_fpets');             //DB Username
define('DBPASS', '(password)');             //DB Password
define('DBNAME', 'coolgem_pets');             //Your database name
define('DOMAIN', 'coolgemscherry.x10.mx');             //Your domain name (No http, www or . )
define('SCRIPTPATH', '');     //The folder you installed this script in
define('PREFIX', 'adopts_');
?>