On Tue, 4 Mar 2003, Richard Heintze wrote: > I just downloaded the all-in-one and, as per Randy's > instructions, abandoned my current installations of > Apache2 and perl5.8 by uninstalling them. > > I just typed in the perl configure.pl command and I > receive: > > SetConsoleMode failed, LastError=|6| at > C:/Perl/site/lib/Term/ReadKey.pm line 26 > 8, <STDIN> line 6. > cpan> > > Should I be concerned? Actually, here are all the > error messages at the end of this email message. > Apparently most of them are warning messages.
All of them are warnings - the majority are from converting the pod to html, which can be ignored, and the last one, about SetConsoleMode, is that the TERM environment variable is either not set or else set to something that Term::ReadKey doesn't understand. This can also be ignored, or else you can set the TERM environment variable to something like 'dumb' to get rid of the warning. I thought of having the configure script run in silent mode to suppress these warnings, but it takes so long for the html conversion that I thought it might give the impression of being hung up. > Also, what is httpd-win.conf for? Which one is being > used, httpd.conf or httpd-win.conf? If you start Apache as Apache -k start it'll use httpd.conf by default. You can alter this by using the -f option - do a 'Apache -h' to get a list of options. The httpd-win.conf file is the base one included in the Apache2 distribution. The supplied httpd.conf included in the distribution includes some example configuration for a ModPerl::Registry script and for a simple "Hello World" content handler, as well as a simple Apache::ASP and HTML::Mason page (not Embperl yet, as that isn't quite ready for Win32 Apache2/mod_perl2). -- best regards, randy