[us...@httpd] Problème using mod_a utz_ldap (Showing pr otected folder witho ut access)

2010-12-21 Thread Sebastien Andreatta
Hello, First i would like to apologize for my basic English. Now it's down, i can start : I want to replace mod_auth_mysql by mod_authz_ldap but i have a problem : To show you exactly what my problem, i created a test case with some explanation. You can see it

[us...@httpd] httpd monitoring

2010-12-21 Thread Hugo Gomes
Hi all, I'm managing a web server, and time to time, my machine load average goes up, and when I run 'top' I see 1 or 2 httpd process consuming CPU and Memory. So my question is, there is any tools that i can monitored my machine and i could get what scripts on my web server make

Re: [us...@httpd] Issue with mod_proxy ProxyPass balancer and web sockets

2010-12-21 Thread Oscar Cassetti
Do you think that would be too hard to extend mod_proxy_http in order to support them? Or would it be more sensible to look at some other module or application that support websocktes? -- Oscar Cassetti On Mon, Dec 20, 2010 at 5:49 PM, Eric Covener cove...@gmail.com wrote: The issue is that

[us...@httpd] RewriteCond how to set variable

2010-12-21 Thread Campbell, Lance
I have the following RewriteCond. I put numbers in front of each line for reference: 1) RewriteCond %{QUERY_STRING} !XSL=NONE [NC] 2) RewriteCond %{QUERY_STRING} calId=([0-9]+) [NC] 3) RewriteCond %{QUERY_STRING} skinId=([0-9]+) [NC] 4) RewriteRule ^/calendar

[us...@httpd] Re: RewriteCond how to set variable

2010-12-21 Thread Andrew Schulman
I have the following RewriteCond. I put numbers in front of each line for reference: 1) RewriteCond %{QUERY_STRING} !XSL=NONE [NC] 2) RewriteCond %{QUERY_STRING} calId=([0-9]+) [NC] 3) RewriteCond %{QUERY_STRING} skinId=([0-9]+) [NC] 4) RewriteRule ^/calendar

RE: [us...@httpd] Re: RewriteCond how to set variable

2010-12-21 Thread Campbell, Lance
Thanks for your response. I get the following error message: RewriteCond: unknown flag 'E' What I used: RewriteCond %{QUERY_STRING} !XSL=NONE [NC] RewriteCond %{QUERY_STRING} calId=([0-9]+) [E=CALID:%1] RewriteCond %{QUERY_STRING} skinId=([0-9]+) [E=SKINID:%1] RewriteRule ^/calendar/list

Re: [us...@httpd] httpd monitoring

2010-12-21 Thread Jeroen Geilman
On 12/21/10 12:42 PM, Hugo Gomes wrote: Hi all, I'm managing a web server, and time to time, my machine load average goes up, and when I run 'top' I see 1 or 2 httpd process consuming CPU and Memory. So my question is, there is any tools that i can monitored my machine and i

[us...@httpd] Re: RewriteCond how to set variable

2010-12-21 Thread Andrew Schulman
Thanks for your response. I get the following error message: RewriteCond: unknown flag 'E' That's because the E flag is only valid on a RewriteRule statement, not RewriteCond. The mod_rewrite docs show this. So, in order to store a match result in an environment variable, you have to use a

Re: [us...@httpd] Issue with mod_proxy ProxyPass balancer and web sockets

2010-12-21 Thread Tom Evans
On Tue, Dec 21, 2010 at 2:17 PM, Oscar Cassetti oscar.getstr...@gmail.com wrote: Do you think that would be too hard to extend mod_proxy_http in order to support them? Or would it be more sensible to look at some other module or application that support websocktes? Wikipedia says* this about

Re: [us...@httpd] RewriteCond how to set variable

2010-12-21 Thread Eric Covener
1)  RewriteCond %{QUERY_STRING} !XSL=NONE [NC] 2)  RewriteCond %{QUERY_STRING} calId=([0-9]+) [NC] 3)  RewriteCond %{QUERY_STRING} skinId=([0-9]+) [NC] 4)  RewriteRule ^/calendar http://test.webservices.illinois.edu/calendar/list/%1?skinId=%2  [L] some other options to

[us...@httpd] Re: RewriteCond how to set variable

2010-12-21 Thread Andrew Schulman
My email client displayed what you wanted me to insert incorrectly. I put the code in correctly but it still does not work. I added R=301 to the end so that it would redirect so I could check the apache logs. The apache log shows this: uob017.admin.uiuc.edu - - [21/Dec/2010:11:46:23

[us...@httpd] Re: RewriteCond how to set variable

2010-12-21 Thread Andrew Schulman
My email client displayed what you wanted me to insert incorrectly. I put the code in correctly but it still does not work. I added R=301 to the end so that it would redirect so I could check the apache logs. Good debugging trick.

RE: [us...@httpd] Re: RewriteCond how to set variable

2010-12-21 Thread Campbell, Lance
I did find a work around by doing the follow: RewriteCond %{QUERY_STRING} !XSL=NONE [NC] RewriteCond %{QUERY_STRING} skinId=([0-9]+)(.*)calId=([0-9]) [NC] RewriteRule ^/calendar http://test.webservices.illinois.edu/calendar/list/%3?skinId=%1 [L,R=301] RewriteCond %{QUERY_STRING} !XSL=NONE

Re: [us...@httpd] Re: RewriteCond how to set variable

2010-12-21 Thread Björn Zettergren
On 12/21/2010 07:12 PM, Andrew Schulman wrote: My email client displayed what you wanted me to insert incorrectly. I put the code in correctly but it still does not work. I added R=301 to the end so that it would redirect so I could check the apache logs. Good debugging trick. For