[RELEASE CANDIDATE] libapreq 1.34-RC2

2007-04-27 Thread Issac Goldstand
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 http://people.apache.org/~issac/libapreq-1.34-RC2.tar.gz a try and report

Re: Apache 2.0.58 on i5/OS question

2007-04-27 Thread Henri Gomez
Well did the double configuration happen in the same thread or did there is a fork between the first and second config ? 2007/4/25, Greg Ames [EMAIL PROTECTED]: --- Henri Gomez [EMAIL PROTECTED] wrote: Hi to all, I'm trying to adapt mod_jk to i5/OS v5r4 and see the following in mod_jk.log

RE: SSL-enabled interaction with MySQL

2007-04-27 Thread Naveen Rawat
Hi Sander, Thanks for the response. I took a bit long to responds this, regrets. I tried this (mysql_ssl_set) API but it is really not working from within a module. It is otherwise working perfect for a standalone client application. This could be a sort of some core issue. I am

Apache Http Server Authentication/Authorisation

2007-04-27 Thread FORAMITTI Laurent
Hi, I have a Apache Http Server, this apache is my front end and protects some resource on my AppServer. To protect I use .htaccess and mod_auth.. So I would like to know how is it possible to configure Apache to send some informations about the authenticated user to my AppServer ?

Re: mod_ftp, status and progress?

2007-04-27 Thread Jim Jagielski
On Apr 26, 2007, at 5:39 PM, Niklas Edmundsson wrote: On Thu, 26 Apr 2007, Jim Jagielski wrote: I'm actually looking at removing the whole glob stuff and emulating it as regexes... Wouldn't apr_match_glob() be a better starting point? I don't really see the point of going via regexes...

Re: Releases around ApacheCon EU?

2007-04-27 Thread Jim Jagielski
On Apr 26, 2007, at 5:52 PM, Sander Temme wrote: Community, As ApacheCon draws near, perhaps we should plan some httpd releases during the week? Between beer and bitterballen there must be time to bat some patches around(1). Going in with the intention of, say, a TR on Wednesday after

RE: SSL-enabled interaction with MySQL

2007-04-27 Thread Guenter Knauf
Hi Naveen, Does your client library know SSL? Really?) YES. My database (MySQL) is compiled from source and my end libmysqlclient supports SSL and that too very well. This already been tested from a very basic standalone database client + a packet sniffer tool (ethereal). what I'm currently

Re: Apache Http Server Authentication/Authorisation

2007-04-27 Thread Joshua Slive
On 4/27/07, FORAMITTI Laurent [EMAIL PROTECTED] wrote: So I would like to know how is it possible to configure Apache to send some informations about the authenticated user to my AppServer ? Is it possible to add some values to the http header before that the mod_jk or mod_wl forward the

RE: SSL-enabled interaction with MySQL

2007-04-27 Thread Guenter Knauf
Hi all, although some of us might find the thread here interesting, some others might object that it doesnt belong to this list because: - its mysql-related and has nothing to do with Apache itself - we speak here about a third-party module which is also not part of Apache even if we are going

Re: SSL-enabled interaction with MySQL

2007-04-27 Thread Plüm , Rüdiger , VF-Group
-Ursprüngliche Nachricht- Von: Guenter Knauf Gesendet: Freitag, 27. April 2007 18:36 An: dev@httpd.apache.org Betreff: RE: SSL-enabled interaction with MySQL Hi all, although some of us might find the thread here interesting, some others might object that it doesnt belong to

SatisfyOne

2007-04-27 Thread Patrick Welche
Basically, bug or configuration error? Using httpd trunk 529626, of Apr 19 2007, I tried a FAQ configuration with the new authentication framework: Directory /usr/local/share/httpd/htdocs/learn AuthType basic AuthName raven test AuthBasicProvider file AuthUserFile

Re: SatisfyOne

2007-04-27 Thread Joshua Slive
On 4/27/07, Patrick Welche [EMAIL PROTECTED] wrote: I expected not to be prompted to login by the above configuration. (also tried AuthBasicAuthoritative Off, and have read the fine manual..) Just to eliminate the obvious, have you actually checked the access_log to verify that the IP

Re: SatisfyOne

