Re: [AOLSERVER] Checked in some code

2005-07-19 Thread Fred Cox
--- Jim Davidson [EMAIL PROTECTED] wrote: Hi, I just checked in several changes to the 4.5 HEAD branch. The ChangeLog was updated with some notes. Briefly: - Finished up support for large content in temp-files. - Added new routines to access uploaded files in C, e.g.,

Re: [AOLSERVER] Server not stopping properly

2005-07-19 Thread Jim Davidson
This should be in the code now -- check the shutdownPending static var in nsd/sched.c. The behavior should be that as soon as shutdown begins, this flag is set an no new sched procs can be created or kicked off. There could be a bug in there. Of course if a thread-based proc is running

[AOLSERVER] access log getting wiped

2005-07-19 Thread Mark Aufflick
Can anyone suggest why this might be happening? Instead of being rolled, my access log is gettting removed. Ie. a new one is started each day as expected, but the backups are not kept. My nslog config section is: ns_section ns/server/${server}/module/nslog ns_param debug

Re: [AOLSERVER] Server not stopping properly

2005-07-19 Thread Tom Jackson
On Monday 18 July 2005 17:53, Janine Sisk wrote: Wouldn't it make sense for the scheduler to stop starting up new proc runs once it knows the server is shutting down? It's not like these are long running things; they are starting up very frequently because they only run for a few seconds

Re: [AOLSERVER] access log getting wiped

2005-07-19 Thread Dossy Shiobara
On 2005.07.19, Mark Aufflick [EMAIL PROTECTED] wrote: Can anyone suggest why this might be happening? Instead of being rolled, my access log is gettting removed. Ie. a new one is started each day as expected, but the backups are not kept. My nslog config section is: ... ns_param

[AOLSERVER] Charset problem

2005-07-19 Thread Janine Sisk
Hi all, I've just made a mess for myself and I'm hoping someone will know how to fix it. It's really more of an Oracle problem and the message below is a modified version of one i just sent to an Oracle list, but I thought perhaps someone here would have already struggled with it. I took a

Re: [AOLSERVER] Charset problem

2005-07-19 Thread Dossy Shiobara
On 2005.07.19, Janine Sisk [EMAIL PROTECTED] wrote: Now, it seems that the default setting of NLS_CHARACTERSET in 8.1.7.4 was US7ASCII and in 9.2.0.4 it's WE8ISO8859P1. Everything I've read about this conversion says that since it's going from 7 bit to 8 bit there shouldn't be any data

Re: [AOLSERVER] Charset problem

2005-07-19 Thread Janine Sisk
On Jul 19, 2005, at 2:42 PM, Dossy Shiobara wrote: If you had accented characters (octets with the 8th bit set to 1) stored in the database under 8.1.7.4, then there is NO way the character set of the database was US7ASCII. If it was, then when the data was stored it would have been

Re: [AOLSERVER] Charset problem

2005-07-19 Thread Andrew Piskorski
On Tue, Jul 19, 2005 at 05:42:56PM -0400, Dossy Shiobara wrote: On 2005.07.19, Janine Sisk [EMAIL PROTECTED] wrote: Now, it seems that the default setting of NLS_CHARACTERSET in 8.1.7.4 was US7ASCII and in 9.2.0.4 it's WE8ISO8859P1. Everything I've read about this conversion says that

Re: [AOLSERVER] Server not stopping properly

2005-07-19 Thread Andrew Piskorski
On Mon, Jul 18, 2005 at 08:35:21PM -0400, Dossy Shiobara wrote: I've filed RFE #1029889 that will introduce [ns_info shutdownpending] so http://aolserver.com/sf/rfe/1029889 Well, that sounds like a good idea, but can't you do that already with ns_atshutdown if you need to? I've used code