[EMAIL PROTECTED] Need 'configure' directive to statically link openssl's libssl.a and libcrypto.a

2008-11-17 Thread Bennett, Tony
Version:Apache httpd version 2.2.10 Platform: AIX 5.3 SSL Version:OpenSSL 0.9.8f Try as I might, I can't figure out what directive to give "configure" to enable statically linking libssl.a and libcrypto.a into httpd. In case it makes a difference, the OpenSSL was obtained fro

[EMAIL PROTECTED] Repost: is this the right list ??? Need "configure" directive to static link libssl.a on AIX 5.3

2008-11-24 Thread Bennett, Tony
Version:Apache httpd version 2.2.10 Platform: AIX 5.3 Compiler: IBM "C" for AIX version 8.0 SSL Version:OpenSSL 0.9.8f Try as I might, I can't figure out what directive to give "configure" to enable statically linking libssl.a and libcrypto.a into httpd. In case it

RE: [EMAIL PROTECTED] Static linking with libexpat

2008-12-04 Thread Bennett, Tony
From: Ravindra [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2008 12:05 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Static linking with libexpat Hi, I used "--disable-shared --with-expat=xml/expat" option while configuring Apache, but it still seems to be linking dynamical

RE: [EMAIL PROTECTED] Static linking with libexpat

2008-12-05 Thread Bennett, Tony
>On Fri, Dec 5, 2008 at 4:13 AM, Bennett, Tony <[EMAIL PROTECTED]> wrote: >> From: Ravindra [mailto:[EMAIL PROTECTED] >> Sent: Thursday, December 04, 2008 12:05 PM >> To: users@httpd.apache.org >> Subject: [EMAIL PROTECTED] Static linking with libexpat >>

RE: [us...@httpd] log file format?

2009-01-21 Thread Bennett, Tony
Documentation: http://httpd.apache.org/docs/2.2/mod/mod_log_config.html -Original Message- From: Dave Stevens [mailto:g...@uniserve.com] Sent: Wednesday, January 21, 2009 2:56 PM To: users@httpd.apache.org Subject: [us...@httpd] log file format? Hi, I am trying to get a handle on how

RE: [us...@httpd] localhost vs ip address in url on windows 2003.

2009-01-27 Thread Bennett, Tony
What about your httpd.conf ... How do you have your LISTEN directive formated...??? http://httpd.apache.org/docs/2.2/mod/mpm_common.html#listen We had a case that was the opposite from yours... ...we could access one of our sites via an IP address, but not via "localhost"... ...the problem wa

RE: [us...@httpd] configure error involving APR

2009-02-25 Thread Bennett, Tony
>-Original Message- >From: LibrarySystems [mailto:jtrim...@cc.ysu.edu] >Sent: Wednesday, February 25, 2009 12:49 PM >To: users@httpd.apache.org >Subject: [us...@httpd] configure error involving APR > > >I'm attempting to install http server on AIX 5.3.0.0. I'm installing >httpd-2.2.11 and

RE: [us...@httpd] Confused about LDAP authentication with Active Directory

2009-02-26 Thread Bennett, Tony
> -Original Message- > From: Davide Bianchi [mailto:dav...@walterisookeensufferukker.nl] > Sent: Thursday, February 26, 2009 6:51 AM > To: users@httpd.apache.org > Subject: Re: [us...@httpd] Confused about LDAP authentication with Active > Directory > > Ed Avis wrote: > >

[us...@httpd] 2.2.15 Build failure on AIX 6.1

2010-08-02 Thread Bennett, Tony
Building Apache 2.2.15 on AIX 6.1 using GCC 4.2.0 is failing for me, (see actual error message below). Environment: OS AIX 6.1.3 (6100-03-01-0921) Compiler:gcc --version gcc (GCC) 4.2.0

RE: [us...@httpd] 2.2.15 Build failure on AIX 6.1

2010-08-02 Thread Bennett, Tony
Sorry, /usr/bin/bash is not installed on the system. I reran config without a CONFIG_SHELL environmental variable and got this when I tried making: /bin/sh /home/trbennet/dnload/httpd-2.2.15/srclib/apr/libtool --silent --mode=li nk gcc -g -O2 -pthread -DHAVE_CONFIG_H -U__STR__ -D_THRE

RE: [us...@httpd] 2.2.15 Build failure on AIX 6.1

2010-08-03 Thread Bennett, Tony
Further google research gave me this thread: http://www.unix.com/aix/51279-error-when-compile-httpd-2-2-8-aix-5-2-a.html Which contains a posting that indicates there is a separate AIX RPM for libgcc, which contains libgcc_s. I went to the IBM site (http://www-03.ibm.com/systems/power/softwar

RE: [us...@httpd] Rotating logs

2010-11-05 Thread Bennett, Tony
Patrick, For me, examples always help the most. Here's what we do... TransferLog "| /usr/local/apache/bin/rotatelogs -l -f /var/adm/syslog/apache_access_log.%m-%d-%y-%I:%M:%S 86400" This way, our apache_access_log filename is appended with the month-day-year-hour-minute-second... ...and i

RE: [us...@httpd] Rotating logs

2010-11-12 Thread Bennett, Tony
22/logs/apache_access_log.11-12-10-12:00:00' (The filename, directory name, or volume label syntax is incorrect.  ) >>> "Bennett, Tony" 11/5/2010 6:17 PM >>> TransferLog "| /usr/local/apache/bin/rotatelogs -l -f /var/adm/syslog/apache_access_log.%m-%d-%y-%

RE: [us...@httpd] Rotating logs

2010-11-12 Thread Bennett, Tony
access.log" common       #     # If you prefer a logfile with access, agent, and referer information     # (Combined Logfile Format) you can use the following directive.     #     CustomLog "logs/access_comb.log" combined     TransferLog "| /Apache22/bin/rotatelogs -l -f /Apache2

RE: [us...@httpd] Could not get next bucket brigade [500, #0]

2010-11-17 Thread Bennett, Tony
The client broke the socket-connection before sending a complete request. mod_dav reads client request from a bucket-brigade (see http://www.apachetutor.org/dev/brigades for an overview). If getting the next bucket fails, you get that message. The primary cause I've see is a client breaking a con

[us...@httpd] RE: Apache Configure going into infinite loop

2010-12-16 Thread Bennett, Tony
Here's how we issue configure on AIX 5.3 (and 6.1) with Apache 2.2.10, bearing in mind we were using IBM's "C for AIX", which necessitated specifying CC=xlc_r and CPPFLAGS=-D_THREAD_SAFE. Here's the contents of config.nice: CC="xlc_r"; export CC CPPFLAGS="-D_THREAD_SAFE

[us...@httpd] RE: Apache Configure going into infinite loop

2010-12-16 Thread Bennett, Tony
ject: [us...@httpd] RE: Apache Configure going into infinite loop Hi Tony, Thanks for the reply, usually in how much time does the configure complete? Thanks Rohit -Original Message- From: Bennett, Tony [mailto:bennett.t...@con-way.com] Sent: Thursday, December 16, 2010 1:50 PM To: use

RE: [users@httpd] Question about mod_dav in Apache2(Centos)

2011-03-10 Thread Bennett, Tony
"DAV On" can be used within a or within a or */ So, your problem is elsewhere. Does your apache_error_log provide any clues...??? From: zMatthew [mailto:mathewz...@hotmail.com] Sent: Thursday, March 10, 2011 12:37 AM To: users@httpd.apache.org Subject: RE: [users@httpd] Question about mod_dav

RE: [users@httpd] Re: What are accept.lock files?

2011-05-10 Thread Bennett, Tony
Simplistically, they are files used by Apache to control exclusive access to some resources. Don't delete them. -Original Message- From: Steven Ross [mailto:apache@bustspammers.com] Sent: Tuesday, May 10, 2011 10:50 AM To: users@httpd.apache.org Subject: Re: [users@httpd] Re: What ar

[users@httpd] RE: apache + AD auth

2011-08-31 Thread Bennett, Tony
Diego, Not sure about 2.2.3, but the current version of the documentation for the " Require ldap-group" directive (http://httpd.apache.org/docs/2.2/mod/mod_authnz_ldap.html#reqgroup) Says: Require ldap-group This directive specifies an LDAP group whose members are allowed access

RE: [users@httpd] adding particular option to httpd build

2012-03-20 Thread Bennett, Tony
If you still have the original "build tree" for your current version of Apache, you can look at the top of "config.log" file, or you can look at "config.nice"... ...both of these have the original configure command and are located at the top of the build tree in the same directory as "configure".

RE: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1 with gcc/g++

2012-06-14 Thread Bennett, Tony
RE: what I needed to add for the IBM compiler was -qlangval=extc99 so that it would accept c++ like comments You can give xlc this argument to allow C++ comments: -qcpluscmt From: Michael Felt [mailto:mamf...@gmail.com] Sent: Thursday, June 14, 2012 2:38 PM To: users@httpd.apache.o

[users@httpd] Why does a DELETE transaction check for locks on Parent Collection

2012-09-26 Thread Bennett, Tony
Environment: Version:2.2.16 Platform OS:AIX 6.1 Configuration: WebDav enabled Client: Windows 7 "Mapped Network Drive" Here is the interaction: Client sends a PUT Server responds with a 200 Client sends a LOCK request Server responds wi

RE: [users@httpd] Error in accessing the home page

2012-11-29 Thread Bennett, Tony
Documentation on the container: http://httpd.apache.org/docs/2.2/mod/core.html#directory -Original Message- From: Alex Chen [mailto:alex_c...@filemaker.com] Sent: Thursday, November 29, 2012 3:58 PM To: users@httpd.apache.org Subject: Re: [users@httpd] Error in accessing the home page

RE: [users@httpd] Android device ID not show on access_log

2012-12-07 Thread Bennett, Tony
FYI: On my DroidX, I have found that the User-Agent sent to apache is different based upon which browser on Android that you use: Firefox produces: "Mozilla/5.0 (Android; Mobile; rv:17.0) Gecko/17.0 Firefox/17.0" The built-in browser produces: "Mozilla/5.0 (Linux; U; Android 2.3.4; en-u

RE: [users@httpd] Apache worker MPM

2012-12-08 Thread Bennett, Tony
Have a look here: http://httpd.apache.org/docs/2.2/mod/worker.html From: vicky [vicky007aggar...@yahoo.co.in] Sent: Saturday, December 08, 2012 11:45 AM To: users@httpd.apache.org Subject: [users@httpd] Apache worker MPM Hi All, Why does the Worker MPM m

RE: [users@httpd] Web Dav overwrite files

2013-01-21 Thread Bennett, Tony
Johan, It is working examine radar.bin ... it should have been successfully updated. A successful PUT on a resource that does not exist previously, will generate a 201 Created response. A successful PUT on a resource that already exists will generate a 204 No Content. RFC 2616 (HTTP 1.1)

FW: [users@httpd] How to build Apache with latest version of OpenSSL

2013-01-28 Thread Bennett, Tony
The problem is likely that when you ran "configuration", prior to running the Apache build did not find the new version of "ssl". I would examine what directive you gave to configure to indicate the location of SSL. .. mine is:     --with-ssl=/usr/local/dms/openssl.1.0.0e From: Jo

RE: [users@httpd] Re: Delivery Status Notification (Failure)

2013-01-29 Thread Bennett, Tony
We use the "--with-ssl=DIR" directive so that "we", the developers, control which version of SSL is included in the Apache which we build. With our company's infrastructure out-sourced, we have little or no control of when our servers are updated. So, we've elected to build and install openssl

RE: [users@httpd] Cannot get Apache 2 basic authentication working with CRYPT on Win7

2013-04-30 Thread Bennett, Tony
Win7, by default, disables use of BasicAuthentication unless the connection is via SSL. Check out this link: http://blogs.msdn.com/b/robert_mcmurray/archive/2008/01/17/webdav-redirector-registry-settings.aspx Look at this attribute: BasicAuthLevel One alternative is to switch to Digest authe