Changeset 19 for minimanager/scripts/config.sample.php
- Timestamp:
- Aug 13, 2007, 9:05:34 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
minimanager/scripts/config.sample.php
r14 r19 9 9 */ 10 10 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 14 23 $realm_db = Array( 15 24 'addr' => "127.0.0.1:3306", //SQL server IP:port this realmd located on 16 'user' => " mangos", //SQL server login this realmd located on17 'pass' => " mangos", //SQL server pass this realmd located on25 'user' => "root", //SQL server login this realmd located on 26 'pass' => "pass", //SQL server pass this realmd located on 18 27 'name' => "realmd", //realmd DB name 19 28 'encoding' => "utf8" //SQL connection encoding … … 24 33 'id' => 1, //Realm ID 25 34 'addr' => "127.0.0.1:3306", //SQL server IP:port this DB located on 26 'user' => " mangos", //SQL server login this DB located on27 'pass' => " mangos", //SQL server pass this DB located on35 'user' => "root", //SQL server login this DB located on 36 'pass' => "pass", //SQL server pass this DB located on 28 37 'name' => "mangos", //World Database name 29 38 'encoding' => "utf8", //SQL connection encoding 30 'db_rev' => "SDB rev.2 02" //db rev. used39 'db_rev' => "SDB rev.24" //db rev. used 31 40 ), 32 41 ); … … 39 48 'term_type' => "SSH", //Terminal type - ("SSH"/"Telnet") 40 49 'term_port' => 22, //Terminal port 41 'rev' => "rev.42 03", //Mangos rev. used50 'rev' => "rev.4285", //Mangos rev. used 42 51 'both_factions' => false //Allow to see opponent faction characters. Affects only players. 43 52 ), … … 47 56 48 57 //---- Mail configuration ---- 49 $admin_mail = " noname@company.com"; //mail used for bug reports and other user contact58 $admin_mail = "root@admin.com"; //mail used for bug reports and other user contact 50 59 51 60 $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 email61 $from_mail = "mail@mail.com"; //all emails will be sent from this email 53 62 //smtp server config 54 63 $smtp_cfg = array( 55 'host' => "smtp. company.com", //smtp server64 'host' => "smtp.mail.com", //smtp server 56 65 'port' => 25, //port 57 66 'user' => "", //username - use only if auth. required … … 73 82 74 83 //---- Layout configuration ---- 75 $title = " WoW server";84 $title = "MiniManager for MaNgOs srv."; 76 85 $itemperpage = 25; 77 86 78 87 $css_template = "Sulfur"; //file/folder name of css tamplate to use from templates directory by default 79 88 $language = "enUS"; //default site language 80 $site_encoding = "iso-8859- 2"; //default encoding89 $site_encoding = "iso-8859-1"; //default encoding 81 90 82 91 //---- IRC Options ------
Note:
See TracChangeset
for help on using the changeset viewer.