Re: 2.0.x

2006-07-13 Thread Marcin Zawadzki/GlobalVanet.com
when you repair this problem, in which version? Marcin Zawadzki, http://ftims.pl/~marcin/ GPG: 4096D/81DFA928 6C5C F525 8CAA 2A20 B878 C248 08FE 060C 81DF A928 Nick Kew napisał(a): I had in mind to fix this tonight. But it's too complex to get right late at night after a long day and a

Re: [VOTE] Release mod_aspdotnet build 2004?

2006-07-13 Thread James Park (pencil_ethics)
Binary looks good on 2.0.58 - runs Windows Server Update Services with zero problems. Because I'm roughly 1 km from my test machine (and will remain so until July 27), I haven't gotten around to testing it on 2.2.2, but I believe there will be no problems on 2.2.x. Can't compile source either,

Re: Additing a storage for the shared information of the worker in mod_proxy

2006-07-13 Thread Jim Jagielski
On Jul 12, 2006, at 6:37 PM, Brian Akins wrote: Jean-frederic Clere wrote: Hi, I am still trying to replace the scoreboard by shared memory to store the shared information of the workers, I am now thinking to get this by adding modules like the prototype I have enclosed (that is a patch

Re: Additing a storage for the shared information of the worker in mod_proxy

2006-07-13 Thread Brian Akins
Jim Jagielski wrote: If this is data that needs to be accessed from non-proxy modules then yes, I agree. A basic API could look like. By worker, I am thinking about the mpm sense, not the proxy sense. I guess slot may be a better term: /*used for ap_scoreboard_do. mem is the memory

Re: Additing a storage for the shared information of the worker in

2006-07-13 Thread Jim Jagielski
Brian Akins wrote: Thoughts. Somthing very similar to this is used by several very busy web sites... +1. For example, a memcached based scoreboard would be pretty cool ;) -- === Jim Jagielski [|] [EMAIL

Re: Additing a storage for the shared information of the worker in

2006-07-13 Thread Jim Jagielski
Jim Jagielski wrote: Brian Akins wrote: Thoughts. Somthing very similar to this is used by several very busy web sites... +1. For example, a memcached based scoreboard would be pretty cool ;) I meant capable not necessarily based --

Re: Additing a storage for the shared information of the worker in

2006-07-13 Thread Brian Akins
Jim Jagielski wrote: +1. For example, a memcached based scoreboard would be pretty cool ;) maybe in mod_scoreboard it may use a provider mechanism to actually implement the scoreboard. Maybe have an ap_scoreboard_create_ex where you could explicitly name a provider. -- Brian Akins

Re: Additing a storage for the shared information of the worker in

2006-07-13 Thread Jim Jagielski
Brian Akins wrote: Jim Jagielski wrote: +1. For example, a memcached based scoreboard would be pretty cool ;) maybe in mod_scoreboard it may use a provider mechanism to actually implement the scoreboard. Maybe have an ap_scoreboard_create_ex where you could explicitly name a

Re: Additing a storage for the shared information of the worker in

2006-07-13 Thread Brian Akins
Jim Jagielski wrote: Yeah, that's what I was thinking as well! default could just use apr_shm. -- Brian Akins Chief Operations Engineer Turner Digital Media Technologies

mod_expires ExpiresOverride

2006-07-13 Thread Bart van der Schans
Hi all, I found that there is no option to override the Expires header with mod_expires. Especially when you use apache (with mod_cache) as a reverse proxy it can be very useful to be able to override the expires headers. I've created a patch for mod_expires for the 2.2.x branch (trunk is

Re: Additing a storage for the shared information of the worker in

2006-07-13 Thread Jean-frederic Clere
Jim Jagielski wrote: Brian Akins wrote: Jim Jagielski wrote: +1. For example, a memcached based scoreboard would be pretty cool ;) maybe in mod_scoreboard it may use a provider mechanism to actually implement the scoreboard. Maybe have an ap_scoreboard_create_ex where you

configuration problem

2006-07-13 Thread jiqiang yao
hi, I use apacher 2.0. I set the document root as .../web. Anything ending in .html can be public. However, the folder within this directory are not public, although I set the mode to 755. Canbody can help me? yao __ Do You Yahoo!? Tired of spam?

Re: Additing a storage for the shared information of the worker in mod_proxy

2006-07-13 Thread Jean-frederic Clere
Brian Akins wrote: Jim Jagielski wrote: If this is data that needs to be accessed from non-proxy modules then yes, I agree. A basic API could look like. By worker, I am thinking about the mpm sense, not the proxy sense. I guess slot may be a better term: /*used for ap_scoreboard_do.

Re: Additing a storage for the shared information of the worker in mod_proxy

2006-07-13 Thread Brian Akins
Jean-frederic Clere wrote: With such an interface you assume only one process will access to one slot... That is what the scoreboard allows. Allowing updates from different proccesses on the same slot. Should we have an ap_slot_read_look() and an ap_slot_unlock() for that? No. we don't have

Re: IPV6 enabled on supplied Windows 32 binary?

2006-07-13 Thread Colm MacCarthaigh
On Thu, Jul 13, 2006 at 10:47:15AM -0500, Jess Holle wrote: So what's the story with IPv6 on Windows? Works fine in every version of windows since 2000, although 2000 itself needs a kit and patching installed. Are there some versions of Windows which always support it, but the headers we use

Re: Additing a storage for the shared information of the worker in

2006-07-13 Thread Jim Jagielski
On Jul 13, 2006, at 11:26 AM, Jean-frederic Clere wrote: Jim Jagielski wrote: Brian Akins wrote: Jim Jagielski wrote: +1. For example, a memcached based scoreboard would be pretty cool ;) maybe in mod_scoreboard it may use a provider mechanism to actually implement the scoreboard.

Re: Additing a storage for the shared information of the worker in mod_proxy

2006-07-13 Thread Jim Jagielski
On Jul 13, 2006, at 11:55 AM, Jean-frederic Clere wrote: With such an interface you assume only one process will access to one slot... That is what the scoreboard allows. Allowing updates from different proccesses on the same slot. Should we have an ap_slot_read_look() and an

Re: Additing a storage for the shared information of the worker in mod_proxy

2006-07-13 Thread Brian Akins
Jim Jagielski wrote: Having some external (or even internal) process update a slot that isn't its own is dangerous. And the required locking would be slow. In my own hacked proxy, an external healthchecker and the proxy share a piece of shared memory that is read-only by apache and read-write

Re: Additing a storage for the shared information of the worker in mod_proxy

2006-07-13 Thread Jean-frederic Clere
Brian Akins wrote: Jean-frederic Clere wrote: With such an interface you assume only one process will access to one slot... That is what the scoreboard allows. Allowing updates from different proccesses on the same slot. Should we have an ap_slot_read_look() and an ap_slot_unlock() for that?

Re: Additing a storage for the shared information of the worker in mod_proxy

2006-07-13 Thread Jean-frederic Clere
Brian Akins wrote: Jim Jagielski wrote: Having some external (or even internal) process update a slot that isn't its own is dangerous. And the required locking would be slow. In my own hacked proxy, an external healthchecker and the proxy share a piece of shared memory that is read-only

Re: IPV6 enabled on supplied Windows 32 binary?

2006-07-13 Thread Jess Holle
Colm MacCarthaigh wrote: On Thu, Jul 13, 2006 at 10:47:15AM -0500, Jess Holle wrote: So what's the story with IPv6 on Windows? Works fine in every version of windows since 2000, although 2000 itself needs a kit and patching installed. Great.  That covers all versions

Re: Additing a storage for the shared information of the worker in mod_proxy

2006-07-13 Thread Jean-frederic Clere
Brian Akins wrote: Jim Jagielski wrote: If this is data that needs to be accessed from non-proxy modules then yes, I agree. A basic API could look like. By worker, I am thinking about the mpm sense, not the proxy sense. I guess slot may be a better term: /*used for ap_scoreboard_do.

Re: svn commit: r421686 - in /httpd/httpd/trunk: CHANGES docs/manual/mod/mod_proxy.xml modules/proxy/mod_proxy.c modules/proxy/mod_proxy.h modules/proxy/proxy_util.c

2006-07-13 Thread Robert Ionescu
[EMAIL PROTECTED] wrote: Author: niq Date: Thu Jul 13 12:00:26 2006 New Revision: 421686 Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml +defaultProxyErrorOverride Off/default Just a trivial think: Shouldn't that be ProxyPassInterpolateEnv Off? -- Robert

Re: svn commit: r421686 - in /httpd/httpd/trunk: CHANGES docs/manual/mod/mod_proxy.xml modules/proxy/mod_proxy.c modules/proxy/mod_proxy.h modules/proxy/proxy_util.c

2006-07-13 Thread Nick Kew
On Thursday 13 July 2006 22:57, Robert Ionescu wrote: [EMAIL PROTECTED] wrote: Author: niq Date: Thu Jul 13 12:00:26 2006 New Revision: 421686 Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml +defaultProxyErrorOverride Off/default Just a trivial think: Shouldn't that be

Re: 2.0.x

2006-07-13 Thread William A. Rowe, Jr.
Nick Kew wrote: I had in mind to fix this tonight. But it's too complex to get right late at night after a long day and a couple of glasses of wine. A look at it suggests we have a bug in ap_directory_walk affecting all versions. The cached dir walk optimisation at lines 555-583 (Trunk) is

Re: 2.0.x

2006-07-13 Thread William A. Rowe, Jr.
Marcin Zawadzki/GlobalVanet.com wrote: when you repair this problem, in which version? Marcin, if you continued this dialog on [EMAIL PROTECTED] where you originally reported it, the dev team would be quite a bit more likely to engage in constructive dialog. I have no issue with discrete vuln

Re: IPV6 enabled on supplied Windows 32 binary?

2006-07-13 Thread William A. Rowe, Jr.
Jess Holle wrote: So what's the story with IPv6 on Windows? Are there some versions of Windows which always support it, but the headers we use for Windows don't detect this at build time? No, the version of winsock2 and ws2_32 .dll files either do or do not support IPv6, so its been built so

Re: 2.0.x

2006-07-13 Thread Nick Kew
On Friday 14 July 2006 00:46, William A. Rowe, Jr. wrote: OK, I have a fix that appears to work. Mostly. Well, it fixes the problem reported. This was working with 2.2.2, and I attach a patch against that. Nick Kew wrote: I had in mind to fix this tonight. But it's too complex to get right

RE: [VOTE] Release mod_aspdotnet build 2004?

2006-07-13 Thread Trent Nelson
From: William A. Rowe, Jr. [mailto:[EMAIL PROTECTED] Please cast your +/- 1's to release mod_aspdotnet-2.x.0.2004-source.zip (along with associated binaries ...2.0.0.2004.msi and ...2.2.0.2004.msi, one corresponding to 2.0.44 and later, the other to 2.2.2 and later). +1 I tried the 2.x.0

Re: Simple API for HTTP GET?

2006-07-13 Thread Lai Yiu Fai
Hi, I have asked similar question before and looking for solution sticked with Apache 2.x codebase only. Some replied to take a look at mod_proxy_http and mod_include module as they do the exact thing. However, it is complicated and hard to understand up to my knowledge about Apache internal.