Re: [EMAIL PROTECTED] mod_cache and mod_mem_cache

2008-11-05 Thread Manik Taneja
Andrew Dixon wrote: Hi All, I have enabled mod_cache and I'm using mem caching (mod_mem_cache) as my caching type, but how can I check if it is actually doing anything. Is there anyway to see what is in the cache, being served from the cache, what the cache hit rate is, etc...??? There isn'

[EMAIL PROTECTED] Re: ProxyPass and POST Requests

2008-11-05 Thread Volkan YAZICI
On Tue, 04 Nov 2008, Volkan YAZICI <[EMAIL PROTECTED]> writes: > The other side of the redirection (192.168.1.{3,4}) is handled by Apache > Tomcat servers. When one issues a POST request, Apache (192.168.1.2) > complains that: > > Proxy Error > > The proxy server received an invalid response fr

Re: [EMAIL PROTECTED] mod_rewrite rule

2008-11-05 Thread Eric Covener
On Wed, Nov 5, 2008 at 5:46 AM, André Warnier <[EMAIL PROTECTED]> wrote: > I mean, before Apache even gets to the .htaccess file, it has to find the > path to the directory wher the .htaccess file is. And once it finds it, it > would have to re-interpret that same path and change it. > It does not

Re: [EMAIL PROTECTED] mod_rewrite rule

2008-11-05 Thread Krist van Besien
On Wed, Nov 5, 2008 at 11:46 AM, André Warnier <[EMAIL PROTECTED]> wrote: > On the other hand, in the Apache 2.2 mod_rewrite on-line help, there is this > paragraph : > RewriteRule can be used in per-directory config files (.htaccess). In such > a case, it will act locally, stripping the local di

Re: [us...@httpd] SSL Proxy

