Re: [us...@httpd] Re: HTTP doesn't work after upgrading from 2.0.55 to 2.2.15

2010-06-01 Thread Chen Chien-Yu
Hi All, After using the strace tools, there's a new find. It will stop at the function call read() A infinite loop happens in server/core_filters.c ap_core_input_filter(). if (mode == AP_MODE_EATCRLF) { apr_bucket *e; const char *c; while (1) { if

Re: [us...@httpd] Problems uploading files to Apache HTTP server using Internet Explorer 6

2010-06-01 Thread Baljeet Nijjhar
The suggestion from Oracle Support (which packages Apache for our application) was to increase the KeepAliveTimeout in httpd.conf to a value above the default for Internet Explorer (60 seconds). I tried 75 seconds, and so far, have not encountered the issue again (by contrast, if I dropped it to

[us...@httpd] Combining deny and allow conditions

2010-06-01 Thread Tim Watts
Hi, Could do with some guru guidance :) I'd like to only allow certain file extensions to be served without messing up my other host based allow/deny rules. Right now I have this in my config: (included into both :80 and :443 virtualhost sections) # We will explicitly allow only certain

Re: [us...@httpd] Combining deny and allow conditions

2010-06-01 Thread Eric Covener
I could do it better if there was a FilesNotMatch directive or equivalent. You can use the zero-width assertions like negative lookahead in PCRE to create *Match directives that are conceptually negated. -- Eric Covener cove...@gmail.com

Re: [us...@httpd] Combining deny and allow conditions

2010-06-01 Thread Tim Watts
On 01/06/10 13:29, Eric Covener wrote: I could do it better if there was a FilesNotMatch directive or equivalent. You can use the zero-width assertions like negative lookahead in PCRE to create *Match directives that are conceptually negated. Ah. Any chance of an example to get me going,

[us...@httpd] NTLM+apache 2

2010-06-01 Thread Vishwanath R.R
Hi There, I have configured NTLM with our subversion configured on Apache 2 in our Linux box.The package I took from http://search.cpan.org/~speeves/Apache2-AuthenNTLM-0.02/AuthenNTLM.pm#PerlS= etVar_ntlmdebug The configuration was fine..and Apache 2 restarted successfully. But the page does not

Re: [us...@httpd] Combining deny and allow conditions

2010-06-01 Thread Eric Covener
On Tue, Jun 1, 2010 at 8:34 AM, Tim Watts t...@dionic.net wrote: On 01/06/10 13:29, Eric Covener wrote: I could do it better if there was a FilesNotMatch directive or equivalent. You can use the zero-width assertions like negative lookahead in PCRE to create *Match directives that are

Re: [us...@httpd] Combining deny and allow conditions

2010-06-01 Thread Tim Watts
On 01/06/10 14:24, Eric Covener wrote: On Tue, Jun 1, 2010 at 8:34 AM, Tim Wattst...@dionic.net wrote: On 01/06/10 13:29, Eric Covener wrote: I could do it better if there was a FilesNotMatch directive or equivalent. You can use the zero-width assertions like negative lookahead in PCRE to

Re: [us...@httpd] Apache as caching proxy

2010-06-01 Thread Igor Galić
- Nilesh Govindarajan li...@itech7.com wrote: Hi, I have an installation of Apache running, so thinking of using it as a personal caching server after being fed up of firefox crashes which clears the cache. I have set it up using the manual and some guides using Google, but how do I

[us...@httpd] htaccess and httpd.conf precedence (mod_deflate)

2010-06-01 Thread Joost Schuttelaar
Hi everybody, I'm running a Apache installation using a standard DirectAdmin setup, but I'm having problems with handling of gzipped output. One of my PHP scripts outputs a .ZIP file (with appropriate headers). By default, the output of this script gets gzipped by mod_deflate. Of course there

[us...@httpd] Load Balancer Apache

2010-06-01 Thread Nasir Zia
Hi, I have running Apache mod_proxy_balancer with three tomcats i got these errors in apache logs [Tue Jun 01 14:57:35 2010] [error] (70007)The timeout specified has expired: ajp_ilink_receive() can't receive header [Tue Jun 01 14:57:35 2010] [error] ajp_read_header: ajp_ilink_receive failed

Re: [us...@httpd] Apache as caching proxy

2010-06-01 Thread Nilesh Govindarajan
2010/6/1 Igor Galić i.ga...@brainsware.org: - Nilesh Govindarajan li...@itech7.com wrote: Hi, I have an installation of Apache running, so thinking of using it as a personal caching server after being fed up of firefox crashes which clears the cache. I have set it up using the manual

Re: [us...@httpd] Load Balancer Apache

2010-06-01 Thread Igor Galić
- Nasir Zia nasir...@gmail.com wrote: Hi, I have running Apache mod_proxy_balancer with three tomcats i got these errors in apache logs [Tue Jun 01 14:57:35 2010] [error] (70007)The timeout specified has expired: ajp_ilink_receive() can't receive header [Tue Jun 01 14:57:35 2010]

[us...@httpd] Apache Reverse Proxy for Citrix MetaFrame Presentation Server

2010-06-01 Thread Ruiyuan Jiang
Hi, I need to setup a Reverse Proxy server for Citrix MetaFrame Presentation server for people to access internal resources. My Apache reverse proxy server is running and it proxies http and https requests. The Citrix backend server uses port 443 for TCP tunnel not https. Should I use

Re: [us...@httpd] htaccess and httpd.conf precedence (mod_deflate)

2010-06-01 Thread Eric Covener
On Tue, Jun 1, 2010 at 12:12 PM, Joost Schuttelaar jo...@joostschuttelaar.nl wrote: Hi everybody, I'm running a Apache installation using a standard DirectAdmin setup, but I'm having problems with handling of gzipped output. One of my PHP scripts outputs a .ZIP file (with appropriate

Re: [us...@httpd] htaccess and httpd.conf precedence (mod_deflate)

2010-06-01 Thread Joost Schuttelaar
Hi Eric, two pieces of trivia that might fill in some blanks: 1) SetEnv runs much later than SetEnvIf/BrowserMatch no matter what context you place it in 2) somewhat counterintuitively, Location has precedence over Directory -- perhaps you could wrap the canned deflate stuff in a

Re: [us...@httpd] Apache Reverse Proxy for Citrix MetaFrame Presentation Server

2010-06-01 Thread Igor Cicimov
Maybe this will work: Virtualhost Servername citrix.example.com ProxyRequests Off AllowCONNECT 443 ProxyPass / backendserver ProxyPassReverse / backendserver /Virtualhost and yes you need to have mod_proxy_connect loaded first. Igor On Wed, Jun 2, 2010 at

Re: [us...@httpd] Re: HTTP doesn't work after upgrading from 2.0.55 to 2.2.15

2010-06-01 Thread Chen Chien-Yu
Hi All, I am sure the problem is irrelevant to the CGI and mod_CGI. Because I try to load a image file, the result is the same. And I forget to say one thing, the platform I'm using is a PowerPC architecture in an embedded system, so the apache is cross-compiled. I guess it might be the cause,

[us...@httpd] modify mod_deflate with LZSS algorithm

2010-06-01 Thread PIPIT isnatia
Hi,,, i'm newbie here.. if I want to modify mod_deflate using LZSS algorithms, where do I need to change about this code. should i change all of them (code from this link below) or part of them. http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_deflate.c?view=markup please