码迷,mamicode.com
首页 > 其他好文 > 详细

mantis设置

时间:2017-10-17 12:46:24      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:mantis


  1. 下载并安装EasyPHP-Devserver

  2. 更改eds-binaries\httpserver\apache2425vc11x86x170928133524\conf目录下面的httpd.ini文件。以便发布mantis使其在其他机器上可正常访问。


  3. Listen 127.0.0.1:8080
    
    #
    Listen 192.168.142.37:8080
    
    #
  4. <VirtualHost 192.168.142.37>
    	DocumentRoot "C:/Program Files/EasyPHP-Devserver-17/eds-www/mantisbt-2.6.0"
    	ServerName mantisserver
    	<Directory "C:/Program Files/EasyPHP-Devserver-17/eds-www/mantisbt-2.6.0">
    		Options FollowSymLinks Indexes ExecCGI
    		AllowOverride All
    		Order deny,allow
    		Allow from 127.0.0.1
    		Allow from all
    		Require all granted
    	</Directory>
    </VirtualHost>
  5. 更改eds-binaries\php\php5630vc11x86x170928133524下面的PHP.ini,更改 \eds-www\mantisbt-2.6.0\config下面的config_inc.php,这样邮件功能可用。

  6. [mail function]
    ; For Win32 only.
    
    SMTP = 
    
    smtp_port = 25
    
    
    sendmail_from =
  7. $g_phpMailer_path =‘C:\Program Files\EasyPHP-Devserver-17\eds-www\mantisbt-2.6.0\vendor\phpmailer\phpmailer‘; 
    $g_use_phpMailer = ON;
    $g_smtp_host=‘‘; //设置邮箱的发送地址
    $g_smtp_username=‘‘;          //设置邮箱的用户名
    $g_smtp_password=‘‘; //设置邮箱的密码
    $g_phpMailer_method		= PHPMAILER_METHOD_SMTP; # or PHPMAILER_METHOD_SMTP, PHPMAILER_METHOD_SENDMAIL
    $g_webmaster_email      = ‘‘;
    $g_administrator_email  = ‘‘;
    $g_from_name            = ‘Mantis Bug Tracker‘;
    $g_from_email           = ‘‘;	# the "From: " field in emails
    $g_return_path_email    = ‘‘;	# the return address for bounced mail
    $g_email_receive_own    = OFF;
    $g_email_send_using_cronjob = OFF;
  8. 大功告成。


mantis设置

标签:mantis

原文地址:http://kingfisher.blog.51cto.com/2740790/1973118

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!