Re: [AOLSERVER] Binding to port 80

2004-02-23 Thread Rob Crittenden
Or here I am with a better fix rather than changing the semantics of an existing function (what was I thinking!?). Still using Dobby's patch, change the way the timeout is set from timeout.sec = 10; timeout.usec = 0; to Ns_GetTime(timeout); timeout.sec += 10; rob Rob Crittenden

Re: [AOLSERVER] tdom question

2004-03-05 Thread Rob Crittenden
Dossy wrote: - if so, how can I get around it (and who desires it??) :) xsl:include href=../poi_list.xsl/ ? Really? Can you include relative files like this? rob -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] with the

Re: [AOLSERVER] tdom question

2004-03-05 Thread Rob Crittenden
Dossy wrote: On 2004.03.05, Rob Crittenden [EMAIL PROTECTED] wrote: Dossy wrote: xsl:include href=../poi_list.xsl/ Really? Can you include relative files like this? According to Ross, no, not in tDOM's XSLT processor, at least. However, the XSLT spec. doesn't forbid it, and one would think

Re: [AOLSERVER] Generating UUID/GUIDs

2004-03-26 Thread Rob Crittenden
E-tags generated in Apache and Netscape Enterprise Server (and at this point probably SunONE) are based on things like inode #, file size and mtime. rob Dave Bauer wrote: I'd like to try to comform to the WebDAV specification for this, but that is handy to have a simple way to produce a similar

Re: [AOLSERVER] maxkeepalive in 4.01

2004-04-20 Thread Rob Crittenden
Gustaf Neumann wrote: we use pound as a reverse proxy, which handles all incoming SSL connection and feeds currently two backend servers via plain http. This works very well, today we had more the 3mio SSL requests on our system. I'm confused. In your first message it seemed like AOLserver was

Re: [AOLSERVER] How to get request values with C API

2004-05-11 Thread Rob Crittenden
Well, these CGI variables are only set when you execute a CGI. Perhaps the easiest thing to do is look at the nscgi code and of these values that are set, mirror the way that they are set in nscgi. There are some better/worse ways to get them, such as using Ns_ConnGetQuery() instead of

Re: [AOLSERVER] Problem compiling aolserver on Solaris 9

2004-05-14 Thread Rob Crittenden
Try: % export CC=gcc % make clean all rob Trenton Cameron wrote: Aolserver is not compiling for me on solaris 9. The make and install of tcl8.4.5 ran just fine. I am not getting an error message that I know how to interpet. I am getting the source for Aolserver 4.0r3. The ouput from my

Re: [AOLSERVER] nsopenssl: permission denied

2004-05-04 Thread Rob Crittenden
This could be the prebound/timing issue that Dossy fixed earlier this year with his NsWaitDriversStartup() fix in the cvs tip. I've attached a patch that backports this fix if you want to try it. I didn't really test this so YMMV. This is diff'ed against AS 4.0.3. rob Bart Teeuwisse wrote: On Mon,

Re: [AOLSERVER] ANN: New project leader for AOLserver

2004-05-20 Thread Rob Crittenden
There is a beta NSS/NSPR module checked into soureforge, the nsnss module. Should work ok but so far nobody that I know of has used it in production. rob Nathan Folkman wrote: Congratulations! I was wondering if there were any plans to start up the weekly AOLserver chats again, and also what are

[AOLSERVER] AOLserver 4.0.5 released

2004-06-07 Thread Rob Crittenden
I'm happy to announce the release of AOLserver 4.0.5. The changes in this release include: * remove Makefile.module during distclean * Allow users to override logging functions (see nsd/log.c) * Fix crash bug in Ns_Trim* when trimming NULL strings. * Add new bool config option,

Re: [AOLSERVER] Problem with nsssl

2004-07-08 Thread Rob Crittenden
This is nothing to worry about and yes, it is very misleading. The sample configuration checks to see if it should setup nsssl and if it can't it diplays out this warning. It can safely be ignored. rob JoaquĆ­n Souza wrote: I have this problem installing AOLServer, i make all of what the

Re: [AOLSERVER] AOLserver 4.0.6 has crashing bug leading to DOS.

2004-07-16 Thread Rob Crittenden
This causes a core dump? rob Stephen Deasey wrote: How to reproduce: telnet host 80 GET / HTTP/1.1 I sent an email about this early yesterday well before the release, but didn't get any response. Thanks. -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list,

Re: [AOLSERVER] [DEV] Changing required autoconf version

2004-07-21 Thread Rob Crittenden
Many relatively old (but not ancient) Linux distributions ship with autoconf 2.13 such as RedHat 7.2, 7,3 and AS 2.1. Upgrading isn't particularly painful but many only like using official rpms and AFAIK RedHat does not provide them. What is the advantage of upgrade? rob Dossy wrote: Everyone, I'd

Re: [AOLSERVER] aolserver/php

2004-07-23 Thread Rob Crittenden
I haven't been able to duplicate this. I see ab reporting some errors but according to the AOLserver logs it is doing the right thing. I have zero previous experience with ab though, so a lot of this is from the hip. Part of the problem may be that PHP isn't setting a content-length header and ab

Re: [AOLSERVER] aolserver/php

2004-07-26 Thread Rob Crittenden
Using a different threaded test tool that compares the actual output to an expected output, I ran 150k tests with a 100% pass rate. This is with 20 concurrent request threads. To handle the load I added this to my config: ns_parammaxthreads 512 ns_paramminthreads 10 I am running

Re: [AOLSERVER] nsopenssl errors

2004-08-19 Thread Rob Crittenden
If you don't need AOLserver to act as a client then simply don't register a client context. As far as I recall it isn't required. As for SSL2, I wouldn't trust it for e-commerce myself. I do agree that if only for clarity that SSL2 should be enabled/disabled in both places. It is very possible

Re: [AOLSERVER] Max file size upload

2004-10-25 Thread Rob Crittenden
You need to set maxinput in the nssock module in your config file. Something like: ns_section ns/server/${servername}/module/nssock ns_param port$httpport ns_param hostname$hostname ns_param address $address ns_param maxinput[expr 5*1024*1024] Note that