Re: [STATUS] (httpd-trunk) Wed Jan 17 23:50:11 2007

2007-01-17 Thread Sander Temme
Ken, Perhaps you can also do a 2.2 branch version? Another consideration: perhaps we should run this from apache.org hardware, so infra can maintain it? S. On Jan 17, 2007, at 8:50 PM, Rodent of Unusual Size wrote: APACHE 2.3 STATUS: -*- text-*

[STATUS] (httpd-2.0) Wed Jan 17 23:51:35 2007

2007-01-17 Thread Rodent of Unusual Size
APACHE 2.0 STATUS: -*-text-*- Last modified at [$Date: 2007-01-11 02:31:57 -0500 (Thu, 11 Jan 2007) $] The current version of this file can be found at: * http://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x/STATUS Documentation status is main

[STATUS] (httpd-trunk) Wed Jan 17 23:50:11 2007

2007-01-17 Thread Rodent of Unusual Size
APACHE 2.3 STATUS: -*-text-*- Last modified at [$Date: 2006-08-22 16:41:03 -0400 (Tue, 22 Aug 2006) $] The current version of this file can be found at: * http://svn.apache.org/repos/asf/httpd/httpd/trunk/STATUS Documentation status is maintained se

Re: Solved: mod_disk_cache and mod_include bugs and suggestions

2007-01-17 Thread Giuliano Gavazzi
On 17 Jan 2007, at 17:32, Niklas Edmundsson wrote: patches! And I suppose now you agree that the extra indentation on my patch stemmed from the broken nature of the original code! Actually I don't. Either you or me have misunderstood how buckets work, since the rest of the code should synt

Re: overflow in mod_autoindex suspected - solaris - httpd 2.2.*

2007-01-17 Thread Derek Cooper
The problem that in an autogenerated directory index, if the > 'HeaderName' file is 256 bytes or more, and it has mime type text/html, > Apache returns an empty page. You can look at > http://www.math.technion.ac.il/test_mod_auto_index/ for a > demonstration. The same test on a RedHat Enterprise L

Re: Mod_cache expires check

