diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2000-06-03 02:46:16 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2000-06-03 02:46:16 +0200 |
commit | e908c4fa7ff570e0b82069afa1ee55ac0ec48753 (patch) | |
tree | b44fca8e4bd489eb9e717762505b2ebf71e0bad2 /docs | |
parent | Start a "Common Problems" section in the mod_charset_lite (diff) | |
download | apache2-e908c4fa7ff570e0b82069afa1ee55ac0ec48753.tar.xz apache2-e908c4fa7ff570e0b82069afa1ee55ac0ec48753.zip |
PR:
Obtained from:
Submitted by:
Reviewed by:
Plaster some big fat warnings about alpha releases for win32 users.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85388 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/platform/windows.html | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/docs/manual/platform/windows.html b/docs/manual/platform/windows.html index 5e74482e40..5b7763361d 100644 --- a/docs/manual/platform/windows.html +++ b/docs/manual/platform/windows.html @@ -55,10 +55,14 @@ "Winsock2" for Windows 95 is available <A HREF="http://www.microsoft.com/windows95/downloads/">here</A>.</P> -<P>If running on NT 4.0, installing Service Pack 3 is recommended, and +<P>If running on NT 4.0, installing Service Pack 3 or 6 is recommended, and Service Pack 4 created known issues with Tcpip/winsock integrety that were resolved in Service Pack 5.</P> +<P><STRONG>Warning, as of alpha 2.0a4 Windows 95 (and possibly 98) do not + run at all. Please don't let that stop you, however, from contributing + the fixes required to make that platform run successfully.</STRONG></P> + <H2><A NAME="down">Downloading Apache for Windows</A></H2> <P>Information on the latest version of Apache can be found on the @@ -77,6 +81,12 @@ <SAMP>.dsp</SAMP> files to have DOS line endings before MSVC will understand them).</P> +<P><STRONG>Notice: alpha versions are not distributed in binary form (as + an .exe ready-to-run version). You must use the Microsoft Visual C++ + compiler version 5 or 6 (bundled in VisualStudio 97 or 2000). Read + <A HREF="win_compiling.html">Compiling Apache for Microsoft Windows</A> + for compilation/installation instructions.</STRONG></P> + <H2><A NAME="inst">Installing Apache for Windows</A></H2> <P>Run the Apache <SAMP>.exe</SAMP> file you downloaded above. This will @@ -297,20 +307,20 @@ There are two ways you can run Apache: <P>You can install Apache as a Windows NT service as follows: <PRE> - apache -i -n "service name" + apache -k install -n "service name" </PRE> To install a service to use a particular configuration, specify the configuration file when the service is installed: <PRE> - apache -i -n "service name" -f "\my server\conf\my.conf" + apache -k install -n "service name" -f "\my server\conf\my.conf" </PRE> To remove an Apache service, use <PRE> - apache -u -n "service name" + apache -k uninstall -n "service name" </PRE> The default "service name", if one is not specified, is "Apache".</P> |