Re: [users@httpd] old solaris box (but heavily used)

2016-05-24 Thread james pruett
quick reply. I got taken off this task for now, but I plan on compiling 2.4. Thanks for the help guys! Jim On Fri, May 20, 2016 at 5:40 PM, Nick Kew wrote: > On Thu, 2016-05-19 at 11:03 -0500, james pruett wrote: > > Hi, > > > > > > My boss wants us to provide a redirect

Re: [users@httpd] old solaris box (but heavily used)

2016-05-20 Thread Nick Kew
On Thu, 2016-05-19 at 11:03 -0500, james pruett wrote: > Hi, > > > My boss wants us to provide a redirect page for use during > site-maintanance. > > > I assume this means I need to add mod_rewrite. Nothing remotely so complex! Just put your maintenance page somewhere, and start the server

RE: [users@httpd] old solaris box (but heavily used)

2016-05-20 Thread Scott Birl
figuration via: apachectl configtest And if the syntax checks out OK: apachectl graceful From: james pruett [mailto:gpscru...@gmail.com] Sent: Friday, May 20, 2016 4:41 PM To: users@httpd.apache.org Subject: Re: [users@httpd] old solaris box (but heavily used) so, what would you do?

Re: [users@httpd] old solaris box (but heavily used)

2016-05-20 Thread Yehuda Katz
2 different Apaches you've mentioned (oh ... earlier you used >> 2.0, this top one is 1.3) >> >> >> mod_so needs to be compiled in (only Apache 1.3.37) to make use of >> dynamic modules. >> >> >> >> >> >> >> >> >

Re: [users@httpd] old solaris box (but heavily used)

2016-05-20 Thread james pruett
gt; mod_auth.c > mod_setenvif.c > suexec: disabled; invalid wrapper /app/ip/apache_1.3.37/bin/suexec > > > Thanks for helping! > Jim > > > > > On Fri, May 20, 2016 at 2:01 PM, Scott Birl <sb...@temple.edu> wrote: > It should be similar to the grep example

RE: [users@httpd] old solaris box (but heavily used)

2016-05-20 Thread Scott Birl
com] Sent: Friday, May 20, 2016 4:21 PM To: users@httpd.apache.org Subject: Re: [users@httpd] old solaris box (but heavily used) It can't find it. I tried all of these one at a time, and they all error as shown -httpd.conf--- # Example: # LoadModule foo_module libexec/mod_foo.so

Re: [users@httpd] old solaris box (but heavily used)

2016-05-20 Thread Yehuda Katz
01 PM, Scott Birl <sb...@temple.edu> wrote: > >> It should be similar to the grep example you had earlier, so: >> LoadModule rewrite_module libexec/mod_rewrite.so >> >> >> >> >> >> >> From: james pruett [mailto:gpscru...@gmail.com] >> Sent: Friday

Re: [users@httpd] old solaris box (but heavily used)

2016-05-20 Thread james pruett
16 1:57 PM > Cc: users@httpd.apache.org > Subject: Re: [users@httpd] old solaris box (but heavily used) > > Thanks for continued help! > > Do I add this or this? > LoadModule rewrite_module modules/mod_rewrite.so > LoadModule rewrite_module libexec/mod_rewrite.so > &g

RE: [users@httpd] old solaris box (but heavily used)

2016-05-20 Thread Scott Birl
It should be similar to the grep example you had earlier, so: LoadModule rewrite_module libexec/mod_rewrite.so From: james pruett [mailto:gpscru...@gmail.com] Sent: Friday, May 20, 2016 1:57 PM Cc: users@httpd.apache.org Subject: Re: [users@httpd] old solaris box (but heavily used

Re: [users@httpd] old solaris box (but heavily used)

2016-05-20 Thread james pruett
Thanks for continued help! Do I add this or this? LoadModule rewrite_module modules/mod_rewrite.so LoadModule rewrite_module libexec/mod_rewrite.so mod_rewrite.so exists in both places already--- mktpricing:/usr % find -L apach* -name mod_rewrite.so | xargs

RE: [users@httpd] old solaris box (but heavily used)

2016-05-20 Thread Scott Birl
James: https://httpd.apache.org/docs/2.0/mod/mod_alias.html#redirect mod_alias for Redirect or RedirectMatch And since you have dynamic loading of modules enabled, yes, you can "turn on" the alias module without the need of re-compiling Apache from scratch. From: james pruett