Author: EMU (Huang Xiwei)
Finally, go to a new project server, move the old things to the new server. I encountered some problems when I move Bugzilla. The original server is installed on the 2.18RC2 version. The Chinese template used is 2.18rc3. It works well on the old server, but the model version of the Chinese version on the new server cannot be released on the IIS, always reported. An access denied error. I went to the 2.18rc3 version of Bugzilla, still the same problem. I was very uncomfortable, I tried it several times, change Apache, the result and IIS grab the port, simply unloading IIS.
Follow http://www.bugzilla.org/docs/win32install.html step by step. When I finally released the first page of the release, I saw an error page. Enter Program Files / Apache Group / Apache2 / Logs Look at Error.log:
[Tue Mar 15 18:55:04 2005] Child 4488: Starting 250 Worker Threads. [Tue Mar 15 18:55:10 2005] [Error] [Client 127.0.0.1] (OS 3) The system cannot find Specify path. : COULDN'T CREATE Child Process: 720003: Index.cgi [Tue Mar 15 18:55:10 2005] [os 3) The system cannot find the specified path. : c: /bugzilla-2.18/index.cgi [Tue Mar 15 18:59:05 2005] Parent: Received Shutdown Signal - Shutting Down The Server. [Tue Mar 15 18: 59:05 2005] Child 4488: EXIT EVENT SIGNALED. CHILD Process is ending. [Tue Mar 15 18:59:06 2005] Child 4488: Released The Start Mutex
COULDN '' Create Child Process - It turned out that it was unable to create a child process. It seems that no perl.exe found. On this issue, the installation guide says:
In Order for ScriptInterpretersource Registry-strict to work, you also need to add an entry to the registry so apache will use perl to execute .cgi files.
Create a key hkey_classes_root / .cgi / shell / execcgi / command with the default value of the full path of perl.exe with a -t parameter. For example c: /perl/bin/perl.exe -t
Create a key hkey_classes_root / .cgi / shell / execcgi / command, so I created HKEY_CLASSES_ROOT / .CGI / shell / execcci item and added a Command's Key. However, since I have an error, try another understanding, create a hkey_classes_root / .cgi / shell / execcgi / command item, and give a C: /Perl/bin/perl.exe -t on the default key below. Heavy up Apache. Sure enough, it is OK. The description of this document should be problematic. Finally, SENDMAIL was downloaded at http://www.glob.com.au/sendmail/, unzipped to C: / usr / lib, modify SMTP_SERVER, Default_Domain, auth_username, auth_password in Sendmail.ini, and two defaults Note with a semicolon, if you use the SMTP that requires authentication, remove the semicolon and fill in the correct username password), open the 25 port of the server firewall. Try to change a bug, the email is sent, and it is very good.
Author: EMU (Huang Xiwei)