2007-01-17 Thread Bart van der Schans
Roy T. Fielding wrote: On Jan 17, 2007, at 12:23 PM, Ruediger Pluem wrote: On 01/15/2007 01:56 PM, Bart van der Schans wrote: In r463496 the following check was added to mod_cache.c : else if (exp != APR_DATE_BAD && exp < r->request_time) { /* if a Expires header is in the past

Re: Mod_cache expires check

2007-01-17 Thread Roy T. Fielding
On Jan 17, 2007, at 12:23 PM, Ruediger Pluem wrote: On 01/15/2007 01:56 PM, Bart van der Schans wrote: In r463496 the following check was added to mod_cache.c : else if (exp != APR_DATE_BAD && exp < r->request_time) { /* if a Expires header is in the past, don't cache it */

Re: Mod_python: Memory leak - bug or common feature?

2007-01-17 Thread Graham Dumpleton
[EMAIL PROTECTED] wrote .. > > > Graham, > Thank you for your reply. > > Previously you said you were running > > out of resources which suggested runaway memory use. Ie., process size > > just kept growing and growing until machine memory exhausted. > When I used previously my program with djan

Re: Mod_cache expires check

2007-01-17 Thread Ruediger Pluem
On 01/15/2007 01:56 PM, Bart van der Schans wrote: > In r463496 the following check was added to mod_cache.c : > > else if (exp != APR_DATE_BAD && exp < r->request_time) > { > /* if a Expires header is in the past, don't cache it */ > reason = "Expires header already expi

apxs not found...

2007-01-17 Thread 张 臻博
hello, when i try to use apxs is to install extension modules for the Apache server. I use the command such as : $ apxs -i -a -c mod_foo.c however, i got the "apxs : command not found message." Then i use locate apxs trying to find the location. Actually it can be found , i got this kind of

Re: Mod_cache expires check

2007-01-17 Thread Henrik Nordstrom
mån 2007-01-15 klockan 13:56 +0100 skrev Bart van der Schans: > In r463496 the following check was added to mod_cache.c : > > else if (exp != APR_DATE_BAD && exp < r->request_time) > { > /* if a Expires header is in the past, don't cache it */ > reason = "Expires header alr

configuration problem

2007-01-17 Thread 张 臻博
hello, I have one module called mod_cookie.c, it is located in httpd-2.2.3/modules/filters. I try to include this module into configuration. the command i use is : ./configure --prefix=some_root --with-module=filters:cookie however, after configuration, i check the config.log file and find t

Mod_cache expires check

2007-01-17 Thread Bart van der Schans
In r463496 the following check was added to mod_cache.c : else if (exp != APR_DATE_BAD && exp < r->request_time) { /* if a Expires header is in the past, don't cache it */ reason = "Expires header already expired, not cacheable"; } This check fails to correctly identif

Re: Solved: mod_disk_cache and mod_include bugs and suggestions

2007-01-17 Thread Niklas Edmundsson
On Wed, 17 Jan 2007, Giuliano Gavazzi wrote: Is this in trunk or in 2.2.4 proper? You should probably ignore mod_disk_cache on trunk until that situation is settled. I could work on mod_disk_cache from 2.2.4 proper, and find what causes the bug with SSI pages, but I do not see why I should

Re: Solved: mod_disk_cache and mod_include bugs and suggestions

2007-01-17 Thread Giuliano Gavazzi
On 17 Jan 2007, at 16:06, Niklas Edmundsson wrote: On Wed, 17 Jan 2007, Giuliano Gavazzi wrote: rv = apr_file_seek(dobj->hfd, APR_SET, &off); does not rewind if the file has been opened with APR_FOPEN_BUFFERED. Now, I This is an APR bug, I submitted a bug report for it a while

Re: Solved: mod_disk_cache and mod_include bugs and suggestions

2007-01-17 Thread Niklas Edmundsson
On Wed, 17 Jan 2007, Giuliano Gavazzi wrote: rv = apr_file_seek(dobj->hfd, APR_SET, &off); does not rewind if the file has been opened with APR_FOPEN_BUFFERED. Now, I This is an APR bug, I submitted a bug report for it a while ago. I worked around it by not using buffering at all a

Re: Solved: mod_disk_cache and mod_include bugs and suggestions

2007-01-17 Thread Giuliano Gavazzi
On 17 Jan 2007, at 12:15, Giuliano Gavazzi wrote: note that I am still calling store_headers, for it has side effects (presumably the stuff you say it should do). But store_disk_headers should not, unless it overwrites the headers when called again with the correct size. But this is not th

Re: Solved: mod_disk_cache and mod_include bugs and suggestions

2007-01-17 Thread Giuliano Gavazzi
On 17 Jan 2007, at 10:36, Niklas Edmundsson wrote: On Wed, 17 Jan 2007, Giuliano Gavazzi wrote: I have a solution for the r470455 mod_disk_cache not caching SSI. There are two points where the module seems incorrect to me, changing those makes it work: [...] First, don't reindent code when

mod_disk_cache jumbopatch - new revision

2007-01-17 Thread Niklas Edmundsson
I uploaded a new version of our mod_disk_cache jumbopatch for httpd 2.2.4 to http://issues.apache.org/bugzilla/show_bug.cgi?id=39380 It's what we've been using for a couple of months now (modulo upgrade to httpd 2.2.4) and should be considered fairly stable. It has survived all sorts of path

Re: Mod_python: Memory leak - bug or common feature?

2007-01-17 Thread Graham Dumpleton
On 17/01/2007, at 8:54 PM, [EMAIL PROTECTED] wrote: Thank you for your reply. Now I use Apache 2.2.4 Mod_python 3.3.0.b Python 2.3.5 The results are more or less the same when I used Apache 2.0 and mod_python 3.1.3-1 Python 2.3.4 Memory increases when I read (filter.read()) or write( filter.

Mod_python: Memory leak - bug or common feature?

2007-01-17 Thread export
Thank you for your reply. Now I use Apache 2.2.4 Mod_python 3.3.0.b Python 2.3.5 The results are more or less the same when I used Apache 2.0 and mod_python 3.1.3-1 Python 2.3.4 Memory increases when I read  (filter.read()) or write( filter.write(s). In otherwords, memory is not released a

Re: Solved: mod_disk_cache and mod_include bugs and suggestions

2007-01-17 Thread Niklas Edmundsson
On Wed, 17 Jan 2007, Giuliano Gavazzi wrote: I have a solution for the r470455 mod_disk_cache not caching SSI. There are two points where the module seems incorrect to me, changing those makes it work: Since you're talking about the code on trunk, you should be warned that the current state