Introduction to Mantisbt installation and deployment

Personally, I have always wanted to introduce a defect management system for the nocloud project. I have used Jira before , and I feel that it is OK. Unfortunately, Jira is charged. After searching on the Internet, I found the open source and free Mantisbt , and decided to try it out. Coincidentally, I just built an environment of apache2.2+php5.3.6+MySQL5.5 , which can be used.

Like other php projects, the installation and deployment of mantisbt is also very simple, and there are many detailed tutorials on the Internet, so I won't repeat them here.

Go to the official website http://www.mantisbt.org/ to download the latest compressed package. The latest stable version is 1.2.8 . The download address is as follows: https://sourceforge.net/projects/mantisbt/files/mantis-stable/

Installation steps and configuration related information website: http://www.mantis.org.cn/ , the information in this website is basically enough to solve all problems. My complete novice installation and deployment of php is also very smooth. It should be noted that after installation, it may be necessary to configure the config_inc.php file. My config file is as follows:

  1. <?php 
  2.     $g_hostname = 'localhost'
  3.     $g_db_type = 'mysql'
  4.     $g_database_name = 'bugtracker'
  5.     $g_db_username = 'root'
  6.     $g_db_password  =  'root' ; //The above is about the configuration of the database connection 
  7.     $g_signup_use_captcha   = OFF; //The default is ON (whether captcha is enabled) 
  8.     $g_phpMailer_method     = PHPMAILER_METHOD_SMTP; # or PHPMAILER_METHOD_SMTP, PHPMAILER_METHOD_SENDMAIL(邮件发送方式) 
  9.     $g_smtp_host            = 'smtp.qq.com';            # used with PHPMAILER_METHOD_SMTP 
  10.     $g_smtp_username         =  'Email username' ; # used with PHPMAILER_METHOD_SMTP 
  11.     $g_smtp_password         =  'Mailbox password' ; # used with PHPMAILER_METHOD_SMTP 
  12.     $g_administrator_email  = '[email protected]'
  13.     putenv( "TZ=Asia/Shanghai" ); (The default time zone setting is used to solve the interface SYSTEM WARNING problem. If there is still a warning, you need to modify the date .timezone =Asia/Shanghai  in the php.ini file )
  14. ?> 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326434015&siteId=291194637