From 1b2aa767929784a37212b9e3dc01f9e119c4a9d6 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Sun, 22 Dec 2002 00:33:39 +0000 Subject: Rebuild HTML and text versions of documentation for 2.17.2 release. --- docs/html/win32.html | 144 ++++++++------------------------------------------- 1 file changed, 21 insertions(+), 123 deletions(-) (limited to 'docs/html/win32.html') diff --git a/docs/html/win32.html b/docs/html/win32.html index 575bf8f4b..2e9383b15 100644 --- a/docs/html/win32.html +++ b/docs/html/win32.html @@ -73,7 +73,9 @@ CLASS="section" >
This section covers installation on Microsoft Windows. Bugzilla has been made to work on Win32 platforms, but the Bugzilla team @@ -150,7 +152,9 @@ CLASS="section" >
Example 4-1. Installing ActivePerl ppd Modules on Microsoft Windows
Example 4-2. Installing OpenInteract ppd Modules manually on Microsoft Windows
Add - binmode() - - calls so attachments will work ( - bug - 62000 - - ).
Because Microsoft Windows based systems handle binary files - different than Unix based systems, you need to add the following - lines to - createattachment.cgi - - and - showattachment.cgi - - before the - require 'CGI.pl'; - - line.
-binmode(STDIN); -binmode(STDOUT); - - |
According to - bug 62000 - - , the perl documentation says that you should always use - binmode() - - when dealing with binary files, but never when dealing with text - files. That seems to suggest that rather than arbitrarily putting - - binmode() - - at the beginning of the attachment files, there should be logic - to determine if - binmode() - - is needed or not. |