Re: [EMAIL PROTECTED] Vhost issues

2007-12-20 Thread Neil A. Hillard
Chris Arnold wrote: >> Have you tried adding: > >> ServerAlias www.teknerds.net > >> to the second VH? (Essentially, you need to tell Apache which VH to >> direct the request to - www.teknerds.net is not the same as teknerds.net) > > Yes, i make that change and it still takes me to the first vh

[EMAIL PROTECTED] URL redirection

2007-12-20 Thread Melanie Pfefer
Hello, Could you please advise if this can be done in apache? http://server1/OpenObject?doc=ERW to be redirected to: http://server2:9000/OpenObject?doc=ERW I mean everything that starts with /OpenObject to be redirected to server2:9000 with the same trailing string /OpenObject?doc=ERW or /OpenO

Re: [EMAIL PROTECTED] URL redirection

2007-12-20 Thread Severin Gehwolf
Hi! > Could you please advise if this can be done in apache? > http://server1/OpenObject?doc=ERW > to be redirected to: > http://server2:9000/OpenObject?doc=ERW > I mean everything that starts with /OpenObject to be > redirected to server2:9000 with the same trailing > string /OpenObject?doc=ERW o

Re: [EMAIL PROTECTED] URL redirection

2007-12-20 Thread Severin Gehwolf
ups... > RewriteEngine On > RewriteRule ^/(OpenObject.*) http://server2:9000/$1 [P,L] > ProxyPassReverse / http://server1/ of course the ProxyPassReverse directive should look like ProxyPassReverse / http://server2:9000/ --- severin

[EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Melanie Pfefer
hello, I need to add these 2 lines to my conf file: RewriteEngine On RewriteRule ^/(OpenObject.*) http://server2:9000/$1 the http service is critical and cannot kill sessions. Is there a way to reload the configuration without restarting apache? thanks.

[EMAIL PROTECTED] Error with make command

2007-12-20 Thread Stew Henderson
Hi I have been trying to install Apache on Solaris 10. I hit problems when I r= un the "make" command. I have downloaded, and isntalled GNU Make, and also = have GCC installed. Here is the output when I run this make command: iris:/software/httpd-2.2.6# make Making all in srclib Making all in

Re: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Neil A. Hillard
Hi, Melanie Pfefer wrote: > hello, > > I need to add these 2 lines to my conf file: > > RewriteEngine On > RewriteRule ^/(OpenObject.*) http://server2:9000/$1 > > > the http service is critical and cannot kill sessions. > Is there a way to reload the configuration without > restarting apache?

Re: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Severin Gehwolf
> I need to add these 2 lines to my conf file: > > RewriteEngine On > RewriteRule ^/(OpenObject.*) http://server2:9000/$1 Melanie, you should alter the latter line (above) to RewriteRule ^/(OpenObject.*) http://server2:9000/$1 [R=301,L] This way, browsers are able to cache the request (R=301) a

Re: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Christian Folini
On Thu, Dec 20, 2007 at 11:40:02AM +, Melanie Pfefer wrote: > the http service is critical and cannot kill sessions. > Is there a way to reload the configuration without > restarting apache? apachectl -h Usage: /data/custom-apaches/apache-2.0.61/bin/httpd \ [-D name] [-d directory] [-f file

Re: [EMAIL PROTECTED] Can't load .JS file into Perl/CGI script.

2007-12-20 Thread CraigT
Thanks for responding Dragon. I added the JavaScript mime type to the HTTPD file. I restarted the server and tried to load the external JavaScript file into the .CGI process from the supra-directory (root) and a subdirectory to the cgi-bin directory. The load from the root did not work. Th

Re: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Melanie Pfefer
thanks. ___ Yahoo! Answers - Got a question? Someone out there knows the answer. Try it now. http://uk.answers.yahoo.com/ - The official User-To-User support forum o

RE: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Axel-Stephane SMORGRAV
If that server of yours really is critical, I would urge you NOT to change the operational configuration before having tested the changes elsewhere. -ascs -Message d'origine- De : Melanie Pfefer [mailto:[EMAIL PROTECTED] Envoyé : jeudi 20 décembre 2007 12:40 À : users@httpd.apache.org

Re: [EMAIL PROTECTED] dbm group files with dtdbm

2007-12-20 Thread Joshua Slive
On Dec 19, 2007 11:13 PM, <[EMAIL PROTECTED]> wrote: > Hi, how do i use the htdbm to create dbm group files? > ...seems like this can only done only by the deprecated dbmmanage.. ? > btw, what makes the difference using a single or two dbs for users and > groups? what are your personal preferences

Re: [EMAIL PROTECTED] Error with make command

2007-12-20 Thread Russell E Glaue
You can download the compiled GCC and glib packages you need from this site http://www.sunfreeware.com/ Looks like they even have Apache 2.2.6 available too. To compile, try using these packages on your system. Also be sure you are using apr and apr-util version 1.2.* If you do not want to compil

Re: [EMAIL PROTECTED] Can't load .JS file into Perl/CGI script.

2007-12-20 Thread Dragon
CraigT wrote: Thanks for responding Dragon. I added the JavaScript mime type to the HTTPD file. I restarted the server and tried to load the external JavaScript file into the .CGI process from the supra-directory (root) and a subdirectory to the cgi-bin directory. The load from the root di

[EMAIL PROTECTED] mod_rewrite redirect, how to keep url encoding utf8

2007-12-20 Thread Torsten Krah
Hi. I've got some problem with mod_rewrites redirect behaviour. I'll got some urls which may have some query parameters which are utf8 encoded like this: /abcd/u1?myparam1=h%C3%A4llo It works fine. Now there should be some short urls which match to the long url above: RewriteRule ^/ef(.*)$ /a

Re: [EMAIL PROTECTED] mod_rewrite redirect, how to keep url encoding utf8

2007-12-20 Thread Torsten Krah
Hm - never mind, NE - noescape does the trick, should have read more carefully, rtfm ;-) Torsten Am Donnerstag, 20. Dezember 2007 17:20:25 schrieb Torsten Krah: > Hi. > > I've got some problem with mod_rewrites redirect behaviour. > I'll got some urls which may have some query parameters which a

RE: [EMAIL PROTECTED] Error with make command

2007-12-20 Thread Stew Henderson
Thank you very much for your help. The installation went fine, but when I try to start the server I get this error. -bash-3.00# apachectl start ld.so.1: httpd: fatal: libexpat.so.0: open failed: No such file or directory Killed I added all packages that were recommended on http://www.sunfreewar

Re: [EMAIL PROTECTED] Can't load .JS file into Perl/CGI script.

2007-12-20 Thread CraigT
Thanks again Dragon. When I tried to load the js file directly via the browser, it showed the problem. I had to adapt my quoting in the .JS file to work with the new loading approach. craigt Dragon-4 wrote: > > CraigT wrote: > >>Thanks for responding Dragon. I added the JavaScript mime

[EMAIL PROTECTED] ldap unavailable 500 server error

2007-12-20 Thread Thomas Hart
Hello everybody. I'm sure some of you are at least somewhat familiar with the bug here: http://issues.apache.org/bugzilla/show_bug.cgi?id=39095 If you're not, the basic theory is that if there's not an auth call to the ldap server for 10 minutes, the server will return the wrong message. Here'

Re: [EMAIL PROTECTED] Error with make command

2007-12-20 Thread Russell E Glaue
Two things: 1) httpd is not compile statically, so it looks for libraries at run-time To compile statically, try this ./configure option --enable-static-support 2) the library is not found at run time. (assuming libexpat is in /lib) To fix this, try: env LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/

Re: [EMAIL PROTECTED] Error with make command

2007-12-20 Thread Eric Covener
On Dec 20, 2007 2:21 PM, Russell E Glaue <[EMAIL PROTECTED]> wrote: > Two things: > > 1) httpd is not compile statically, so it looks for libraries at run-time > To compile statically, try this ./configure option > --enable-static-support I believe this only affects support programs such

Re: [EMAIL PROTECTED] how to compile mod_dav to use dbm, not sdbm/gdbm

2007-12-20 Thread Russell E Glaue
I got mod_dav to serve files from NFS without problems by doing something I shouldn't: - apr-util-1.2.12/dbm/sdbm/sdbm_private.h 46,47c46,47 < #define SDBM_SHARED_LOCK 0x4/* data base locked for shared read */ < #define SDBM_EXCLUSIVE_LOCK 0x8/* data base locked for write */ --- >

[EMAIL PROTECTED] Random pages and display weirdness

2007-12-20 Thread Sean Whyte
This is an odd problem and I'm not sure how to describe it exactly. About 2 months ago (at least that's when we first noticed) we started having weird problems with our website. The types of problems we would see are the following: 1. Web pages would display in text only 2. CSS files