Changes between Version 11 and Version 12 of SvrInstall


Ignore:
Timestamp:
May 23, 2016 8:19:54 AM (9 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvrInstall

    v11 v12  
    5252== Mantis Installation == 
    5353* Download [http://https://www.mantisbt.org/ MantisBT.zip] and unzip it. 
    54 * Rename ''mantisbt`` from unzipped directory to `mantis` 
    55 * Move'`mantis` directory to `c:\www`  
     54* Rename ''mantisbt'' from unzipped directory to `mantisbt` 
     55* Move'`mantisbt` directory to `c:\www`  
    5656 
    5757== Apache Configuration == 
     
    8989  * 제어판 > 시스템 및 보안 > Windows 방화벽 > 고급설정 > 인바운드 규칙 > 우클릭 > 새규칙 > 포트 > TCP 특정포트 3690 > 연결허용 > 이름지정 
    9090 
    91 == !MySQL Configuration == 
    92 * Open 'C:\!ProgramData\!MySQL\!MySQL Server 5.7\my.ini` 
     91== MySQL Configuration == 
     92* Open 'C:\!ProgramData\MySQL\MySQL Server 5.7\my.ini` 
    9393* Edit (or Add) the following options: 
    9494{{{ 
     
    9797* Add Mantis database 
    9898* Add Mantis database administrator 
     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{{{ 
     109Alias /mantis "C:/www/mantisbt/" 
     110<Directory "C:/www/mantisbt"> 
     111AllowOverride 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}}}