No quadratic allocators (was Re: [RELEASE CANDIDATE] libapreq 1.34-RC2)

2007-05-07 Thread Joe Schaefer
Joe Schaefer [EMAIL PROTECTED] writes: Issac Goldstand [EMAIL PROTECTED] writes: The apreq developers are planning a maintenance release of libapreq1. This version primarily addresses an issue noted with FireFox 2.0 truncating file uploads in SSL mode. Please give the tarball at

Re: Child pool not usable for logging

2007-05-07 Thread Sander Temme
On May 5, 2007, at 11:42 AM, Joachim Zobel wrote: ap_log_perror(APLOG_MARK, APLOG_DEBUG, 0, p_cur, xml2_free will free %x., mem); Stupid question: is your LogLevel set to debug? In any case, the stderr fd gets switched to the error log file, so any printf() and

Re: Child pool not usable for logging

2007-05-07 Thread Nick Kew
On Sun, 6 May 2007 21:14:39 +0200 Sander Temme [EMAIL PROTECTED] wrote: On May 5, 2007, at 11:42 AM, Joachim Zobel wrote: ap_log_perror(APLOG_MARK, APLOG_DEBUG, 0, p_cur, xml2_free will free %x., mem); Stupid question: is your LogLevel set to debug? Won't

Re: InterModule Communication(DSO)

2007-05-07 Thread William A. Rowe, Jr.
Graham Dumpleton wrote: Simplest means of setting information for a specific request which can then be seen by a handler implemented in a different module is by setting values in the 'notes' table of the request object. For something more elaborate, you may need to look at using optional

Re: Child pool not usable for logging

2007-05-07 Thread Joachim Zobel
Hi. Now that I understand what is happening I do undestand your post. Maybe I should have read it more carefully. Thx anyway, Joachim

Putting a web front end on an embedded device

2007-05-07 Thread Christina Dostie
Hi All: Sorry in advance if this has been asked before, I've only been looking at modules for a couple of weeks, but I checked everywhere I could think of and I'm still looking for some answers. I have a relatively high powered device on a network with a TCP debug/status port. Users can telnet

Bug report for Apache httpd-1.3 [2007/05/06]

2007-05-07 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Re: Bug 41897 / Session-Stickiness with mod_proxy_balancer

2007-05-07 Thread Ruediger Pluem
On 04/06/2007 01:13 PM, Georg von Zezschwitz wrote: Jim Jagielski wrote: If we state that the evaluation takes place in the occurence of stickysession attributes and suggest stickysession=Cookie:JSESSIONID stickysession=Path:;jsessionid to the user it will perform faster in

Putting a web front end on an embedded device

2007-05-07 Thread Christina Dostie
Hi All: Sorry in advance if this has been asked before, I've only been looking at modules for a couple of weeks, but I checked everywhere I could think of and I'm still looking for some answers. I have a relatively high powered device on a network with a TCP debug/status port. Users can telnet

trunk veto; ProxyPassInterpolateEnv

2007-05-07 Thread William A. Rowe, Jr.
Nick, I'm moving from from a -.9 to a -1 of trunk on this because altering the semantics of ALL of the existing ProxyPass[Reverse] directives in one misplaced or poorly understood directive seems highly hazardous. On any server with more than one administrator, this can be very toxic and cause

Re: [PATCH] mod_wombat: add table_get and table_set

