RE: Problem with apr_time_exp_lt (localtime_r) on AIX

2006-03-01 Thread Bennett, Tony - CNF
. My local time zone setting is PAKST (GMT +5).   Is this causing the problem?   Thanks & Regards,Lekha MenonExtn - 5329   - Original Message - From: Bennett, Tony - CNF To: dev@httpd.apache.org Sent: Tuesday, February 28, 2006 9:51 PM Subject: RE: Problem with a

RE: Problem with apr_time_exp_lt (localtime_r) on AIX

2006-02-28 Thread Bennett, Tony - CNF
Lekha,   I wrote the sample program below, and ran it on both AIX 4.3.3 & AIX 5.1 in both threaded and unthreaded mode (xlc vs. xlc_r compiler). In both cases it returned 138.   #ifdef _THREAD_SAFE#include #endif   #include #include   main(){     struct tm  wk_localtime;    struct tm *my_l

RE: problem starting apache - __mcount runtime defn not found.

2005-05-06 Thread Bennett, Tony - CNF
If you compiled your module with a "-p" or "-pg" argument, then the compiler will insert a call to mcount() at the beginning of each function. This could explain how you have an unresolved reference. It could be that the system's profile libraries were not included in the library search path. H

RE: apache httpd with C++ on AIX

2005-05-04 Thread Bennett, Tony - CNF
sking too many questions but I am trying to understand.   Regards, Balaji   From: Bennett, Tony - CNF [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 04, 2005 3:49 PMTo: dev@httpd.apache.orgSubject: RE: apache httpd with C++ on AIX  

RE: apache httpd with C++ on AIX

2005-05-04 Thread Bennett, Tony - CNF
y if I am asking too many questions but I am trying to understand.   Regards, Balaji   From: Bennett, Tony - CNF [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 04, 2005 3:49 PMTo: dev@httpd.apache.orgSubject: RE: apache httpd with C++ on AIX   Here's how I

RE: apache httpd with C++ on AIX

2005-05-04 Thread Bennett, Tony - CNF
Here's how I configure Apache 2.0.52 for AIX, prior to issuing a 'make': CC="xlc_r"; export CCCPPFLAGS="-D_THREAD_SAFE"; export CPPFLAGS"./configure" \"--prefix=/usr/local/apache" \"--with-mpm=worker" \"--without-berkeley-db" \"--enable-dav=static" \"--enable-dav_fs=static" \"--w

RE: Auth LDAP ssl/tls differences

2005-01-06 Thread Bennett, Tony - CNF
Regarding LDAP, Apache is a client which must adhere to how the LDAP server is configured, be that a secure port (ldaps://) or via an unsecure connection (ldap://) that can be upgraded with a StartTLS. It appears, from the OpenLdap perspective, that use of ldaps:// is depricated in favor of StartT

RE: Is there a limit to using "with-module" directive ???

2004-10-19 Thread Bennett, Tony - CNF
modules... just separate them with white space. Thanks again, Rici... Lets hope they integrate this into the base "configure" script. -tony -Original Message- From: Rici Lake [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 7:59 AM To: Bennett, Tony - CNF Subject: R

RE: Is there a limit to using "with-module" directive ???

2004-10-19 Thread Bennett, Tony - CNF
If it is a limit, then how do I add multiple modules ??? -Original Message- From: Rici Lake [mailto:[EMAIL PROTECTED] Sent: Monday, October 18, 2004 7:08 PM To: [EMAIL PROTECTED] Subject: Re: Is there a limit to using "with-module" directive ??? On 18-Oct-04, at 9:03 PM, Ben

Is there a limit to using "with-module" directive ???

2004-10-18 Thread Bennett, Tony - CNF
Title: Is there a limit to using "with-module" directive ??? I have tried "adding" two different home-grown modules to be statically linked when attempting to configure httpd 2.0.52 on AIX 5.1. My configure command:         CC="xlc_r"; export CC     CPPFLAGS="-D_THREAD_SAFE"; expor

RE: Any plans for RFC3744

2004-06-14 Thread Bennett, Tony - CNF
e's mode is the single determining factor. Its parent collection's mode is of no consequence. Am I reading this right??? -tony -Original Message- From: Greg Stein [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 1:07 PM To: [EMAIL PROTECTED] Subject: Re: Any plans for R

Any plans for RFC3744

2004-06-14 Thread Bennett, Tony - CNF
Title: Any plans for RFC3744 Are there any plans afoot to implement support for RFC3744 - WebDav ACL, either as a stand-alone module or by modifying mod_dav/mod_dav_fs ??? -tony

RE: ap_max_requests_per_child isn't part of the API, is it?

2003-06-28 Thread Bennett, Tony - CNF
Jeff, You referred to "formal definition of our API" Is it documented somewhere? -tony -Original Message- From: Jeff Trawick [mailto:[EMAIL PROTECTED] Sent: Saturday, June 28, 2003 5:25 AM To: [EMAIL PROTECTED] Subject: Re: ap_max_requests_per_child isn't part of the API, is it? Jeff

RE: Apache/2.1.0-dev, mod_ssl and insufficient entry

2003-06-19 Thread Bennett, Tony - CNF
mod_ssl and insufficient entry Yes, that is the name of the perl script that reads from the pool for seed generation. -- In Response to your message - > Date: Thu, 19 Jun 2003 07:47:05 -0700 > To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>

RE: Apache/2.1.0-dev, mod_ssl and insufficient entry

2003-06-19 Thread Bennett, Tony - CNF
JW, Do you really mean "/usr/local/add-on/egd/bin/egd.pl" ^ -tony -Original Message- From: J. W. Ballantine [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 6:37 AM To: [EMAIL PROTECTED] Subject: Apache/2.1.0-dev, mod_ssl and

RE: mod_dav overhaul

2003-05-29 Thread Bennett, Tony - CNF
If this is a wish list... I'd kinda like to see dav_fs_set_headers() (in repos.c) be able to handle content-type. Here's the comment contained in that function: /* ### how to set the content type? */ /* ### until this is resolved, the Content-Type header is busted */ -tony -Original M

AIX Compilation messages in 2.0.45

2003-04-03 Thread Bennett, Tony - CNF
FYI: When compiling 2.0.45 on AIX 4.3.3 I am getting loads of "Informational" messages like (but not limited to): 1506-304 (I) No function prototype given for "_Errno" 1506-304 (I) No function prototype given for "strcasecmp" 1506-304 (I) No function prototype given for "st

RE: Apache 2.0.44 w/ auth_ldap build errors

2003-02-28 Thread Bennett, Tony - CNF
Don't know if it will help, but here's my config.nice for configuring apache 2.0.44 on AIX: CC="cc_r"; export CC CPPFLAGS=-qcpluscmt;export CPPFLAGS "./configure" \ "--with-mpm=worker" \ "--prefix=/usr/local/apache" \ "--enable-dav=static" \ "--enable-dav_fs=static" \ "--enable-ssl=static" \ "--wi

RE: Webdav

2003-01-29 Thread Bennett, Tony - CNF
We operate a WebDav site, currently on Apache 2.0.42, but operating in the same manner since 2.0.16... ...Our users are able to create, move, copy, and delete files. We have Apache running as user "nobody" and group "nobody" (but started as root)... ...we are using the "worker" model. The all

RE: "Group" not working properly

2003-01-22 Thread Bennett, Tony - CNF
FWIW, on AIX 4.3.3 I had to change it to "Group nobody" > -Original Message- > From: Greg Ames [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 22, 2003 2:13 PM > To: [EMAIL PROTECTED] > Subject: Re: "Group" not working properly > > > Graham Leggett wrote: > > Hi all, > > > > Whi

RE: [Auth_ldap] util_ldap_cache & shared memory failure

2002-12-19 Thread Bennett, Tony - CNF
Title: Message I just discovered that this is an already reported bug:     http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12757   Is anyone working on this   Thanks, -tony -Original Message-From: Bennett, Tony - CNF [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December

util_ldap_cache & shared memory failure

2002-12-18 Thread Bennett, Tony - CNF
nd locking could look at this I would be very grateful :)Regards,Graham-- -[EMAIL PROTECTED] "There's a moon over Bourbon Street tonight..." -Tony -Original Message-----From: Bennett, Tony - CNF [mailto:[EMAIL PR

RE: Webdav

2002-12-12 Thread Bennett, Tony - CNF
[EMAIL PROTECTED] > Subject: RE: Webdav > > > > this is impossible because im sharing all my user's home > directory via webdav. > > -----Original Message- > From: Bennett, Tony - CNF [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 12, 2002 11:48

RE: Webdav

2002-12-12 Thread Bennett, Tony - CNF
You don't have to run Apache 2.0 as root in order to provide webdav capability... ...If you are running as user 'nobody', just ensure that the directory tree that is dav enabled is owned by user 'nobody'. -tony > -Original Message- > From: Martin Ouimet [mailto:[EMAIL PROTECTED]] > Sent:

RE: apache 2.0.43: %b not showing "bytes sent" but "bytes requested"

2002-10-11 Thread Bennett, Tony - CNF
I believe the %b gets its value from the request_rec's bytes_sent member. This field is filled in by the content_length output filter. It is not filled in during the actual send operation. Even if it was filled in following each "send", that doesn't mean it was received by the client... in the

RE: Build on AIX fails

2002-09-30 Thread Bennett, Tony - CNF
- From: Jeff Trawick [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 4:16 PM To: [EMAIL PROTECTED] Subject: Re: Build on AIX fails "Bennett, Tony - CNF" <[EMAIL PROTECTED]> writes: > I just downloaded 2.0.42 and attempted to build it on AIX 4.3.3 > and it fai

Build on AIX fails

2002-09-30 Thread Bennett, Tony - CNF
I just downloaded 2.0.42 and attempted to build it on AIX 4.3.3 and it failed...it appears to be building module libraries named lib$MODULE_NAME.al (for example: modules/dav/main/.libs/libmod_dav.al) instead of lib$MODULE_NAME.a(for example: modules/dav/main/.libs/libmod_dav.a)

[PATCH] add datatype to creationdate and getlastmodified property

2001-12-12 Thread Bennett, Tony - CNF
This is a change that was implemented in mod_dav version 1.0.3. It hasn't been ported to the version of mod_dav included with httpd V 2.0.X. (i.e. modules/dav). This change enables Windows clients using WebFolders to display the value of the "creationdate" and "getlastmodified" properties. Thi