Re: DBD framework, APR, caching

2007-03-22 Thread Graham Leggett
Helmut Tessarek wrote: Caching: I've just changed my caching algorithm to use APR, so it must be fairly easy to either add caching to the DBD framework or to write its own caching backend. Regarding the modularity, an own autnz caching backend would be best. So all other expensive providers

mod_proxy proxypassreverse prob

2007-03-22 Thread Akila Amarathunga
Hi All, I have configured mod_proxy in one of my servers.. and the configuration is like below... VirtualHost *:80 DocumentRoot path ProxyRequests Off Proxy * Order Deny,Allow Allow from all /Proxy Location

Re: DBD framework, APR, caching

2007-03-22 Thread Nick Kew
On Thu, 22 Mar 2007 11:23:18 +0200 Graham Leggett [EMAIL PROTECTED] wrote: Helmut Tessarek wrote: Caching: I've just changed my caching algorithm to use APR, so it must be fairly easy to either add caching to the DBD framework or to write its own caching backend. Regarding the

Re: DBD framework, APR, caching

2007-03-22 Thread Nick Kew
On Wed, 21 Mar 2007 22:59:41 +0100 Helmut Tessarek [EMAIL PROTECTED] wrote: Hi everybody, Nick Kew suggested that I should post my findings and ideas regarding the DBD framework, APR and caching. Indeed. I think we stand to gain insights, and perhaps also code, from discussing it here.

Re: DBD framework, APR, caching

2007-03-22 Thread Graham Leggett
On Thu, March 22, 2007 2:10 pm, Nick Kew wrote: IME the LDAP code tends to be rather inward-looking and isn't always the easiest to re-use (and util_ldap_cache.h lacks the prototyping and documentation of a public API). If you can find a round tuit for making that jump from specific to

Re: mod_proxy proxypassreverse prob

2007-03-22 Thread Nick Kew
On Thu, 22 Mar 2007 17:16:03 +0530 Akila Amarathunga [EMAIL PROTECTED] wrote: Hi All, You're on the wrong list. The users list is thattaway. I really appreciate if some one can help me out here.. http://www.apachetutor.org/admin/reverseproxies -- Nick Kew Application Development with

Re: DBD framework, APR, caching

2007-03-22 Thread Helmut Tessarek
Hi, Don't tinyurl references expire after a few days (or weeks or something)? Mailinglists, by contrast, are archived. I understand you may want to retain the flexibility to invalidate that link yourself, but a mention of the top of your repository at www.evermeet.cx/cvs/ surely wouldn't

Re: DBD framework, APR, caching

2007-03-22 Thread Helmut Tessarek
Nick Kew wrote: Is that the same issue as http://issues.apache.org/bugzilla/show_bug.cgi?id=41925 No. The bug describes encryption but I was talking about validation. Furthermore the bug shows off a completely other part of the API. My working assumption with DBD is that creating stored

load data at server startup - is ap_hook_post_config() the right place?

2007-03-22 Thread Danie Qian
I am new to module development but I want to develop a module so I can manage the uri of the thousand of sites more efficiently. What I want is to load a mysql table data into the memory of Apache server at its startup stage for fast processing of requests later. Mysql database access

Re: load data at server startup - is ap_hook_post_config() the right place?

2007-03-22 Thread Nick Kew
On Thu, 22 Mar 2007 09:21:39 -0400 Danie Qian [EMAIL PROTECTED] wrote: I am new to module development but I want to develop a module so I can manage the uri of the thousand of sites more efficiently. What I want is to load a mysql table data into the memory of Apache server at its startup

Build of libapreq2 on FreeBSD

2007-03-22 Thread Alexandre Brooks
Hello, I'm currently trying to build libapreq2 (with the perl5 interface) on freebsd 6.1 through the ports system, but I keep getting an error saying that the port is broken (incorrect pkg-list). This is preventing me from building packages that depend on libapreq2. Can anyone help me, or

Re: load data at server startup - is ap_hook_post_config() the right place?

2007-03-22 Thread Danie Qian
- Original Message - From: Nick Kew [EMAIL PROTECTED] To: modules-dev@httpd.apache.org Sent: Thursday, March 22, 2007 9:46 AM Subject: Re: load data at server startup - is ap_hook_post_config() the right place? On Thu, 22 Mar 2007 09:21:39 -0400 Danie Qian [EMAIL PROTECTED] wrote:

[PROPOSAL] use of SVN $id keyword

2007-03-22 Thread Guenter Knauf
Hi all, I would find it useful to have the SVN revision info in the head of the sources; and therefore I looked into it to see how its done with SVN: 1. the file needs a $id: $ tag. 2. the file needs a 'svn propset svn:keywords Id file' 3. the client's config needs a line '*.* = svn:keywords=Id'

Re: svn commit: r518938 - /httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c

2007-03-22 Thread Jean-Frederic
I have ported it to httpd-2.2.x should I commit it? Cheers Jean-Frederic On Fri, 2007-03-16 at 11:26 +, [EMAIL PROTECTED] wrote: Author: jfclere Date: Fri Mar 16 04:26:33 2007 New Revision: 518938 URL: http://svn.apache.org/viewvc?view=revrev=518938 Log: Make sure that we are not

Re: svn commit: r518938 - /httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c

2007-03-22 Thread Jeff Trawick
On 3/22/07, Jean-Frederic [EMAIL PROTECTED] wrote: I have ported it to httpd-2.2.x should I commit it? propose in 2.2.x/STATUS; await approval

Re: [PROPOSAL] use of SVN $id keyword

