RE: [EMAIL PROTECTED] Possible to configure httpd to forward TRACE requests to backend?

2007-06-28 Thread Boyle Owen
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 28, 2007 9:56 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Possible to configure httpd to forward > TRACE requests to backend? > > Is it possible to configure httpd in such a w

Re: [EMAIL PROTECTED] Does Apache Support Piped Logs On Windows Platform

2007-06-28 Thread William A. Rowe, Jr.
Frank Misa wrote: > Hi All, > > I've seen many references to Apache issues with logging to piped > processes on the forums; but no clear answer on whether this is > supported or not. > Can someone here please confirm -- Yes/No... > Do the latest versions of Apache 2.0.x OR Apache 2.2.x support p

[EMAIL PROTECTED] Application using Apache and URL schema inquiry

2007-06-28 Thread Steve Finkelstein
Hi all, Hope this forum is appropriate for my dilemma. I'm currently looking for an elegant solution to the following problem. I have an application where each individual user logs into http://username.foo.com to access their vhost/own document root. Unfortunately, when you have a great deal of u

[EMAIL PROTECTED] Possible to configure httpd to forward TRACE requests to backend?

2007-06-28 Thread Jan . Luehe
Is it possible to configure httpd in such a way that, with TRACE being enabled, it forwards a TRACE request (via mod_jk) to a backend servlet? Right now, httpd seems to intercept any such request and reply to it directly. Thanks, Jan

Re: [EMAIL PROTECTED] Two sessions or one session when connect to two load-balanced webServers?

2007-06-28 Thread Sander Temme
On Jun 28, 2007, at 10:23 AM, Qingshan Xie wrote: I have two questions on Sessions and Connections. 1. If a browser sends multiple requests and establishes Two Connections with an Apache server, how many sessions it will be generated, one or two? The answer is None. HTTP is stateless, and Ap

Re: [EMAIL PROTECTED] Question of MSIE SSL KeepAlive?

2007-06-28 Thread Joshua Slive
On 6/27/07, Qingshan Xie <[EMAIL PROTECTED]> wrote: I still see the default configuration for Apache 2.0.59 HTTPS/SSL server setup, SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 Does MSIE still have the issue to use Apache

Re: [EMAIL PROTECTED] .htaccess issue with Apache 2.0.59

2007-06-28 Thread Joshua Slive
On 6/28/07, Tom Ray [Lists] <[EMAIL PROTECTED]> wrote: Well I got it working. I ended up having to do it like this: RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.nwdyc\.org [NC] RewriteRule ^.* http://nwdyckids.tripod.com/ [R,L] RewriteCond %{HTTP_HOST} ^nwdyc\.org [NC] RewriteRule ^.* http:/

[EMAIL PROTECTED] [Fwd: Redirection]

2007-06-28 Thread Senén de Diego
Hello, I'm trying to make a very simple redirect in the Apache server (linux 1.3) of our hosting provider, using a file [/foo/.htaccess] with this text: [ Redirect permanent /foo/bar.jnlp http://www.domain.com/foo/bar.php ] I've also tried this one: [ RewriteEngine On RewriteBase /foo Rewrit

Re: [EMAIL PROTECTED] Two sessions or one session when connect to two load-balanced webServers?

2007-06-28 Thread Joshua Slive
On 6/28/07, Qingshan Xie <[EMAIL PROTECTED]> wrote: I have two questions on Sessions and Connections. 1. If a browser sends multiple requests and establishes Two Connections with an Apache server, how many sessions it will be generated, one or two? 2. If a browser sends multiple HTTPS requests

Re: [EMAIL PROTECTED] .htaccess issue with Apache 2.0.59

2007-06-28 Thread Tom Ray [Lists]
Well I got it working. I ended up having to do it like this: RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.nwdyc\.org [NC] RewriteRule ^.* http://nwdyckids.tripod.com/ [R,L] RewriteCond %{HTTP_HOST} ^nwdyc\.org [NC] RewriteRule ^.* http://nwdyckids.tripod.com/ [R,L] Making a separate conditio

Re: [EMAIL PROTECTED] some problems about mod rewrite

2007-06-28 Thread Joshua Slive
On 6/28/07, alfredo cosco <[EMAIL PROTECTED]> wrote: But I don't know how to write the Rules to rewrite them. At least www.Journal.institution.org has to point here: www.ojs.institution.org/index.php/Journal Can anyone help me? Normally it is best to try it yourself, try debugging it with th

Re: [EMAIL PROTECTED] .htaccess issue with Apache 2.0.59

2007-06-28 Thread John Schofield
I'm no .htaccess expert -- I'm at the "I've read the docs and gotten a few .htaccess rules working" stage. So take what I say with a grain of salt. 1) You need to escape the periods in your regexes. It should be ^www \.nwdyc\.org$, not ^www.nwdyc.org$. 2) Your rules will redirect traffic t

