From bf8ac7551058df22dd5eb712631d9e383fc587a5 Mon Sep 17 00:00:00 2001 From: "barnboy%trilobyte.net" <> Date: Wed, 22 Aug 2001 10:44:14 +0000 Subject: Big checkin of docs to resolve every known outstanding doc bug! Yay release. Still many things to fix. Aren't there always? --- docs/html/win32.html | 358 ++++++++++++++++++++------------------------------- 1 file changed, 143 insertions(+), 215 deletions(-) (limited to 'docs/html/win32.html') diff --git a/docs/html/win32.html b/docs/html/win32.html index d0c1c8064..32f2515e8 100644 --- a/docs/html/win32.html +++ b/docs/html/win32.html @@ -126,7 +126,7 @@ VALIGN="TOP" of the Chapter 3Bugzilla Installation section while performing your Win32 installation.
very skilled Windows Systems - Administrator with both strong troubleshooting abilities and - a high tolerance for pain. Bugzilla on NT requires hacking - source code and implementing some advanced utilities. What - follows is the recommended installation procedure for Win32; - additional suggestions are provided in The Bugzilla FAQAppendix A. Install Apache Web ServerApache Web + Server for Windows, and copy the Bugzilla files + somewhere Apache can serve them. Please follow all the + instructions referenced in Bugzilla Installation + regarding your Apache configuration, particularly + instructions regarding the "AddHandler" - for Windows. + parameter and "ExecCGI".You may also use Internet Information Server or Personal Web - Server for this purpose. However, setup is slightly more - difficult. If ActivePerl doesn't seem to handle your file - associations correctly (for .cgi and .pl files), please - consult You may also use Internet Information Server or Personal + Web Server for this purpose. However, setup is quite + different. If ActivePerl doesn't seem to handle your + file associations correctly (for .cgi and .pl files), + please consult The Bugzilla FAQAppendix A.
"my $webservergid = getgrnam($my_webservergroup); " +>
my $webservergid = getgrnam($my_webservergroup); + |
to
"my $webservergid = $my_webservergroup; " +>
my $webservergid = $my_webservergroup; + |
my $webservergid = 'Administrators' + |
The code above needs testing as well to make sure it is correct.
Some have found success using the commercial product, + Windmail. + You could try replacing your sendmail calls with: +open SENDMAIL, "|\"C:/General/Web/tools/Windmail 4.0 Beta/windmail\" -t > mail.log"; + |
This step is completely optional if you are using IIS or - another web server which only decides on an interpreter - based upon the file extension (.pl), rather than the +> This step is optional if you are using IIS or another + web server which only decides on an interpreter based + upon the file extension (.pl), rather than the "shebang"
If you are using IIS 5.0 or higher, you must add cgi +> If you are using IIS or Personal Web Server, you must add cgi relationships to Properties -> Home directory (tab) -> Application Settings (section) -> Configuration (button), - such as:
my $webservergid = getgrnam($my_webservergroup); - |
to
my $webservergid = 'Administrators' - |
I then ran checksetup.pl -
I removed all the encrypt() -
Example 3-4. Removing encrypt() for Windows NT installationsExample 3-4. Removing encrypt() for Windows NT Bugzilla version + 2.12 or earlier
Replace this: -
I renamed processmail to processmail.pl -
I altered the sendmail statements to windmail: -
-open SENDMAIL, "|\"C:/General/Web/tools/Windmail 4.0 Beta/windmail\" -t > mail.log"; - |
The quotes around the dir is for the spaces. mail.log is for the output -
This was some late breaking information from Jan Evert. Sorry for the lack of formatting. - I'm busy installing bugzilla on a WinNT machine and I thought I'd notify you |