• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

forum problem

Magictibiaman

New Member
Joined
May 25, 2009
Messages
371
Reaction score
0
how come my forum won't load

Code:
<?
//Host of your database
$dbhost = "".$config['server']['localhost']."";
//Login yo your database
$dblogin = "".$config['server']['root']."";
//Password to your database
$dbpass = "".$config['server']['xxxxxxx']."";
//Name of your dataabse
$dbname = "".$config['server']['theforgottenserver']."";
//Set to true when you configure everything, the forum will start working.
$install = true;

//Max amount of threads per page
$max_threads = 10;
//Max amount of posts per page
$max_posts = 10;
//Name of the server
$world_name = "".$config['server']['Immortal Guardians']."";
//Login to admin
$admin_login = "".$config['forum']['xxxxx']."";
//Password to admin
$admin_password = "".$config['forum']['xxxxx']."";

//Dont touch
	mysql_connect($dbhost, $dblogin, $dbpass);
	mysql_select_db($dbname);
?>
 
Back
Top