| 99 | |
| 100 | == Mantis Configuration == |
| 101 | === General Configuration === |
| 102 | * Copy `c;\www\mantisbt\config_inc.php.sample` to `c;\www\mantisbt\config_inc.php` |
| 103 | * Open `c;\www\mantisbt\config_inc.php` and edit the following options: |
| 104 | * Database Configuration |
| 105 | * Email Configuration |
| 106 | * Open Open `c:\www\apache\conf\extra\httpd-xampp.conf` |
| 107 | * Add the following statements |
| 108 | {{{ |
| 109 | Alias /mantis "C:/www/mantisbt/" |
| 110 | <Directory "C:/www/mantisbt"> |
| 111 | AllowOverride All |
| 112 | Order allow,deny |
| 113 | Allow from all |
| 114 | </Directory> |
| 115 | }}} |
| 116 | * Run an internet browser |
| 117 | * Visit [http://localhost/mantis/admin/install.php] and |
| 118 | * Fill configuration options |
| 119 | * Submit them |
| 120 | * Remove (or rename) `c:\www\mantisbt\admin` |
| 121 | * Visit [http://localhost/mantis] to change administrator's password. |
| 122 | * ID: administrator |
| 123 | * Password: root |
| 124 | |
| 125 | === E-mail Configuration === |
| 126 | * Create a G-Mail account |
| 127 | * Make it less secure (Reference: Allowing less secure apps to access your account) |
| 128 | * Open `c:\www\php\PEAR\Mail.php` |
| 129 | * Add `static` to `function &factory($driver, $params = array())` |
| 130 | {{{ |
| 131 | static function &factory($driver, $params = array()) |
| 132 | }}} |