2007-03-22 Thread Ruediger Pluem
On 03/22/2007 05:19 PM, Guenter Knauf wrote: Hi all, I would find it useful to have the SVN revision info in the head of the sources; and therefore I looked into it to see how its done with SVN: 1. the file needs a $id: $ tag. 2. the file needs a 'svn propset svn:keywords Id file' 3. the

Re: apreqXXXXXX temp files remain after processing uploads greater than 256kb. Further large upload fails

2007-03-22 Thread Steve Hay
Randy Kobes wrote: On Wed, 14 Mar 2007, Steve Hay wrote: I tried your patch with the current svn version (revision 518242), but I'm still seeing intermittent failures (usually in tests 15, 16 and/or 20) either when I run nmake test from the top-level, or when I run: perl -Iblib/arch

Re: [PROPOSAL] use of SVN $id keyword

2007-03-22 Thread Guenter Knauf
Hi Ruediger, Hm. I would like to hear some comments by the svn gurus on that. Questions that come up to my mind are: 1. What revision number will be shown in the tag: The revision number of the last change of this file or the revision number that is actual at the point of time

Re: load data at server startup - is ap_hook_post_config() the right place?

2007-03-22 Thread Dumindu Perera
Hi Daniel, the server_rec doesnt have a pool field. which field can I use to store the data? AFAIK, server config is not the same as server_rec. You create server configuration as in the following: code typedef struct { /* what ever data you need in server config . . */

Re: 2.2.4 windows binary w/ssl?

2007-03-22 Thread Guenter Knauf
Hi, I'll take this as a resounding no, and that the draft package is sufficient. Moving it within 24 hrs unless I hear a specific technical objection. I've heard from a couple of users that they prefer *.zip archives rather than the *.msi files; and hacked a WSH script to fix the config files

Re: [PROPOSAL] use of SVN $id keyword

2007-03-22 Thread Roy T. Fielding
On Mar 22, 2007, at 9:19 AM, Guenter Knauf wrote: I would find it useful to have the SVN revision info in the head of the sources; No, that is not going to happen. Id tags make it extremely hard to manage collaborative development across multiple subversion trees, such as when a vendor keeps

Re: 2.2.4 windows binary w/ssl?

2007-03-22 Thread William A. Rowe, Jr.
Guenter Knauf wrote: I've heard from a couple of users that they prefer *.zip archives rather than the *.msi files; and hacked a WSH script to fix the config files when using a zip distribution. Should we add a cert-creation .sh and .vbs script to support/ for this purpose (on any platform)?

Re: [PROPOSAL] use of SVN $id keyword

2007-03-22 Thread William A. Rowe, Jr.
Roy T. Fielding wrote: On Mar 22, 2007, at 9:19 AM, Guenter Knauf wrote: I would find it useful to have the SVN revision info in the head of the sources; No, that is not going to happen. Id tags make it extremely hard to manage collaborative development across multiple subversion trees,

Re: 2.2.4 windows binary w/ssl?

2007-03-22 Thread Sander Temme
On Mar 22, 2007, at 12:22 PM, William A. Rowe, Jr. wrote: Guenter Knauf wrote: I've heard from a couple of users that they prefer *.zip archives rather than the *.msi files; and hacked a WSH script to fix the config files when using a zip distribution. Should we add a cert-creation .sh

Re: 2.2.4 windows binary w/ssl?

2007-03-22 Thread William A. Rowe, Jr.
Sander Temme wrote: On Mar 22, 2007, at 12:22 PM, William A. Rowe, Jr. wrote: Guenter Knauf wrote: I've heard from a couple of users that they prefer *.zip archives rather than the *.msi files; and hacked a WSH script to fix the config files when using a zip distribution. Should we add

Re: 2.2.4 windows binary w/ssl?

2007-03-22 Thread Guenter Knauf
Hi, Should we add a cert-creation .sh and .vbs script to support/ for this purpose (on any platform)? Sounds like a great idea to me! +1 from me. If you find my vbs useful then I will contribute it. I've spent a good time to find at least something working; the Inet is full of stuff, but

Re: 2.2.4 windows binary w/ssl?

2007-03-22 Thread Mladen Turk
Guenter Knauf wrote: Hi, Should we add a cert-creation .sh and .vbs script to support/ for this purpose (on any platform)? Sounds like a great idea to me! +1 from me. If you find my vbs useful then I will contribute it. I've spent a good time to find at least something working; Drop an eye

Re: DBD framework, APR, caching

2007-03-22 Thread Joachim Zobel
Am Donnerstag, den 22.03.2007, 14:03 +0100 schrieb Helmut Tessarek: Writing stored procedures is usually part of the DBA, but if the database server is not on the same machine as the web server, stored procedures are most of the time faster than SQL statements invoked from the client. The

Re: 2.2.4 windows binary w/ssl?

2007-03-22 Thread Guenter Knauf
Hi Mladen, Drop an eye on: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/examples/mkcerts? view=markup I've also spend a good deal of time on that, so it might be helpful :) yeah!! Thanks! Will do, and update my vbs soon thanks, Guenter.

Re: load data at server startup - is ap_hook_post_config() the right place?

2007-03-22 Thread Danie Qian
- Original Message - From: Dumindu Perera [EMAIL PROTECTED] To: modules-dev@httpd.apache.org; Danie Qian [EMAIL PROTECTED] Sent: Thursday, March 22, 2007 1:18 PM Subject: Re: load data at server startup - is ap_hook_post_config() the right place? Hi Daniel, the server_rec