Attachment 127199
this my config.php
Code:<?PHP // Multi server support $_config['server_feeds'] = array( 'ForRZ' => array( 'Official Cabal Online', 'http://192.168.56.1/backend/', 'localhost', '80', 'About This Page: ', 'Official Cabal Online ' ), 'For RZ2' => array( 'Official Cabal Online', 'http://192.168.56.1/backend/', 'localhost', '8080', 'About This Page: ', 'Official Cabal OFFLINE ' ), ); $_config['default_feed'] = 'ForRZ'; // End multi server support $_config['cross_domain'] = true; // Cache sytem $_config['nocache'] = true; $_config['curl'] = false; // this is a faster URL fetch make sure u have PHP curl turned on. $_config['2ndLevelCacheTime'] = 24 * 3600; // 3600 = 1 hour $_config['1stLevelCacheTime'] = 5 * 60; // 60 = 1 minute $_config['cache_manger_pass'] = '0000'; $_config['hosted'] = true; // host some js libraries via google :p // CDN SETTING $_config['cdn_hosting'] = false; //not used $_config['cdn_host'] = 'http://192.168.56.1'; //not used $_config['server_name'] = 'Cabal Online'; $_config['template'] = 'default'; $_config['extension'] = '.rz'; $_config['url_separator'] = '/'; $_config['channel_ip'] = '192.168.56.1'; // usernames passwords lengths $_config['username'] = '[2,20]'; $_config['password'] = '[5,20]'; // default module $_config['front_page'] = 'home'; //forum link $_config['forum_link'] = 'http://forum.ragezone.com/'; $_config['close_site'] = false; $_config['redirect'] = 'http://192.168.56.1'; $_config['imagehost'] = 'http://i.imgur.com/'; // image hosting service [ don't change ] //feeds $_config['news_feed'] = 'http://forum.ragezone.com/external.php?type=rss2&forumids=451'; $_config['guide_feed'] = 'http://forum.ragezone.com/external.php?type=rss2&forumids=451'; //twitter $_config['tweeter'] = 'ragezone';//not used // facebook $_config['fb_fanpage_id'] = '162939787811'; $_config['fb_application_key'] = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'; //download client setup $_config['downloads']['fullclient'] = array( 'Not Available' => '#', ); $_config['downloads']['patchclient'] = array( 'Not Available' => '#', ); ?>
and this is my backend>config.php
please help. anyone can tel what the problem is? I can't register a new account..Code:?PHP $_config['server_type'] = 'cabal'; // What folder you use from CabalToolz folder, default = cabal $_config['dbdebug'] = 0; $ADODB_CACHE_DIR = 'tmp/'; error_reporting(1); $_config['db_type'] = 'MSSQL'; $_config['db_host'] = "192.168.56.1"; $_config['db_user'] = 'sa'; $_config['db_pass'] = '123456789'; $_config['DB1'] = "ACCOUNT"; $_config['DB2'] = "server01"; $_config['DB3'] = "CABALCASH"; // Access Info $_config['TBL_PRE'] = 'MU'; $_config['ServerIDX'] = 1; $_config['admins'] = array('youradmin'); $_config['gms'] = array('yourgm'); // Server Info $stats['Base Exp Rate'] = '1500x'; $stats['Skill Rate'] = '600x'; $stats['Craft Rate'] = '500x'; $stats['Drop Rate'] = '100x'; $stats['Alz Bomb Rate'] = '2x'; $stats['Alz Drop Rate'] = '85x'; $stats['Maxim Resets'] = '6000'; $stats['Points Per Reset'] = '200'; $stats['Starting Class Rank'] = '11'; $stats['Starting Alz'] = '1 Million'; $stats['Starting Gears'] = 'Full Set+Weap'; $stats['Starting Honor'] = '10'; $stats['Starting Free Points'] = '300'; $stats['Starting Account'] = 'Premium'; date_default_timezone_set('Europe/Bucharest'); $_config['ssh_user'] = 'root'; $_config['ssh_ip'] = '1'; $_config['ssh_pass'] = ''; $_config['service_id'] = '09'; $_config['service'] = array( '10'=>array('Tierra Gloriosa(NW)',100), '01'=>array('Channel 1(Normal) ',100), '02'=>array('Channel 2(Hardcore) ',100), '04'=>array('Channel 3(Special)',100), ); // rankings setup $_config['show_rank_skills'] = true; $_config['show_rank_equip'] = true; $_config['reg_open'] = true; $_config['reg_md5'] = false; //keep false for cabal $_config['adm_logs'] = 'userlog'; $_config['language'] = 'English,Romanian,Chinese,Spanish,Greek'; //separate languages with , (comma) $_config['ucp_pk_pay'] = 50000; $_config['ucp_allow_warp'] = true; // true/false enable character warps $_config['max_stats'] = 32768*2; // LEvel Reset config $_config['ucp_lvl_allow'] = true; // true of false $_config['ucp_lvl_level'] = 160; $_config['ucp_lvl_payment'] = 50000000; $_config['ucp_lvl_inv_check'] = false; // if true will check if inventory and equipments are empty $_config['ucp_lvl_keep_stat'] = false; // if true keep stats is enabled $_config['ucp_lvl_magic_clear'] = false; // if true will remove magic list $_config['ucp_lvl_limit'] = 100; // Limit number for resets //MU CASH $_config['autocash'] = false; $_config['autocash_time'] = 60; //in minutes $_config['autocash_max'] = 10; //maximum cash given per day $_config['autocash_give'] = 0; //pin load system $_config['reseller_load'] = array(10,50,100,200,300); $_config['reseller_pay'] = 1; // just a joke. this is the conversion rate. $_config['pinLoad_pay'] = 1; //daopay $_config['daopay_application_code'] = ''; $_config['daopay_application_code_extra'] = ''; $_config['daopay_product_code'] = ''; $_config['daopay_rate'] = 5; // WEB SHOP $_config['enable_shop'] = true; $_config['mucash_rate'] = 20; // 1$ $_config['mucash_auto'] = true; // auto database update or just save to file. ?>



Reply With Quote

