diff options
author | barnboy%trilobyte.net <> | 2001-04-25 14:11:45 +0000 |
---|---|---|
committer | barnboy%trilobyte.net <> | 2001-04-25 14:11:45 +0000 |
commit | 2d4d7c92bfb4ce18e4413b1e66f30bd62a44e6ff (patch) | |
tree | a2d82b3f59cc18d708502912933cb5689fc619fd /docs/html/readme.windows.html | |
parent | 064f6ba69bb6e46e41427cfbccb7a6839e75110e (diff) | |
download | bugs-2d4d7c92bfb4ce18e4413b1e66f30bd62a44e6ff.tar bugs-2d4d7c92bfb4ce18e4413b1e66f30bd62a44e6ff.tar.gz bugs-2d4d7c92bfb4ce18e4413b1e66f30bd62a44e6ff.tar.bz2 bugs-2d4d7c92bfb4ce18e4413b1e66f30bd62a44e6ff.tar.xz bugs-2d4d7c92bfb4ce18e4413b1e66f30bd62a44e6ff.zip |
Updated Bugzilla Guide and README to fix bug 76156, bug 76841, and bug 26242.
The README is now gutted, pointers to Guide. Also some new sections added,
old ones fixed, and notes appended to deprecated sections I've not yet had
the heart to remove.
Diffstat (limited to 'docs/html/readme.windows.html')
-rw-r--r-- | docs/html/readme.windows.html | 147 |
1 files changed, 145 insertions, 2 deletions
diff --git a/docs/html/readme.windows.html b/docs/html/readme.windows.html index b89c1c7d1..dc29a39ef 100644 --- a/docs/html/readme.windows.html +++ b/docs/html/readme.windows.html @@ -4,7 +4,7 @@ >Win32 (Win98+/NT/2K) Installation</TITLE ><META NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.61 +CONTENT="Modular DocBook HTML Stylesheet Version 1.64 "><LINK REL="HOME" TITLE="The Bugzilla Guide" @@ -510,7 +510,7 @@ CLASS="TIP" >Tip: </B > From Andrew Pearson: <A -NAME="AEN304" +NAME="AEN624" ></A ><BLOCKQUOTE CLASS="BLOCKQUOTE" @@ -548,6 +548,149 @@ CLASS="COMMAND" </P ></BLOCKQUOTE ></DIV +><DIV +CLASS="TIP" +><BLOCKQUOTE +CLASS="TIP" +><P +><B +>Tip: </B +>"Brian" had this to add, about upgrading to Bugzilla 2.12 from previous versions:</P +><A +NAME="AEN634" +></A +><BLOCKQUOTE +CLASS="BLOCKQUOTE" +><P +> Hi - I am updating bugzilla to 2.12 so I can tell you what I did (after I + deleted the current dir and copied the files in). + </P +><P +> In checksetup.pl, I did the following... + </P +><DIV +CLASS="PROCEDURE" +><OL +TYPE="1" +><LI +><TABLE +BORDER="0" +BGCOLOR="#E0E0E0" +WIDTH="100%" +><TR +><TD +><PRE +CLASS="PROGRAMLISTING" +>my $webservergid = getgrnam($my_webservergroup); + </PRE +></TD +></TR +></TABLE +><P +>to</P +><TABLE +BORDER="0" +BGCOLOR="#E0E0E0" +WIDTH="100%" +><TR +><TD +><PRE +CLASS="PROGRAMLISTING" +>my $webservergid = 'Administrators' + </PRE +></TD +></TR +></TABLE +></LI +><LI +><P +> I then ran checksetup.pl + </P +></LI +><LI +><P +> I removed all the encrypt() + <DIV +CLASS="EXAMPLE" +><A +NAME="AEN646" +></A +><P +><B +>Example 2-1. Removing encrypt() for Windows NT installations</B +></P +><P +> Replace this: + <TABLE +BORDER="0" +BGCOLOR="#E0E0E0" +WIDTH="100%" +><TR +><TD +><PRE +CLASS="PROGRAMLISTING" +>SendSQL("SELECT encrypt(" . SqlQuote($enteredpwd) . ", " . + SqlQuote(substr($realcryptpwd, 0, 2)) . ")"); +my $enteredcryptpwd = FetchOneColumn(); + </PRE +></TD +></TR +></TABLE +> + with this: + <TABLE +BORDER="0" +BGCOLOR="#E0E0E0" +WIDTH="100%" +><TR +><TD +><PRE +CLASS="PROGRAMLISTING" +>my $enteredcryptpwd = $enteredpwd + </PRE +></TD +></TR +></TABLE +> + in cgi.pl. + </P +></DIV +> + </P +></LI +><LI +><P +> I renamed processmail to processmail.pl + </P +></LI +><LI +><P +> I altered the sendmail statements to windmail: + <TABLE +BORDER="0" +BGCOLOR="#E0E0E0" +WIDTH="100%" +><TR +><TD +><PRE +CLASS="PROGRAMLISTING" +> +open SENDMAIL, "|\"C:/General/Web/tools/Windmail 4.0 Beta/windmail\" -t > mail.log"; + </PRE +></TD +></TR +></TABLE +> + </P +><P +> The quotes around the dir is for the spaces. mail.log is for the output + </P +></LI +></OL +></DIV +></BLOCKQUOTE +></BLOCKQUOTE +></DIV ></DIV ></DIV ><DIV |