[EMAIL PROTECTED] Apache not accepting request from proxy

2007-01-05 Thread DEVAL SHAH
Hello, We are getting request from a proxy server and somehow that proxy server gets an internal server error. This is the configuration: Apache web server connected to Tomcat via mod_jk. RewriteRule /url1(.*)/$ /TomcatWebApp/Servlet1 Now from the browser if I do https://abc.com/url1/ it work

[EMAIL PROTECTED] Apache cannot accept request from Proxy

2007-01-05 Thread DEVAL SHAH
Hello, We are getting request from a proxy server and somehow that proxy server gets an internal server error. This is the configuration: Apache web server connected to Tomcat via mod_jk. RewriteRule /url1(.*)/$ /TomcatWebApp/Servlet1 Now from the browser if I do https://abc.com/url1/ it work

Re: [EMAIL PROTECTED] Verisign signatures with Apache server

2007-01-05 Thread Sander Temme
Hi Nancy, On Jan 5, 2007, at 2:55 PM, Booterbaugh, Nancy wrote: I did all that, but am still getting the error, Private key not found If you compare your (working) configuration for the self-signed certificate with the new configuration, what are the differences? Look especially at the S

Re: [EMAIL PROTECTED] PHP configuration error

2007-01-05 Thread Jay Chandler
Richard Lynch wrote: On Fri, January 5, 2007 1:34 am, Jay Chandler wrote: Using FreeBSD 6.1 here with Apache 2.2 and PHP 5 (both installed from ports)-- trying to get it to render .php pages correctly, but instead it insists on trying to save the files instead. I've added the following lines

RE: [EMAIL PROTECTED] Verisign signatures with Apache server

