Re: [AOLSERVER] Bug #879076 (Output header issue)

2004-01-27 Thread Jim Wilcoxson
Hi - For 3.4x, look in nsd/return.c and nsd/fastpath.c; fastpath is calling Ns_ConnSetLastModifiedHeader in return.c to set Last-Modified. This routine calls Ns_ConnSetHeaders, which does an ns_set put, but it could easily call Ns_ConnCondSetHeaders, which would only do the put if the header

Re: [AOLSERVER] Server doesn't recognize directories starting with +

2004-01-27 Thread Tom Jackson
On Mon, 2004-01-26 at 17:25, Bart Teeuwisse wrote: Tom, your experience differs from mine. I'm experiencing problems with +directories on AOLserver 4.1 (CVS HEAD). Maybe you are running another version? Oops, that server is 3.5.1. Sorry about that. Looks like the problem was tracked down to

Re: [AOLSERVER] Bug #879076 (Output header issue)

2004-01-27 Thread Daniƫl Mantione
On Mon, 26 Jan 2004, Jim Wilcoxson wrote: Are you executing your TCL stuff in a filter/trace? Or doing an ns_returnfile? Those are the only ways I can see where you would be executing TCL to affect the headers but still ending up in the fastpath code. See bug-report :) I'm executing

Re: [AOLSERVER] Server doesn't recognize directories starting with +

2004-01-27 Thread Bart Teeuwisse
Stephen, against which version of AOLserver 4.0 did you make the patch? The patch is not lining up against the tarball of 2003-11-09 as available from sourceforge. Neither does it match the current CVS HEAD. /Bart -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list,

Re: [AOLSERVER] Server doesn't recognize directories starting with +

2004-01-27 Thread Stephen Deasey
The patch is against 4.0 but it also applies cleanly against 4.0.2 and 4.1 from CVS. cd aolserver-4.0 patch -p1 -b ../aolserver-4.0-plus-sign-encoding.patch On Tue, 2004-01-27 at 02:25, Bart Teeuwisse wrote: Stephen, against which version of AOLserver 4.0 did you make the patch?

Re: [AOLSERVER] SNMP support

2004-01-27 Thread Vlad Seryakov
Sure you can, i used scotty first but after that wrote my own snmpmodule. It is in the aolserver sourceforge files. Kulcsar Ferenc wrote: Hello All, I'll manage a large network with SNMP in real time. Can I integrate Tkined or scotty with Aolserver? TIA Feri

Re: [AOLSERVER] Server doesn't recognize directories starting with +

2004-01-27 Thread Bart Teeuwisse
*** *** 250,259 *v = '\0'; } Ns_DStringTrunc(kds, 0); -k = Ns_DecodeUrlWithEncoding(kds, k, encoding); if (v != NULL) { Ns_DStringTrunc(vds, 0); -Ns_DecodeUrlWithEncoding(vds, v+1, encoding);

[AOLSERVER] SQL error reporting

2004-01-27 Thread Jim Wilcoxson
In one of the 3.x releases, I think after 3.2, AS stopped reporting the details of SQL select errors. Instead of giving the detailed SQL error, like expected comma after blah, AS started reporting Query was not a statement returning rows. This isn't very useful for error trapping and reporting.

Re: [AOLSERVER] Server doesn't recognize directories starting with +

2004-01-27 Thread Bart Teeuwisse
Thanks for gzipping the patch Stephen, that did the trick. Works like a charm with aforementioned tarball as well as CVS HEAD. /Bart -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] with the body of SIGNOFF AOLSERVER in the

Re: [AOLSERVER] Bug #879076 (Output header issue)

2004-01-27 Thread Andrew Spencer
Hello, For 3.4x, look in nsd/return.c and nsd/fastpath.c; fastpath is calling Ns_ConnSetLastModifiedHeader in return.c to set Last-Modified. Thank you very much for the head start. This routine calls Ns_ConnSetHeaders, which does an ns_set put, but it could easily call