[jira] Created: (MODPYTHON-194) Memory leak due to not clearing thread state object before deletion.

2006-10-20 Thread Graham Dumpleton (JIRA)
Memory leak due to not clearing thread state object before deletion. Key: MODPYTHON-194 URL: http://issues.apache.org/jira/browse/MODPYTHON-194 Project: mod_python Issue Ty

Re: child_init hook...

2006-10-20 Thread Michael Vergoz
Hi,> displacing the hook before "unixd_setup_child" ? but what is the impact of > this ?Immediately i think that's dengeurous.You are facing to a real problem because, if i well understood, you would like to refresh configurations and you can't read these files because the chroot...I think, f

child_init hook...

2006-10-20 Thread Mathieu CARBONNEAUX
hi,i'm searching about to ameliorate chroot funciton of "mod_chroot" and "mod_security" module to be working normaly with apache reload.the probleme is that the chroot occure in apache main processes who control child forking...and not in the start of the child (after the fork)...because of tha

Re: Question about ap_get_module_config

2006-10-20 Thread Nick Kew
On Friday 20 October 2006 17:30, [EMAIL PROTECTED] wrote: > Hi all, > I have a question about ap_get_module_config. That serves two purposes, and I think you're confusing them. For your server configuration, you'll use it with r->per_dir_config or s->module_config. Those should generally be trea

Re: Input Filter reading Body

2006-10-20 Thread Christian Verdelli
Well, actually i took my piece of code right from that module. I just took out the piece i needed but happen exaclty using mod_diagnostic.c I just added the function to read data from the bucket : apr_bucket_read(b,&data,&len,1); ap_log_perror(APLOG_MARK, APLOG_NOTICE, NULL, f->c->pool, "

Question about ap_get_module_config

2006-10-20 Thread [EMAIL PROTECTED]
Hi all, I have a question about ap_get_module_config. My module has to connect to different url to get the content. So I was thinking to initialize my struct (in which I have different information for example an array with the addresses of the url to get the contents) in the server config. The I wa

Re: Input Filter reading Body

2006-10-20 Thread Nick Kew
On Friday 20 October 2006 16:03, Christian Verdelli wrote: > - > -- Hi, > > im writing my first simple input filters ; i need it to debug the > request body (content of POST) coming to my Web Server before is handled > by a third party contect handler module (which corrupt data). > I simply want to

Re: Adding a "variable" size for AJP messages

2006-10-20 Thread Graham Leggett
On Fri, October 20, 2006 5:07 pm, Jean-frederic Clere wrote: >> I am adding the feature of mod_jk max_packet_size to httpd-proxy-ajp. >> (in trunk for the moment). >> >> Any comments? > > To set the max_packet_size ProxyIOBufferSize seems to the best > parameter to use. Seems sane. Regards, Gra

Re: Adding a "variable" size for AJP messages

2006-10-20 Thread Jean-frederic Clere
On Fri, 2006-10-20 at 14:54 +0200, Jean-frederic Clere wrote: > Hi, > > I am adding the feature of mod_jk max_packet_size to httpd-proxy-ajp. > (in trunk for the moment). > > Any comments? To set the max_packet_size ProxyIOBufferSize seems to the best parameter to use. Any comments? Cheers J

Input Filter reading Body

2006-10-20 Thread Christian Verdelli
- -- Hi,im writing my first simple input filters ; i need it to debug the request body (content of POST) coming to my Web Server before is handledby a third party contect handler module (which corrupt data).I simply want to print out the content of the body request sent by the client . I wrote this

[jira] Closed: (MODPYTHON-59) Add get_session() method to request object

2006-10-20 Thread Jim Gallacher (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-59?page=all ] Jim Gallacher closed MODPYTHON-59. -- Resolution: Won't Fix General agreement was that the proposed solution for this feature was sub-optimal. The stub for get_session() has been removed from

Re: Using util_ldap to retrieve attributes on a DC

2006-10-20 Thread Joe Lewis
Thanks for the response, Eric! Eric Covener wrote: On 10/19/06, Joe Lewis <[EMAIL PROTECTED]> wrote: I've looked through the util_ldap.c code, and don't really see any functions that would allow the retrieval of attributes from an object (non-user) in LDAP. Looks to me like the cache provided

[jira] Updated: (MODPYTHON-190) python 2.5 support

2006-10-20 Thread Jim Gallacher (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-190?page=all ] Jim Gallacher updated MODPYTHON-190: Attachment: ssizecheck.diff ssizecheck.py will include functions which are enclosed in comments in its output. Since I've added comments to mod_pyth

Adding a "variable" size for AJP messages

2006-10-20 Thread Jean-frederic Clere
Hi, I am adding the feature of mod_jk max_packet_size to httpd-proxy-ajp. (in trunk for the moment). Any comments? Cheers Jean-Frederic

Re: module that doesn't want to be shared.

2006-10-20 Thread Jean-frederic Clere
On Fri, 2006-10-20 at 07:30 -0400, Eric Covener wrote: > On 10/20/06, Jean-frederic Clere <[EMAIL PROTECTED]> wrote: > > On Fri, 2006-10-20 at 11:53 +0200, Jean-frederic Clere wrote: > > > Hi, > > > > > > I have added a modules to httpd-trunk but I have not able to get it > > > shared. (modules.mk

Re: Using util_ldap to retrieve attributes on a DC

2006-10-20 Thread Eric Covener
On 10/19/06, Joe Lewis <[EMAIL PROTECTED]> wrote: I've looked through the util_ldap.c code, and don't really see any functions that would allow the retrieval of attributes from an object (non-user) in LDAP. Plenty of util_ldap_getuserdn and util_ldap_checkuserid, but nothing for util_ldap_getdn

Re: module that doesn't want to be shared.

2006-10-20 Thread Eric Covener
On 10/20/06, Jean-frederic Clere <[EMAIL PROTECTED]> wrote: On Fri, 2006-10-20 at 11:53 +0200, Jean-frederic Clere wrote: > Hi, > > I have added a modules to httpd-trunk but I have not able to get it > shared. (modules.mk shared = is empty!). I have removed my copy of the repos, checkout again c

Re: module that doesn't want to be shared.

2006-10-20 Thread Jean-frederic Clere
On Fri, 2006-10-20 at 11:53 +0200, Jean-frederic Clere wrote: > Hi, > > I have added a modules to httpd-trunk but I have not able to get it > shared. (modules.mk shared = is empty!). I have removed my copy of the repos, checkout again copy back my module files. And now it works. Cheers Jean-Fre

module that doesn't want to be shared.

2006-10-20 Thread Jean-frederic Clere
Hi, I have added a modules to httpd-trunk but I have not able to get it shared. (modules.mk shared = is empty!). Has anyone had that problem? Are there restrictions in the name of modules? my config5.m4 contains: +++ APACHE_MODPATH_INIT(proxy_cluster) proxy_cluster_objs="mod_proxy_cluster.lo bac