<?php
//--------------------------------------------------------------- Database Settings -----------------------------------------------------------------//
//---------- MySQL configuration ----------//
$dbhost = "localhost"; //MySQL host name (usually localhost)
$dbuser = "root"; //MySQL user name (usually root)
$dbpass = "password"; //MySQL password (pass used for db access)
$acct_db = "accounts"; //account database name
$char_db = "characters"; //character database name
$world_db = "world"; //world database name
//-----------------------------------------//
//---------- Game server configuration ----------//
$ascent_rev = "core version"; //set ascent revision
$db_rev = "database version"; //set database revision
$server = "localhost"; //address of your game server(same as your realmlist.wtf [note:do not include the set realmlist part])
$port = 8129; //server port
//-----------------------------------------------//
//---------- Backup configuration ----------//
$backup_dir = "./backup"; //make sure webserver has permission to write/read it!
//list of tables from account db that will be saved on backup
$tables_backup_acct = Array( "accounts", "ipbans"
);
//list of tables in character db that will be saved on backup
$tables_backup_char = Array( "account_data", "account_forced_permissions", "auctions", "characters", "charters", "gm_tickets", "guilds", "guild_bankitems",
"guild_banklogs", "guild_banktabs", "guild_checkpoints", "guild_data", "guild_logs", "guild_ranks", "mailbox", "playercooldownitems",
"playercooldownsecurity", "playeritems", "playerpets", "playerpetspells", "playersummonspells", "questlog", "social", "tutorials"
);
//------------------------------------------//
//---------------------------------------------------------------------------------------------------------------------------------------------------//
//--------------------------------------------------------------- Website Settings ------------------------------------------------------------------//
//---------- Global Settings ----------//
$url = "www.google.com/webam"; //address of your website plus path to webam (ex:www.google.com/webam)
$realm_name = "realm name"; //set realm name
$stats = false; //true = parsing main index page from ascents stats.xml dump
$timezone = 'EST'; //set your timezone here (will be three cap. letters) ex: EST, UTC, PST, ...
//-------------------------------------//
//---------- Layout configuration ----------//
$title = "display's title of page, for internet titling"; //page title
$itemperpage = 15; //number of items to display per page
//------------------------------------------//
//---------- New account creation options ----------//
$disable_acc_creation = false; //false = allow new accounts to be created
$validate_mail_host = false; //false = do not use email validation for account creation
$limit_acc_per_ip = false; //true = limit to one account per IP
$enable_captcha = true; //false = no security image check (enable for protection against 'bot' registrations)
//--------------------------------------------------//
//---------- External Links ----------//
$custom = "Links"; //title to display in header -->default set to links
$link1 = ""; //format for links:<a target=\"_blank\" href=\"http://your.site.com/\">your site name</a>
$link2 = ""; //insert your link where it says 'http://your.site.com', and your menu link name where it says 'your site name'
$link3 = ""; //input links to external sites. forums, item/quest reference, add-ons, whatever you want --><--
//------------------------------------//
//---------- Mail configuration ----------//
//php mail config
$admin_mail = "email@domain.com"; //receiving email address
$mailer_type = "smtp"; //("mail", "sendmail", "smtp")
$from_mail = "email@localhost.com"; //all emails will be sent from this email
//smtp mail config
$smtp_host = "localhost"; //mailer host
$smtp_port = 25; //mailer port
$smtp_username = "mail@domain.com"; //mailer user name
$smtp_password = "mailpassword"; //mailer password
//----------------------------------------//
//---------- override PHP error reporting ----------//
$debug = true; //true will set error reporting to E_ALL ^ E_NOTICE
//--------------------------------------------------//
//---------------------------------------------------------------------------------------------------------------------------------------------------//
?>