[users@httpd] MD5CRYPT depreciation

2012-06-14 Thread Nick Edwards
Know its author has insisted nobody use this anymore, will Apache httpd soon support sha2 in its authentication dbd modules - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@h

Re: [users@httpd] Access rules in an intranet

2012-06-14 Thread Toomas Aas
Wed, 13 Jun 2012 kirjutas Luís de Sousa : For each access to the phppgadmin folder I'm getting this line at the error log: 158.64.4.14 - - [13/Jun/2012:08:51:21 +0200] "GET /phppgadmin/ HTTP/1.1" 403 510 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:13.0) Gecko/20100101 Firefox/13.0" Your c

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

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

2012-06-14 Thread Michael Felt
I have gotten it to compile (5.3.14) - and what I needed to add for the IBM compiler was -qlangval=extc99 so that it would accept c++ like comments (starting with //) The other problem I have, and it is an "old" one, is that the AIX make (or maybe the ksh) does not execute the $(BUILD_CLI) argumen

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

2012-06-14 Thread Brian Gaber
I was getting errors with sqlite also so I added these two configure directives: --without-pdo-sqlite --without-sqlite This got me past the sqlite problem. From: Michael Felt [mailto:mamf...@gmail.com] Sent: Thursday, June 14, 2012 11:52 AM To: users@httpd.apach

Re: [users@httpd] Access rules in an intranet

2012-06-14 Thread Anam Ali Khan
I think you don't need to use option in your config file. Replace with option and add following code in it. Order deny,allow deny from all allow from 10.215.1.0 To: users@httpd.apache.org; Anam Ali Khan Sent: Thursday, 14 June 2012, 12:19 Subject: Re: [users@httpd] Access rules in an intran

Re: [users@httpd] ProxyPass question

2012-06-14 Thread Janos Dohanics
On Wed, 13 Jun 2012 17:20:59 -0500 Daniel Ruggeri wrote: > On 6/13/2012 3:52 PM, Janos Dohanics wrote: > > Thanks Anne, this was what I needed. > > > > However, I got a new problem: I also want to protect the / directory > > with .htaccess, and that works fine. I assumed that this will also > > p

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

2012-06-14 Thread Michael Felt
Now I need to see if I actually put everything needed in ./build/aix/README for httpd. Starting point for me is: use neither /usr(/local) nor /opt/freeware (as I am trying to be independent of "old" RPM's). A secondary goal is that the installp packages built are suitable for installation in WPAR

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

2012-06-14 Thread Brian Gaber
Michael, Here is the configure that I used: ./configure --with-apxs2=/usr/local/apache2/bin/apxs \ --with-mysql=/usr/local/mysql \ --with-libxml-dir=/opt/freeware \ --with-zlib-dir=/opt/freeware Thanks. Brian From: Michael Felt [mailto:mamf...@gmail.com]

Re: [users@httpd] Access rules in an intranet

2012-06-14 Thread Luís de Sousa
Hi Anam, The config file has only two blocks: DirectoryMatch and IfModule, organised like this: ... ... ... Where exactly should I put the Directory block? Thank you. On 13 June 2012 19:18, Anam Ali Khan wrote: > Hi, > > Insert "Directory" block in virtual host container (configuration).

[users@httpd] Potential Bug in mpm_common.c

2012-06-14 Thread Ken Cheung
I observed a code clone in the following files. In the function ap_mpm_set_max_mem_free the variable "value" has to be multiplied by 1024 before exit while ap_mpm_set_thread_stacksize does not perform this operation. I wonder if this is necessary. Hope it helps. function : ap_mpm_set_max_mem_fr