RE: [EMAIL PROTECTED] Ask for suggestions - 25000 visitors

2007-06-28 Thread Carlos Oyarzabal
Thanks thanks thanks a lot to all I am very pleased for your help. Carlos, _ De: Victor Trac [mailto:[EMAIL PROTECTED] Enviado el: Miércoles, 27 de Junio de 2007 01:26 p.m. Para: users@httpd.apache.org Asunto: Re: [EMAIL PROTECTED] Ask for suggestions - 25000 visitors My server just

Re: [EMAIL PROTECTED] .htaccess issue with Apache 2.0.59

2007-06-28 Thread Tom Ray [Lists]
Well, DirectoryIndex works. So I'm assuming it is. I did put the gibberish in and I got a 500 error, so it's back to troubleshooting. John Schofield wrote: First thing I would try is putting gibberish in your .htaccess file, and see if you get an error when you load pages in the directory cont

Re: [EMAIL PROTECTED] .htaccess issue with Apache 2.0.59

2007-06-28 Thread John Schofield
First thing I would try is putting gibberish in your .htaccess file, and see if you get an error when you load pages in the directory containing the gibberish .htaccess file. If you don't get an error, Apache isn't loading your .htaccess file. If you DO get an error, you can take out the gi

[EMAIL PROTECTED] .htaccess issue with Apache 2.0.59

2007-06-28 Thread Tom Ray [Lists]
Hey, I'm using Apache 2.0.59 and I'm running into a bit of an issue here. I just can't seem to get the RewriteEngine command to work in .htaccess. I can get the other .htaccess directives (DirectoryIndex, password, etc) to work but not this. I have mod_rewrite.c in my list when I do httpd -l so

[EMAIL PROTECTED] Two sessions or one session when connect to two load-balanced webServers?

2007-06-28 Thread Qingshan Xie
I have two questions on Sessions and Connections. 1. If a browser sends multiple requests and establishes Two Connections with an Apache server, how many sessions it will be generated, one or two? 2. If a browser sends multiple HTTPS requests to two load-balanced Apache servers, how many sessions

Re: [EMAIL PROTECTED] Does Apache Support Piped Logs On Windows Platform

2007-06-28 Thread Tony Guadagno
All, You can use mod_rotate to rotate the access logs, not the error logs though *** Tony Guadagno Guadagno Consulting [EMAIL PROTECTED] 585.703.6700 *** >>> Sander Temme <[EMAIL PROTECTED]> 6/28/2007 12:38

RE: [EMAIL PROTECTED] Does Apache Support Piped Logs On Windows Platform

2007-06-28 Thread Frank Misa
Hi,Thanks very much Sander I think ;)I was starting to suspect that.That's bad news for me.I hope the issue is fixed soon -- I'll have to work around this somehow.Re:ModSecurityI'm not sure what API they're using for their logging ?But the Perl script that I'm trying to pipe to just tran

[EMAIL PROTECTED] some problems about mod rewrite

2007-06-28 Thread alfredo cosco
Hallo, I'm going mad with a server configuration. That's my problem: There is an Institution: www.institution.org It offers a e-journals service between OJS software: www.ojs.institution.org So each journal has this link: www.ojs.institution.org/index.php/Journal So they asked to transform t

Re: [EMAIL PROTECTED] Does Apache Support Piped Logs On Windows Platform