2007-05-07 Thread Akins, Brian
On 5/4/07 7:42 PM, Rici Lake [EMAIL PROTECTED] wrote: In Lua, setting to nil is equivalent to deletion. So I think this should be: if (lua_isnoneornil(L, 3) apr_table_unset(t, key); else { const char *val = luaL_checkstring(L, 3); apr_table_set(t, key, val); } +1

CHANGES file for 1.3 and 2.x

2007-05-07 Thread Jim Jagielski
Seems to me that the more we work on the various 2.x trees (2.0.x, 2.2.x and trunk), the harder it becomes to get the various correct CHANGES entries in sync... For example, the CHANGES for 2.2 and trunk just refer to changes up to 2.0.56... What's the best way of syncing these? Should we stop

Re: Bug 41897 / Session-Stickiness with mod_proxy_balancer

2007-05-07 Thread Mladen Turk
Ruediger Pluem wrote: On 04/06/2007 01:13 PM, Georg von Zezschwitz wrote: Jim Jagielski wrote: attached is the patch for trunk with documentation Co. Could anybody review it commit? Many thanks for sending the patch and my apologies that reviewing it took that long. Please find my

Re: CHANGES file for 1.3 and 2.x

2007-05-07 Thread Ruediger Pluem
On 05/07/2007 05:38 PM, Jim Jagielski wrote: Seems to me that the more we work on the various 2.x trees (2.0.x, 2.2.x and trunk), the harder it becomes to get the various correct CHANGES entries in sync... For example, the CHANGES for 2.2 and trunk just refer to changes up to 2.0.56...

PATCH: mod_wombat: add default scope and cache to config

2007-05-07 Thread Akins, Brian
This patch adds: LuaDefaultCacheStyle and LuaDefaultScope To set defaults for these. The code needs to be change around so that we check dir_config first, and then revert to default. -- Brian Akins Chief Operations Engineer Turner Digital Media Technologies default-config.diff

[Solved] Child pool not usable for logging

2007-05-07 Thread Joachim Zobel
Am Sonntag, den 06.05.2007, 14:25 +0530 schrieb Saju Pillai: err - asking obvious question but .. Your LogLevel is set to debug right ? You were pretty close. According to nicks book (bottom of p. 324), ap_log_perror does not have access to the server_rec and therefor can not know the log level.

Re: Bug 41897 / Session-Stickiness with mod_proxy_balancer

2007-05-07 Thread Ruediger Pluem
On 05/07/2007 05:56 PM, Mladen Turk wrote: I think we could use a simple two use case situation. To be able to backport that to the 2.2 branch I propose a following patch. It adds additional struct member sticky_path that is set to the sticky so if someone has in the config ...

PATCH: mod_wombat fix finfo leak in vmprep.c load_file

2007-05-07 Thread Akins, Brian
Was always allocating finfo from a pool. Now just do it on stack. -- Brian Akins Chief Operations Engineer Turner Digital Media Technologies finfo-leak.diff Description: Binary data

Apache 2.2.4 under Win32 Longhorn

2007-05-07 Thread Mario Brandt
Hello, I've tested apache_2.2.4-win32-x86-openssl-0.9.8d.msi under Longhorn Beta 3 (VMware). Only thing that I changed from the default windows setup, was that I turned off the firewall to test it from my network. After installation I got an error message Process successfull executed. I got that

Re: [Solved] Child pool not usable for logging

2007-05-07 Thread Sander Temme
On May 7, 2007, at 11:38 AM, Joachim Zobel wrote: Am Sonntag, den 06.05.2007, 14:25 +0530 schrieb Saju Pillai: err - asking obvious question but .. Your LogLevel is set to debug right ? You were pretty close. According to nicks book (bottom of p. 324), ap_log_perror does not have access to

Re: trunk veto; ProxyPassInterpolateEnv

2007-05-07 Thread Nick Kew
On Mon, 07 May 2007 09:15:09 -0500 William A. Rowe, Jr. [EMAIL PROTECTED] wrote: Nick, I'm moving from from a -.9 to a -1 of trunk on this because altering the semantics of ALL of the existing ProxyPass[Reverse] directives in one misplaced or poorly understood directive seems highly

Re: Apache 2.2.4 under Win32 Longhorn

2007-05-07 Thread yacsha
what? - Original Message - From: Mario Brandt [EMAIL PROTECTED] To: dev@httpd.apache.org Sent: Tuesday, May 08, 2007 3:47 AM Subject: Apache 2.2.4 under Win32 Longhorn Hello, I've tested apache_2.2.4-win32-x86-openssl-0.9.8d.msi under Longhorn Beta 3 (VMware). Only thing that I

Re: Apache 2.2.4 under Win32 Longhorn

2007-05-07 Thread William A. Rowe, Jr.
yacsha wrote: what? I think Mario's post below is quite clear. I am wondering, however, *where* he sees the error message he cites. A log? A popup command window? An ok box? Is there additional details (a window caption or other details?) Does it continue to happen on each reboot? But

Re: Apache 2.2.4 under Win32 Longhorn

2007-05-07 Thread Mladen Turk
William A. Rowe, Jr. wrote: yacsha wrote: what? I think Mario's post below is quite clear. I am wondering, however, *where* he sees the error message he cites. A log? A popup command window? An ok box? Is there additional details (a window caption or other details?) Does it continue to

Re: Apache 2.2.4 under Win32 Longhorn

2007-05-07 Thread William A. Rowe, Jr.
Mladen Turk wrote: Just tracking the Vista problems down. One problem is the installer. Every awk config rewrite fails so the installation ends up without config files. Didn't try with Administrator account directly, but with the member of the administrators group. I'll look as soon as my

Re: Apache 2.2.4 under Win32 Longhorn

2007-05-07 Thread Mladen Turk
William A. Rowe, Jr. wrote: Mladen Turk wrote: Just tracking the Vista problems down. One problem is the installer. Every awk config rewrite fails so the installation ends up without config files. Didn't try with Administrator account directly, but with the member of the administrators group.