Ignore:
Timestamp:
Aug 13, 2007, 9:05:34 PM (17 years ago)
Author:
george
Message:

Aktualizace MaNGOS Minimanageru na verzi 0.1.4a.

File:
1 edited

Legend:

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

    r14 r19  
    99 */
    1010
    11 $version = "0.1.3d";
    12 
    13 //---- MySQL Configuration ----
     11$version = "0.1.4a";
     12
     13//---- SQL Configuration ----
     14
     15/* SQL server type  :
     16*  "MySQL" - Mysql
     17*  "PgSQL" - PostgreSQL
     18*  "MySQLi" - MySQLi
     19*  "SQLLite" - SQLLite
     20*/
     21$db_type = "MySQL";
     22
    1423$realm_db = Array(
    1524        'addr' => "127.0.0.1:3306",     //SQL server IP:port this realmd located on
    16         'user' => "mangos",                     //SQL server login this realmd located on
    17         'pass' => "mangos",                     //SQL server pass this realmd located on
     25        'user' => "root",                       //SQL server login this realmd located on
     26        'pass' => "pass",                       //SQL server pass this realmd located on
    1827        'name' => "realmd",                     //realmd DB name
    1928        'encoding' => "utf8"            //SQL connection encoding
     
    2433                        'id' => 1,                                      //Realm ID
    2534                        'addr' => "127.0.0.1:3306",     //SQL server IP:port this DB located on
    26                         'user' => "mangos",                     //SQL server login this DB located on
    27                         'pass' => "mangos",                     //SQL server pass this DB located on
     35                        'user' => "root",                       //SQL server login this DB located on
     36                        'pass' => "pass",                       //SQL server pass this DB located on
    2837                        'name' => "mangos",                     //World Database name
    2938                        'encoding' => "utf8",           //SQL connection encoding
    30                         'db_rev' => "SDB rev.202"       //db rev. used
     39                        'db_rev' => "SDB rev.24"        //db rev. used
    3140                        ),
    3241);
     
    3948                        'term_type' => "SSH",           //Terminal type - ("SSH"/"Telnet")
    4049                        'term_port' => 22,                      //Terminal port
    41                         'rev' => "rev.4203",            //Mangos rev. used
     50                        'rev' => "rev.4285",            //Mangos rev. used
    4251                        'both_factions' => false        //Allow to see opponent faction characters. Affects only players. 
    4352                        ),
     
    4756
    4857//---- Mail configuration ----
    49 $admin_mail = "noname@company.com";     //mail used for bug reports and other user contact
     58$admin_mail = "root@admin.com"; //mail used for bug reports and other user contact
    5059
    5160$mailer_type = "smtp";                  // type of mailer to be used("mail", "sendmail", "smtp")
    52 $from_mail = "noname@company.com";      //all emails will be sent from this email
     61$from_mail = "mail@mail.com";   //all emails will be sent from this email
    5362//smtp server config
    5463$smtp_cfg = array(
    55                         'host' => "smtp.company.com",   //smtp server
     64                        'host' => "smtp.mail.com",      //smtp server
    5665                        'port' => 25,                           //port
    5766                        'user' => "",                           //username - use only if auth. required
     
    7382
    7483//---- Layout configuration ----
    75 $title = "WoW server";
     84$title = "MiniManager for MaNgOs srv.";
    7685$itemperpage = 25;
    7786
    7887$css_template = "Sulfur";               //file/folder name of css tamplate to use from templates directory by default
    7988$language = "enUS";                     //default site language
    80 $site_encoding = "iso-8859-2";  //default encoding
     89$site_encoding = "iso-8859-1";  //default encoding
    8190
    8291//---- IRC Options ------
Note: See TracChangeset for help on using the changeset viewer.