2007-06-28 Thread Sander Temme
Frank, On Jun 28, 2007, at 9:22 AM, Frank Misa wrote: I've seen many references to Apache issues with logging to piped processes on the forums; but no clear answer on whether this is supported or not. Can someone here please confirm -- Yes/No... Do the latest versions of Apache 2.0.x OR A

Re: [EMAIL PROTECTED] configuration issue

2007-06-28 Thread Chris Africa
After playing around with this for another half day, I finally got what Eric meant -- so I tried it, like this: ## Order allow,deny ## Allow from all CosignProtected On ## AllowOverride AuthConfig AuthType Cosign ##

Re: [EMAIL PROTECTED] Errors with 2.2.4/mod_proxy_ajp and tomcat 5.5

2007-06-28 Thread Gunther Mayer
Boyle Owen wrote: However, I get spurious errors in my logs many times a day: [Thu Jun 28 11:33:43 2007] [error] [client 41.204.199.248] proxy: error processing body, referer: https://myserver.com/myapp/purchase.jsp?cid=5 21&clr=true [Thu Jun 28 11:33:43 2007] [error] proxy: got bad response

[EMAIL PROTECTED] Does Apache Support Piped Logs On Windows Platform

2007-06-28 Thread Frank Misa
Hi All,I've seen many references to Apache issues with logging to piped processes on the forums; but no clear answer on whether this is supported or not.Can someone here please confirm -- Yes/No...Do the latest versions of Apache 2.0.x OR Apache 2.2.x support piped logs on Windows ?The foll

Re: [EMAIL PROTECTED] LoadBalancing with sessions

2007-06-28 Thread Santi Saez
El 19/06/2007, a las 11:23, Jorge González escribió: Hi all! I need to build a cluster with 2 Apache. PHP will be installed in both web servers so I need to mangle sessions. I tried balancing with Apache and mod_proxy_balanced but when there is a session the user goes always to the same

[EMAIL PROTECTED] POST action missing in main server while using reverse proxy

2007-06-28 Thread Ambarish Mitra
Hi all, I am trying to setup a reverse proxy to fwd requests to another back-end server. The back-end server actually holds a SSO application, and so for any GET from browser, it pops up a login form, which on being submitted with correct credentials, grants the requested page. This is from logs/a

RE: [EMAIL PROTECTED] Errors with 2.2.4/mod_proxy_ajp and tomcat 5.5

2007-06-28 Thread Boyle Owen
> -Original Message- > From: Gunther Mayer [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 28, 2007 1:49 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Errors with 2.2.4/mod_proxy_ajp and tomcat 5.5 > > Hi there, > > I do the sysadmin for a relatively new site and our apac

Re: [EMAIL PROTECTED] configuration issue

2007-06-28 Thread Chris Africa
Hi, Eric. Actually, I do get the cosign login page. After I've logged in, I get the internal server error. Do you mean that I should move my cosign directives around like this, or something else? ... [cosign stuff previously up here] ...

[EMAIL PROTECTED] Errors with 2.2.4/mod_proxy_ajp and tomcat 5.5

2007-06-28 Thread Gunther Mayer
Hi there, I do the sysadmin for a relatively new site and our apache 2.2.4 is serving some static&php content while our main application is served by jboss-4.0.5 which is bundled with tomcat 5.5. I set this up a few months ago and investigated mod_proxy_ajp vs mod_jk and decided to go with the

[EMAIL PROTECTED] mod_auth_ldap : LDAP search request invalid size limit

2007-06-28 Thread Rina RALISON
I am using Apache 2.0.59 on Windows XP Pro with : LoadModule ldap_module modules/util_ldap.so LoadModule auth_ldap_module modules/mod_auth_ldap.so My LDAP wouldn't search DN in directory, in authentication purpouse, because of "invalide size limit". It seems that LDAP server is waiting for a size

[EMAIL PROTECTED] can anyone answer plz

2007-06-28 Thread Ravi Prakash
Hi, I want to know the functionality of ap_getword_conf( ) . How does it work ? Is any equivalent C string library function ? Please , make it clear by an example. Thanks Ravi