2007-01-05 Thread Booterbaugh, Nancy
Thanks, Roger. I did all that, but am still getting the error, Private key not found Have I missed something? From: Roger Hendrix at Baldor-IS [mailto:[EMAIL PROTECTED] Sent: Friday, January 05, 2007 2:54 PM To: users@httpd.apache.org Subject: RE: [EMAIL PROTE

[EMAIL PROTECTED] Perpetural SIGSEV in Apache 1.3.27

2007-01-05 Thread Urie, Todd
I have run into a problem where http processes eventually get into a state where they are continually getting and handling SIGSEV signals. truss -p shows: Incurred fault #6, FLTBOUNDS %pc = 0xFF0AF18C siginfo: SIGSEGV SEGV_MAPERR addr=0x0054 Incurred fault #6, FLTBOUNDS %pc =

[EMAIL PROTECTED] dyld: Undefined symbols: _compress _uncompress

2007-01-05 Thread Spence
I'm running Apache/2.2.3 (Unix) DAV/2 mod_perl/2.0.2 Perl/v5.8.1 configured on OS X 10.3.9. The server will start and everything appears fine, but when I try to gracefully restart, the server stops. The only error message I have is: dyld: /usr/local/apache2/bin/httpd Undefined symbols: _compres

RE: [EMAIL PROTECTED] Verisign signatures with Apache server

2007-01-05 Thread Roger Hendrix at Baldor-IS
Nancy: You need to go the Verisign web site, find the pages that define the types of certificates, decide which type you want to use, then follow the instructions for generating the certificate files. On completing this process you should have three (3) files like the following example:

Re: [EMAIL PROTECTED] Forcing logging to the access log

2007-01-05 Thread Joshua Slive
On 1/5/07, Steve Swift <[EMAIL PROTECTED]> wrote: I'm getting "child pid 32719 exit signal Segmentation fault (11)" in our error_log but whatever is causing it, it is not generating corresponding entries in the access_log. I suspect that the child pid is failing to update the access_log because o

Re: [EMAIL PROTECTED] Apache+mod_jk+Tomcat+mod_rewrite+cookie

2007-01-05 Thread DEVAL SHAH
Hello Fred, I set the cookie path "/" and it works fine now. Thanks for the help. From: fredk2 <[EMAIL PROTECTED]> Reply-To: users@httpd.apache.org To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Apache+mod_jk+Tomcat+mod_rewrite+cookie Date: Fri, 5 Jan 2007 06:34:29 -0800 (PST) I g

[EMAIL PROTECTED] Verisign signatures with Apache server

2007-01-05 Thread Booterbaugh, Nancy
This is my first posting. I don't know much about this server, so please be patient. My company has an Apache server which is used to send and receive AS2 messages. The server was set up with a virtual host to allow both inbound and outbound processing on the same instance. The server was origi

Re: [EMAIL PROTECTED] PHP configuration error

2007-01-05 Thread Richard Lynch
On Fri, January 5, 2007 1:34 am, Jay Chandler wrote: > Using FreeBSD 6.1 here with Apache 2.2 and PHP 5 (both installed from > ports)-- trying to get it to render .php pages correctly, but instead > it > insists on trying to save the files instead. > > I've added the following lines to httpd.conf:

Re: [EMAIL PROTECTED] Special chars in third party module mod_getaccess

2007-01-05 Thread Nick Kew
On Fri, 5 Jan 2007 16:44:40 +0100 "Sternath, Elmar" <[EMAIL PROTECTED]> wrote: > Hello, > > sorry for this slightly off-topic issue: the Entrust GetAccess module > does not support certain special chars like '~': What do you mean, "support"? Where's that coming from? > [Fri Jan 05 16:20:46 20

[EMAIL PROTECTED] Special chars in third party module mod_getaccess

2007-01-05 Thread Sternath, Elmar
Hello, sorry for this slightly off-topic issue: the Entrust GetAccess module does not support certain special chars like '~': [Fri Jan 05 16:20:46 2007] [error] mod_getaccess::ga_check_access: Invalid URI: /webdynpro/resources/sap.com/tc~wd~dispwda/global/SSR/js/popup_ie6.js. '~' is NOT a valid

Re: [EMAIL PROTECTED] Forcing logging to the access log

2007-01-05 Thread Davide Bianchi
Steve Swift wrote: Is there some way to force the update of the access_log to be committed before the process starts handling the request? Not without hacking the code, since the access_log contains the return code of the request and that's not known until the request has been served. I got

[EMAIL PROTECTED] mod_rewrite to speed up twiki

2007-01-05 Thread Timothy Legge
Hi I have been following Christian Folini's "Rock your Wiki!" article in the April issue of Sysadmin magazine. I have implemented his rules and script to generate a cached page but things do not seem to be working. I have reviewed the logs and it seems like the rules below work. I was concerned

Re: [EMAIL PROTECTED] Building Static Apache on AIX 5.2 with GCC

2007-01-05 Thread Justin Johnson
Well I'm getting further than I was before. It seems my main problem with LDAP not being recognized is that I was specifying --with-ldap=yes instead of --with-ldap=/path/to/ldap/basedir. So after changing that I found that I need to first build apr and apr-util, as documented at http://httpd.apa

Re: [EMAIL PROTECTED] Apache+mod_jk+Tomcat+mod_rewrite+cookie

2007-01-05 Thread fredk2
I guess you are not passing the full URL to the servlet, try: RewriteRule ^/url1(.*) /MyApp/MyServlet$1 [PT] Cheers, Fred -- View this message in context: http://www.nabble.com/Apache%2Bmod_jk%2BTomcat%2Bmod_rewrite%2Bcookie-tf2922976.html#a8178908 Sent from the Apache HTTP Server - Users

[EMAIL PROTECTED] Forcing logging to the access log

2007-01-05 Thread Steve Swift
I'm getting "child pid 32719 exit signal Segmentation fault (11)" in our error_log but whatever is causing it, it is not generating corresponding entries in the access_log. I suspect that the child pid is failing to update the access_log because of the segmentation fault. Is there some way to for

Re: [EMAIL PROTECTED] Open_base

2007-01-05 Thread Matus UHLAR - fantomas
On 03.01.07 15:22, Kyle Quillen wrote: > I have a small issue. I need to set the open_base directive for the > default site of apache so that php will be able to interface directly > with the Directory it needs to. I have tried adding this line to the > config file in just a random place as I do

Re: [EMAIL PROTECTED] Apache issue with NFS mount

2007-01-05 Thread Sander Temme
On Jan 4, 2007, at 11:31 PM, jeffery bayliss wrote: Because Apache sucks. That's it, there's your answer. Actually, NFS sometimes introduces permissions issues, particularly with regards to the nobody or nfsnobody user which exists on some platforms. Can the user that is running Apache r