Ignore:
Timestamp:
Dec 23, 2007, 2:55:36 PM (17 years ago)
Author:
george
Message:

Minimanager 0.1.6b

File:
1 edited

Legend:

Unmodified
Added
Removed
  • minimanager/scripts/config.sample.php

    r142 r178  
    11<?php
    2 
    3 include('../registrace/reg_config.php');
    42/*
    53 * Project Name: MiniManager for Mangos Server
     
    1412 */
    1513
    16 $version = "0.1.5b";
     14$version = "0.1.6b";
    1715
    1816//---- SQL Configuration ----
     
    2826$realm_db = Array(
    2927        'addr' => "127.0.0.1:3306",     //SQL server IP:port this realmd located on
    30         'user' => "mangos",                     //SQL server login this realmd located on
    31         'pass' => "mangos",                     //SQL server pass this realmd located on
     28        'user' => "root",                       //SQL server login this realmd located on
     29        'pass' => "pass",                       //SQL server pass this realmd located on
    3230        'name' => "realmd",                     //realmd DB name
    3331        'encoding' => "utf8"            //SQL connection encoding
     
    3735                        'id' => 1,                                      //Realm ID
    3836                        'addr' => "127.0.0.1:3306",     //SQL server IP:port this DB located on
    39                         'user' => "mangos",                     //SQL server login this DB located on
    40                         'pass' => "mangos",                     //SQL server pass this DB located on
     37                        'user' => "root",                       //SQL server login this DB located on
     38                        'pass' => "pass",                       //SQL server pass this DB located on
    4139                        'name' => "mangos",                     //World Database name
    4240                        'encoding' => "utf8",           //SQL connection encoding
    43                         'db_rev' => "UDB rev.0.8.2 rc 327"      //db rev. used
     41                        'db_rev' => "UDB rev.0.8.1"     //db rev. used
    4442                        ),
    4543);
     
    4947                        'id' => 1,                                      //Realm ID
    5048                        'addr' => "127.0.0.1:3306",     //SQL server IP:port this DB located on
    51                         'user' => "mangos",                     //SQL server login this DB located on
    52                         'pass' => "mangos",                     //SQL server pass this DB located on
     49                        'user' => "root",                       //SQL server login this DB located on
     50                        'pass' => "pass",                       //SQL server pass this DB located on
    5351                        'name' => "characters",                 //Character Database name
    5452                        'encoding' => "utf8",           //SQL connection encoding
     
    5957$server = Array(        //if more than one realm used, even if they are on same system new subarray MUST be added.
    6058        1 => array(             //position in array must represent realmd ID, same as in $mangos_db
    61                         'addr' => "wow.zdechov.net",            //Game Server IP - Must be external address
     59                        'addr' => "127.0.0.1",          //Game Server IP - Must be external address
    6260                        'game_port' => 8085,            //Game Server port
    6361                        'term_type' => "SSH",           //Terminal type - ("SSH"/"Telnet")
    6462                        'term_port' => 22,                      //Terminal port
    65                         'rev' => "rev.4752 SD166",              //Mangos rev. used
    66                         'both_factions' => true //Allow to see opponent faction characters. Affects only players. 
     63                        'rev' => "rev.4846 SD152",              //Mangos rev. used
     64                        'both_factions' => true //Allow to see opponent faction characters. Affects only players.
    6765                        ),
    6866);
     
    7068
    7169//---- Mail configuration ----
    72 $admin_mail = "wow@zdechov.net";        //mail used for bug reports and other user contact
     70$admin_mail = "mail@mail.com";  //mail used for bug reports and other user contact
    7371
    7472$mailer_type = "smtp";                  // type of mailer to be used("mail", "sendmail", "smtp")
    75 $from_mail = "wow@zdechov.net";         //all emails will be sent from this email
     73$from_mail = "mail@mail.com";   //all emails will be sent from this email
    7674//smtp server config
    7775$smtp_cfg = array(
     
    8381
    8482//---- New account creation Options ----
    85 if($AllowedRegistrationCountPerDay == 0) $disable_acc_creation = true;  //true = Do not allow new accounts to be created
    86 else $disable_acc_creation = false;
     83$disable_acc_creation = false;  //true = Do not allow new accounts to be created
    8784$send_mail_on_creation = false; //true = send mail at account creation.
    8885$create_acc_locked = 0;                 //if set to '1' newly created accounts will be made locked to 0.0.0.0 IP disallowing user to login.
     
    9794
    9895//---- Layout configuration ----
    99 $title = "WoW server Heroes of Fantasy";
     96$title = "MiniManager for MaNgOs srv.";
    10097$itemperpage = 25;
    10198
    10299$css_template = "Sulfur";               //file/folder name of css tamplate to use from templates directory by default
    103 $language = "csCZ";                     //default site language
    104 $site_encoding = "iso-8859-2";  //default encoding
     100$language = "enUS";                     //default site language
     101$site_encoding = "iso-8859-1";  //default encoding
    105102
    106103//---- IRC Options ------
     
    133130//menu content by user level
    134131$menu_array = Array(
    135         4 => array("SAdmin" ,array(
     132        5 => array("SysOP" ,array(
    136133                                array("index.php", 'main', array()),
    137134                                array("user.php", 'users', array(
     
    152149                                                        array("ticket.php", 'tickets'),
    153150                                                        array("ahstats.php", 'auctionhouse'),
     151                                                        array("events.php", 'events'),
    154152                                                        array("realm.php", 'realm'),
    155153                                                        array("motd.php", 'add_motd'),
     
    171169                                )
    172170                ),
    173         3 => array("Admin" ,array(
     171        4 => array("Admin" ,array(
    174172                                array("index.php", 'main', array()),
    175173                                array("user.php", 'users', array(
     
    190188                                                        array("ticket.php", 'tickets'),
    191189                                                        array("ahstats.php", 'auctionhouse'),
     190                                                        array("events.php", 'events'),
    192191                                                        array("realm.php", 'realm'),
    193192                                                        array("motd.php", 'add_motd'),
     
    209208                                )
    210209                ),
     210        3 => array("BugTracker" ,array(
     211                                array("index.php", 'main', array()),
     212                                array("user.php", 'users', array(
     213                                                        array("user.php", 'accounts'),
     214                                                        array("char_list.php", 'characters'),
     215                                                        array("guild.php", 'guilds'),
     216                                                        array("arenateam.php", 'arena_teams'),
     217                                                        array("honor.php", 'honor'),
     218                                                        array("banned.php", 'banned_list'),
     219                                                        array("cleanup.php", 'cleanup'),
     220                                                        array("stat.php", 'statistics'),
     221                                                        array("javascript:void(0);\" onclick=\"window.open('./pomm/pomm.php', 'pomm', 'Toolbar=0, Location=0, Directories=0, Status=0, Menubar=0, Scrollbar=0, Resizable=0, Copyhistory=1, Width=784, Height=525')", 'player_map'),
     222                                                        ),
     223                                                ),
     224                                array("#", 'tools', array(
     225                                                        array("ssh.php", 'ssh_line'),
     226                                                        array("run_patch.php", 'run_sql_patch'),
     227                                                        array("ticket.php", 'tickets'),
     228                                                        array("ahstats.php", 'auctionhouse'),
     229                                                        array("events.php", 'events'),
     230                                                        array("realm.php", 'realm'),
     231                                                        array("motd.php", 'add_motd'),
     232                                                        array("mail.php", 'mail'),
     233                                                        array("irc.php", 'irc'),
     234array("javascript:void(0);\" onclick=\"window.open('./forum.html', 'forum')", 'forums'),
     235                                                        ),
     236                                                ),
     237                                array("#", 'db', array(
     238                                                        array("item.php", 'items'),
     239                                                        array("creature.php", 'creatures'),
     240                                                        array("game_object.php", 'game_object'),
     241                                                        array("tele.php", 'teleports'),
     242                                                        array("command.php", 'command'),
     243                                                        array("backup.php", 'backup'),
     244                                                        array("repair.php", 'repair'),
     245                                                        ),
     246                                                ),
     247                                )
     248                ),
    211249        2 => array("GameMaster" ,array(
    212250                                array("index.php", 'main', array()),
     
    225263                                                        array("ticket.php", 'tickets'),
    226264                                                        array("ahstats.php", 'auctionhouse'),
     265                                                        array("events.php", 'events'),
    227266                                                        array("motd.php", 'add_motd'),
    228267                                                        array("mail.php", 'mail'),
     
    257296                                                        array("ticket.php", 'tickets'),
    258297                                                        array("ahstats.php", 'auctionhouse'),
     298                                                        array("events.php", 'events'),
    259299                                                        array("motd.php", 'add_motd'),
    260300//                                                      array("mail.php", 'mail'),
     
    285325                                                        array("irc.php", 'irc'),
    286326                                                        array("command.php", 'command'),
     327                                                        array("events.php", 'events'),
    287328array("javascript:void(0);\" onclick=\"window.open('./forum.html', 'forum')", 'forums'),
    288329                                                        ),
     
    293334);
    294335
    295 $debug = false; //set to true if full php debugging requierd.
     336$debug = true; //set to true if full php debugging requierd.
    296337?>
Note: See TracChangeset for help on using the changeset viewer.