2007-04-27 Thread Patrick Welche
On Fri, Apr 27, 2007 at 01:55:47PM -0400, Joshua Slive wrote: Just to eliminate the obvious, have you actually checked the access_log to verify that the IP address/hostname reported there match your Require directives? Sadly yes: 192.168.200.180 - - [27/Apr/2007:17:14:42 +0100] GET /learn

Re: [PATCH] mod_wombat: add table_get and table_set

2007-04-27 Thread Brian McCallister
On Apr 27, 2007, at 10:48 AM, Akins, Brian wrote: Probably not the best way to do this, but adds ability to get/set on r-headers_in and r-headers_out Example usage: function handle(r) r:table_set(r.headers_out, Lua, Cool); val = r:table_get(r.headers_in, User-Agent); r:puts(User-Agent:

Re: [PATCH] mod_wombat: add table_get and table_set

2007-04-27 Thread Akins, Brian
On 4/27/07 2:34 PM, Brian McCallister [EMAIL PROTECTED] wrote: Thoughts? Sounds good to me. Like I said, I just started playing with it this morning :) If you can point me more in the right direction, I can give it a try. I was just scratching an itch. Also, I want to add quick_handler to

Re: SatisfyOne

2007-04-27 Thread Jorge Schrauwen
What does a reverse lookup of 192.168.200.180 on the server give as hostname? On 4/27/07, Patrick Welche [EMAIL PROTECTED] wrote: On Fri, Apr 27, 2007 at 01:55:47PM -0400, Joshua Slive wrote: Just to eliminate the obvious, have you actually checked the access_log to verify that the IP

Re: mod_ftp, status and progress?

2007-04-27 Thread Niklas Edmundsson
On Fri, 27 Apr 2007, Jim Jagielski wrote: I'm actually looking at removing the whole glob stuff and emulating it as regexes... Wouldn't apr_match_glob() be a better starting point? I don't really see the point of going via regexes... I was thinking for 2.0.x compatibility... Wouldn't it be

Re: SatisfyOne

2007-04-27 Thread Jim Jagielski
Are you sure that there are no other conflicting ACLs? On Apr 27, 2007, at 1:30 PM, Patrick Welche wrote: Basically, bug or configuration error? Using httpd trunk 529626, of Apr 19 2007, I tried a FAQ configuration with the new authentication framework: Directory

Looking for TFM on OS X module building

2007-04-27 Thread Tim Bray
I'm sketching in a module for 2.2.4 and having trouble with compiling it on OS X. Neither google nor a survey of this group's archive turn up any ideas. Suppose I have mod_foo.c; I assume the goal is to produce a mod_foo.so or mod_foo.dylib in $INSTALL/modules/ Is this written up

mod_ftp: [PATCH] Make REST work with large files

2007-04-27 Thread Niklas Edmundsson
Attached is a patch written some time ago to make the REST command grok large files on LFS-capable platforms by using apr_strtoff() instead of strtol(). It's untested, mostly because I didn't have a test server handy at the moment. Thought I should submit the patch before I lost it in the

Re: Looking for TFM on OS X module building

2007-04-27 Thread josh rotenberg
Tim, I'm developing on both OS X (10.4.9, Intel) and Linux with the same setup. I end up with .so on both. You might have some luck using apxs to get it going. Alternatively, I put together a simple module build environment skeleton package with all of the autoconf stuff ready to be quickly

Re: SatisfyOne

2007-04-27 Thread Brad Nicholes
On 4/27/2007 at 11:30 AM, in message [EMAIL PROTECTED], Patrick Welche [EMAIL PROTECTED] wrote: Basically, bug or configuration error? Using httpd trunk 529626, of Apr 19 2007, I tried a FAQ configuration with the new authentication framework: Directory /usr/local/share/httpd/htdocs/learn

Re: Apache Http Server Authentication/Authorisation

2007-04-27 Thread Guenter Knauf
Hi, I have a Apache Http Server, this apache is my front end and protects some resource on my AppServer. To protect I use .htaccess and mod_auth.. So I would like to know how is it possible to configure Apache to send some informations about the authenticated user to my AppServer ? Is it

Re: [RELEASE CANDIDATE] libapreq 1.34-RC2

2007-04-27 Thread Steve Hay
Issac Goldstand wrote: 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 http://people.apache.org/~issac/libapreq-1.34-RC2.tar.gz a try and