Re: [us...@httpd] LDAP authentication with password encryption from browser to web server

2010-09-24 Thread Eric Covener
> I understand that I could force the users to use an https URL instead of an > http URL, but that seems like it would be overkill.  If that is the only > solution to this issue, then we would really want the user to authenticate > over https, but then fall back to http for all of the rest of the >

Re: [us...@httpd] mod_rewrite loop

2010-09-24 Thread Walther Bauer
Ok, thanks for mentioning RewriteLog, didn't know there is an extra logfile for mod_rewrite. That helped me figuring it out: In the second example, apache recognizes the rewritten url equals the original url and aborts rewriting process. ("initial URL equal rewritten URL: test/server.php [IGNORING

[us...@httpd] LDAP authentication with password encryption from browser to web server

2010-09-24 Thread Mark Tischler
I have been looking through a lot of documentation on this subject, both on apache.org and elsewhere, and I can't seem to find an answer to the following question: Our Apache web server (version 2.2.11 running on Solaris 10) is currently authenticating users via LDAP successfully. But, we w

Re: [us...@httpd] mod_rewrite loop

2010-09-24 Thread Frank Gingras
On 24/09/2010 4:36 PM, Walther Bauer wrote: Yeah, I've unterstood that so far. But why does the second example _not_ produce an infinite loop? You need to check the RewriteLog to find out why. It may depend on the context, or other factors. Frank ---

Re: [us...@httpd] mod_rewrite loop

2010-09-24 Thread Eric Covener
On Fri, Sep 24, 2010 at 4:36 PM, Walther Bauer <2313...@googlemail.com> wrote: > Yeah, I've unterstood that so far. But why does the second example _not_ > produce an infinite loop? Can you attach a rewritelog of the two cases? Must be some usually uninteresting quirk as opposed to the standard l

Re: [us...@httpd] mod_rewrite loop

2010-09-24 Thread Walther Bauer
Yeah, I've unterstood that so far. But why does the second example _not_ produce an infinite loop?

Re: [us...@httpd] mod_rewrite loop

2010-09-24 Thread Frank Gingras
On 24/09/2010 9:59 AM, Walther Bauer wrote: This .htaccess snippet creates an "Request exceeded the limit of 10 internal redirects"-error on my server (XAMPP): RewriteEngine On RewriteRule ^(.*)$ ./server.php while the following does not: RewriteEngine On RewriteRule ^(.*)$ server.php So why

Re: [us...@httpd] firefox 3.6.9 fails to connect due to SSL DHE

2010-09-24 Thread Ricardo Stella
How? I have this for SSLCipherSuite: SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL On 9/24/2010 5:35 AM, jackie.w...@barclayscapital.com wrote: > > Have you tried switching off EDH using the SSLCipherSuite directive in > the apache config? > > > > *From:*

[us...@httpd] child recyle

2010-09-24 Thread Brad Lira
hello, when the MaxRequestsPerChild has reached, and the child is killed, does the is_graceful variable set in worker.c? If so, how can differentiate between ./apachectl graceful and child recycling. I want to reset some counters if the entire apache was restarted, but not if the child is recyc

[us...@httpd] mod_rewrite loop

2010-09-24 Thread Walther Bauer
This .htaccess snippet creates an "Request exceeded the limit of 10 internal redirects"-error on my server (XAMPP): RewriteEngine On RewriteRule ^(.*)$ ./server.php while the following does not: RewriteEngine On RewriteRule ^(.*)$ server.php So why does the "./" actually make a difference? Than

RE: [us...@httpd] firefox 3.6.9 fails to connect due to SSL DHE

2010-09-24 Thread Jackie.Wong
Have you tried switching off EDH using the SSLCipherSuite directive in the apache config? From: Ricardo Stella [mailto:ste...@rider.edu] Sent: Friday, September 24, 2010 3:04 AM To: users@httpd.apache.org Subject: [us...@httpd] firefox 3.6.9 fails to connect due to SSL DHE Hello, The latest Fi