2008-11-05 Thread Krist van Besien
On Tue, Nov 4, 2008 at 7:02 PM, Florian Lindner <[EMAIL PROTECTED]> wrote: > Hello, > > I have an SSL certificate of www.example.org. Now I want to proxy another > domain (which is a v-host on the same server) through the beforementioned > SSL domain. > > My first try was: (in the doc root .htacces

Re: [EMAIL PROTECTED] htaccess redirect URL fragment problem with Safari browser

2008-11-05 Thread Frank Gingras
Robert, Your first quote simply states that the characters after the hash sign cannot be extracted by mod_rewrite. Nothing else. That guide even gives you a workaround. The second link can be circumvented with the [NE] flag. In any case, try this simple ruleset on your server (directly in on

Re: [EMAIL PROTECTED] htaccess redirect URL fragment problem with Safari browser

2008-11-05 Thread Robert T Wyatt
Here's the link: http://www.utexas.edu/student/registrar/schedules/092/regrules/all.html#acc You'll find that you are successfully redirected on every browser except Safari to: http://registrar.utexas.edu/schedules/092/regrules/all.html#acc (on Safari you wind up at: http://registrar.utexas.edu/sc

Re: [EMAIL PROTECTED] mod_rewrite rule

2008-11-05 Thread André Warnier
Eric Covener wrote: On Tue, Nov 4, 2008 at 4:16 PM, Seb <[EMAIL PROTECTED]> wrote: Hi, I'm having trouble specifying a seemingly very simple rewrite rule in .htaccess, where I simply want to redirect from say http://some.host.com/path to http://some.host.com/Path, and any subdirectories of cour

[EMAIL PROTECTED] WebDAV & Symlinks

2008-11-05 Thread Adrian Gschwend
Hi group, I'm using WebDAV on Apache 2.2 to give users access to certain directories on my server. This works perfectly fine on all platforms so far. Only thing is that I would like to use Symlinks as well to make the organization of the server a bit easier. I did enable FollowSymLinks. When I vi

Re: [EMAIL PROTECTED] mod_rewrite rule

2008-11-05 Thread Robert T Wyatt
Yes, in a community with 70,000 users and millions of hits a day, the admins don't like every department to have access to httpd.conf. Eric Covener wrote: > On Wed, Nov 5, 2008 at 5:46 AM, André Warnier <[EMAIL PROTECTED]> wrote: >> I mean, before Apache even gets to the .htaccess file, it has to

Re: [EMAIL PROTECTED] mod_rewrite rule

2008-11-05 Thread André Warnier
Robert T Wyatt wrote: Yes, in a community with 70,000 users and millions of hits a day, the admins don't like every department to have access to httpd.conf. :-) Ok, I can understand them. Although one could wonder, then, why they allow .htaccess files anyway. I believe said departments could

Re: [EMAIL PROTECTED] htaccess redirect URL fragment problem with Safari browser

2008-11-05 Thread Eric Covener
On Wed, Nov 5, 2008 at 9:46 AM, Robert T Wyatt <[EMAIL PROTECTED]> wrote: > Here's the link: > http://www.utexas.edu/student/registrar/schedules/092/regrules/all.html#acc > > You'll find that you are successfully redirected on every browser > except Safari to: > http://registrar.utexas.edu/schedule

Re: [EMAIL PROTECTED] htaccess redirect URL fragment problem with Safari browser

2008-11-05 Thread Frank Gingras
Robert, The issue is simple here: The www.utexas.edu site automatically redirects to utexas.edu with mod_rewrite (see http://httpd.apache.org/docs/2.2/misc/rewriteguide.html#url). As you know, and as I explained to you several times now, mod_rewrite cannot see or capture the initial anchor, s

Re: [EMAIL PROTECTED] htaccess redirect URL fragment problem with Safari browser

2008-11-05 Thread Eric Covener
On Wed, Nov 5, 2008 at 10:10 AM, Eric Covener <[EMAIL PROTECTED]> wrote: > On Wed, Nov 5, 2008 at 9:46 AM, Robert T Wyatt <[EMAIL PROTECTED]> wrote: >> Here's the link: >> http://www.utexas.edu/student/registrar/schedules/092/regrules/all.html#acc >> >> You'll find that you are successfully redirec

Re: [EMAIL PROTECTED] htaccess redirect URL fragment problem with Safari browser

2008-11-05 Thread Frank Gingras
Eric, See my last reply. It explains his misconceptions. Eric Covener wrote: On Wed, Nov 5, 2008 at 10:10 AM, Eric Covener <[EMAIL PROTECTED]> wrote: On Wed, Nov 5, 2008 at 9:46 AM, Robert T Wyatt <[EMAIL PROTECTED]> wrote: Here's the link: http://www.utexas.edu/student/registrar/sche

[EMAIL PROTECTED] Apache fails to start as service

2008-11-05 Thread Timothy Orme
Hello, I'm running Apache 2.2.10 on Windows 2003 EE. I have a directory aliased to a mapped network drive. I have setup a user which has permissions to access these drives, and have specified that the apache service should be run as that user (By changing the services "Log on" account). However

Re: [EMAIL PROTECTED] htaccess redirect URL fragment problem with Safari browser

2008-11-05 Thread Robert T Wyatt
Hi Frank, I appreciate the fact that you seem to know all the answers and are willing to share them, but apparently you never tried this link with Safari as compared with any other browser: http://www.utexas.edu/student/registrar/schedules/092/regrules/all.html#acc I do understand why the redirec

Re: [EMAIL PROTECTED] htaccess redirect URL fragment problem with Safari browser

2008-11-05 Thread Frank Gingras
Robert, Apparently, you didn't listen to my last reply. Let me put into very simple words: 1) There is a redirection happening from 'www.utexas.edu' to 'utexas.edu', and it's using mod_rewrite. - Apache sees that you accessed www.utexas.edu, and tells you no, I'd rather you use utexas.edu

Re: [EMAIL PROTECTED] htaccess redirect URL fragment problem with Safari browser

2008-11-05 Thread Robert T Wyatt
Frank Gingras wrote: > 'http://utexas.edu/student/registrar/schedules/092/regrules/all.html#acc' > directly. It'll bypass the mod_rewrite redirection, and work as > expected. I tested it here under OSX 10.4. > > There is no 'wishful thinking' in this process, whatsoever. That is so strange! That

[EMAIL PROTECTED] High CPU usage with MPM Worker/Event

2008-11-05 Thread Alexey Vlasov
Hi. Working with Apache I noticed one strange thing such as high consumption of CPU. It looks like this. server status: Parent Server Generation: 2 Server uptime: 27 minutes 54 seconds Total accesses: 137589 - Total Traffic: 6.1 GB CPU Usage: u80.91 s52.19 cu0 cs0 - 7.95% CPU load 82.2 requests/s

Re: [us...@httpd] SSL Proxy

2008-11-05 Thread Florian Lindner
Am 05.11.2008 um 02:23 schrieb Eric Covener: On Tue, Nov 4, 2008 at 1:02 PM, Florian Lindner <[EMAIL PROTECTED]> wrote: RewriteRule ^(.*)$ http://target.com/$1 [P,L] There raises the problem that the application on target.com perfoms an redirection to /foo/bar/ (mind the first slash) with

Re: [EMAIL PROTECTED] mod_cache and mod_mem_cache

2008-11-05 Thread Andrew Dixon
Hi Manik, Can you explain how you did this? Thanks Andrew 2008/11/5 Manik Taneja <[EMAIL PROTECTED]> > Andrew Dixon wrote: > >> Hi All, >> >> I have enabled mod_cache and I'm using mem caching (mod_mem_cache) as my >> caching type, but how can I check if it is actually doing anything. Is there

[EMAIL PROTECTED] Find file in mod_disk_cache cache

2008-11-05 Thread Matthew Tice
Hello, I'm using mod_disk_cache for my static content. I need a way of deleting a cached entry manually. I've thrown together a shell script to do that (taking the name of the file as a command argument) but rolling through 2G worth of small jpeg's takes quite a while. I was wondering if anyone

[EMAIL PROTECTED] CacheIgnoreHeaders Not Working

2008-11-05 Thread Patrick Ostendarp
Hello Everyone, I am having a problem with the CacheIgnoreHeaders feature in mod_cache. We are using CA SiteMinder for our web SSO and mod_cache is caching a users session then distributing it out to other users who access the same page. We are using version 2.2.10 of apache to act as a rever

[EMAIL PROTECTED] modsecurity headaches

2008-11-05 Thread Mailing List Receiver
A rule in generic_attacks gives me: [Wed Nov 05 17:02:47 2008] [error] [client 99.999.99.999] ModSecurity: Access denied with code 501 (phase 2). Pattern match "(?:\\b(?:(?:n(?:et(?:\\b\\W+?\\blocalgroup|\\.exe)|(?:map|c)\\.exe)|t(?:racer(?:oute|t)|elnet\\.exe|clsh8?|ftp)|(?:w(?:guest|sh)|rcmd|f

[EMAIL PROTECTED] Re: Find file in mod_disk_cache cache

2008-11-05 Thread Matthew Tice
On Wed, Nov 5, 2008 at 3:01 PM, Matthew Tice <[EMAIL PROTECTED]> wrote: > Hello, I'm using mod_disk_cache for my static content. I need a way of > deleting a cached entry manually. I've thrown together a shell script to do > that (taking the name of the file as a command argument) but rolling th

Re: [EMAIL PROTECTED] httpd 2.2.10 mod_proxy bug?

2008-11-05 Thread David Multer
I've done some more testing of this problem, and here's some more detail: - I re-installed 2.2.10 and the problem went away. - I tried switching to mod_proxy_ajp by changing the "http:" prefix in the ProxyPass and ProxyPassReverse to "ajp:" After restarting Apache, I started to get the DNS

Re: [EMAIL PROTECTED] High CPU usage with MPM Worker/Event

2008-11-05 Thread Arnab Ganguly
Hi, Can you try with Non-zero MaxRequestPerChild value.Keep a value which is equal to number of request are particular process you want to handle.Once it is done the process will be killed and a new process is going to be started.I guess your CPU usage should come down. Thanks -A On Thu, Nov 6, 20