我想将Bugzilla安装到我的计算机上。我安装了WAMP服务器。有没有办法使用WAMP服务器添加Bugzilla?
答案 0 :(得分:3)
以下是在Windows环境中安装Bugzilla的文档:https://bugzilla.readthedocs.io/en/5.0/installing/windows.html
在本文档中,有一个特殊页面用于配置Apache(嵌入在WAMP中)以运行您的bugzilla实例:https://bugzilla.readthedocs.io/en/5.0/installing/apache-windows.html#apache-windows
你必须:
- 在开头取消注释LoadModule cgi_module modules / mod_cgi.so 用于启用CGI支持的文件。
- 取消注释
Left column
将.cgi文件注册为CGI脚本。为了让这个处理程序起作用,你 必须在Windows注册表中创建一个名为的密钥AddHandler cgi-script .cgi
使用默认值 使用-T参数指向perl.exe的完整路径。例如HKEY_CLASSES_ROOT\.cgi\Shell\ExecCGI\Command
如果你使用ActivePerl,或者C:\Perl\bin\perl.exe -T
如果您使用Strawberry Perl。- 为Bugzilla添加别名和目录:
httpd.conf:
C:\Strawberry\perl\bin\perl.exe -T
然后重启Apache。