Re: [AOLSERVER] aolserver 3.x not running scheduled procs anymore

2006-10-18 Thread Mark Aufflick

Thanks everyone - that did the trick!

Nice work to the people who tracked that down - quite a thread!!

On 10/19/06, Dave Siktberg <[EMAIL PROTECTED]> wrote:

Here is the message from five months ago that helped me get this fixed on my
3.x system:


Forum: OpenACS Q&A
Thread: ad_schedule_proc seems to be failing
Author: Michael A. Cleverly
Posted: 2006-05-23 12:53:52.861061-07

Let me try and explain:
During AOLserver startup, if MaxOpen or MaxIdle is a positive number (not
zero which means "forever") then AOLserver schedules a job to check to reset
the database connections at [expr [clock seconds] + $MaxOpen] (as it were).

After May 12, 2006, the current time since the beginning of the epoch, plus
a MaxIdle/MaxOpen setting of 1 billion seconds resulted in a scheduled event
that overflowed a 32-bit signed integer. (It wrapped around and became a
negative value.)

From what I gather from the AOLserver list, on Solaris this leads to a hard
crash in some pthread function call. On Linux it just seems to forever hang
up processing of scheduled events (because it can't cope with a negative
time and every negative number is less than any positive number).

On Linux people who don't have MaxIdle or MaxOpen set at 10 or who
haven't restarted AOLserver since May 12th won't have experienced the
problem. (For someone with a 1 billion setting who last restarted on May
11th then AOLserver is scheduled to reset the database connections in
mid-January 2038 right now...)

A setting of 100 million, instead of 1 billion, wouldn't have exposed this
condition on AOLserver 3.x for another twenty-eight years or so. Zero is the
right value to use now. (Apparently 1 billion was chosen, instead of zero,
due to some bug in the Oracle driver or the Oracle client libraries... 1
billion being "effectively" forever... until this month!)


--
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 email message. You can leave the Subject: 
field of your email blank.




--
Mark Aufflick
e: [EMAIL PROTECTED]
w: mark.aufflick.com
p: +61 438 700 647
f: +61 2 9436 4737


--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] aolserver 3.x not running scheduled procs anymore

2006-10-18 Thread Dave Siktberg
Here is the message from five months ago that helped me get this fixed on my
3.x system:


Forum: OpenACS Q&A
Thread: ad_schedule_proc seems to be failing
Author: Michael A. Cleverly
Posted: 2006-05-23 12:53:52.861061-07

Let me try and explain:
During AOLserver startup, if MaxOpen or MaxIdle is a positive number (not
zero which means "forever") then AOLserver schedules a job to check to reset
the database connections at [expr [clock seconds] + $MaxOpen] (as it were).

After May 12, 2006, the current time since the beginning of the epoch, plus
a MaxIdle/MaxOpen setting of 1 billion seconds resulted in a scheduled event
that overflowed a 32-bit signed integer. (It wrapped around and became a
negative value.)

>From what I gather from the AOLserver list, on Solaris this leads to a hard
crash in some pthread function call. On Linux it just seems to forever hang
up processing of scheduled events (because it can't cope with a negative
time and every negative number is less than any positive number).

On Linux people who don't have MaxIdle or MaxOpen set at 10 or who
haven't restarted AOLserver since May 12th won't have experienced the
problem. (For someone with a 1 billion setting who last restarted on May
11th then AOLserver is scheduled to reset the database connections in
mid-January 2038 right now...)

A setting of 100 million, instead of 1 billion, wouldn't have exposed this
condition on AOLserver 3.x for another twenty-eight years or so. Zero is the
right value to use now. (Apparently 1 billion was chosen, instead of zero,
due to some bug in the Oracle driver or the Oracle client libraries... 1
billion being "effectively" forever... until this month!)


--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] aolserver 3.x not running scheduled procs anymore

2006-10-18 Thread Janine Sisk
The problem was that the very large value we all use for MaxOpen and  
MaxIdle on the database pools causes an integer overflow (I think) in  
the time calculation.  You need to set them to a smaller value, or  
set them to zero;  that is supposed to have the same effect (keep  
them open indefinitely) and it seems to be working ok on the one site  
I had to do this on.


janine

On Oct 18, 2006, at 7:38 PM, Mark Aufflick wrote:


I remember some time ago (maybe last year) people complaining that
their aolserver 3.x servers stopped running scheduled procs. My sole
remaining 3.x site didn't exhibit the problem and I didn't pay too
much attention.

A few weeks ago, however, my (still sole remaining) aolserver 3 site
stopped running scheduled procs!

Can anyone remember if anyone found the root cause of this?

Mark.

--
Mark Aufflick
e: [EMAIL PROTECTED]
w: mark.aufflick.com
p: +61 438 700 647
f: +61 2 9436 4737


--
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 email message. You can leave the  
Subject: field of your email blank.





--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] aolserver 3.x not running scheduled procs anymore

2006-10-18 Thread Michael A. Cleverly

On 10/18/06, Mark Aufflick <[EMAIL PROTECTED]> wrote:

I remember some time ago (maybe last year) people complaining that
their aolserver 3.x servers stopped running scheduled procs. My sole
remaining 3.x site didn't exhibit the problem and I didn't pay too
much attention.

A few weeks ago, however, my (still sole remaining) aolserver 3 site
stopped running scheduled procs!

Can anyone remember if anyone found the root cause of this?


All the gory details and more at: http://dossy.org/archives/000319.html

Michael


--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] aolserver 3.x not running scheduled procs anymore

2006-10-18 Thread Vinod Kurup

On 10/18/06, Mark Aufflick <[EMAIL PROTECTED]> wrote:

I remember some time ago (maybe last year) people complaining that
their aolserver 3.x servers stopped running scheduled procs. My sole
remaining 3.x site didn't exhibit the problem and I didn't pay too
much attention.

A few weeks ago, however, my (still sole remaining) aolserver 3 site
stopped running scheduled procs!

Can anyone remember if anyone found the root cause of this?


Hi Mark,

I think this is the (very interesting) thread:

http://thread.gmane.org/gmane.comp.web.aolserver/13037/focus=13058

It came down to the values for MaxOpen and MaxIdle being set
improperly. The fix is to set them to zero, if that's the cause of
your specific problem.

Vinod

--
Vinod Kurup, MD
[EMAIL PROTECTED]
http://kurup.org


--
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 email message. You can leave the Subject: 
field of your email blank.


[AOLSERVER] aolserver 3.x not running scheduled procs anymore

2006-10-18 Thread Mark Aufflick

I remember some time ago (maybe last year) people complaining that
their aolserver 3.x servers stopped running scheduled procs. My sole
remaining 3.x site didn't exhibit the problem and I didn't pay too
much attention.

A few weeks ago, however, my (still sole remaining) aolserver 3 site
stopped running scheduled procs!

Can anyone remember if anyone found the root cause of this?

Mark.

--
Mark Aufflick
e: [EMAIL PROTECTED]
w: mark.aufflick.com
p: +61 438 700 647
f: +61 2 9436 4737


--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] OT: Who owns aolserver.com?

2006-10-18 Thread Mark Aufflick

I'm happy to provide some openacs customizing/support.

On 10/18/06, Thorpe Mayes <[EMAIL PROTECTED]> wrote:

Is the problem finding someone to host the site? If so, I will be happy
to host the site.

Thorpe


On Oct 18, 2006, at 7:12 AM, Chris Kumagai wrote:

> Does anyone know what kind of bandwidth would be necessary?
>
> -Chris
>
>
>
> - Original Message -
> From: Daniël Mantione <[EMAIL PROTECTED]>
> Date: Wednesday, October 18, 2006 12:56 am
> Subject: Re: [AOLSERVER] OT: Who owns aolserver.com?
> To: AOLSERVER@LISTSERV.AOL.COM
>
>>
>>
>> Op Wed, 18 Oct 2006, schreef Bas Scheffers:
>>
>>> That's been a sore point for a long time; one that I am trying
>> to solve
>>> with Dossy's blessing. Unfortunately, having a busy project at
>> work and
>>> building work going on at home hasn't sped things up. I came as
>> far as
>>> preparing AOLserver for an OpenACS install, but got stalled there.
>>>
>>> If anyone - especially and OpenACS expert, like someone from
>> that group -
>>> would like to help out, it would really be appreciated.
>>
>> I can help set up an OpenACS installation if necessary.
>>
>> Daniël
>>
>>
>> --
>> 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 email message. You can leave
>> the Subject: field of your email blank.
>
>
> --
> 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 email message. You can leave the
> Subject: field of your email blank.
>
>
Thorpe Mayes
eCognizant LLC
3840 Cobble Circle
Norman, Oklahoma 73072
(405) 514-9753
(800) 309-5832
fax: 1-866-871-3069
[EMAIL PROTECTED]


--
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 email message. You can leave the Subject: 
field of your email blank.




--
Mark Aufflick
e: [EMAIL PROTECTED]
w: mark.aufflick.com
p: +61 438 700 647
f: +61 2 9436 4737


--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] Rolling Access Logs

2006-10-18 Thread Dossy Shiobara
On 2006.10.18, Steve Manning <[EMAIL PROTECTED]> wrote:
> I have a small problem with access logs for www.fancydress.com whereby
> they have started to grow beyond the 2gig limit of my O/S. I'm using the
> nslog module to roll the logs daily at the moment but I'm wondering of
> there is a way to roll the logs based on their size (as with logrotates
> size parameter) or if I can tell nslog to roll more than once per day
> (with the rollhour parameter perhaps)? Failing that I'll switch to using
> SIGHUP from cron or logrotate and turn off the inbuilt logrotation -
> although I'd prefer not to.

You can also use a scheduled proc to perform logrolling and implement
your own custom logic to decide how and when to roll logs (by size,
periodically, etc.).

-- Dossy

-- 
Dossy Shiobara  | [EMAIL PROTECTED] | http://dossy.org/
Panoptic Computer Network   | http://panoptic.com/
  "He realized the fastest way to change is to laugh at your own
folly -- then you can let go and quickly move on." (p. 70)


--
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 email message. You can leave the Subject: 
field of your email blank.


[AOLSERVER] Rolling Access Logs

2006-10-18 Thread Steve Manning




Hi Peeps.

I have a small problem with access logs for www.fancydress.com whereby they have started to grow beyond the 2gig limit of my O/S. I'm using the nslog module to roll the logs daily at the moment but I'm wondering of there is a way to roll the logs based on their size (as with logrotates size parameter) or if I can tell nslog to roll more than once per day (with the rollhour parameter perhaps)? Failing that I'll switch to using SIGHUP from cron or logrotate and turn off the inbuilt logrotation - although I'd prefer not to.

Any thoughts?

    Steve









Steve Manning - Mandrake Linux 10.1 - Gnome 2.6
East Goscote - Leicester - UK +44 (0)116 260 5457
E-Mail: [EMAIL PROTECTED] - Web: www.festinalente.co.uk
AIM: verbomania - Public Key: 25665CAF from: wwwkeys.pgp.net




There are only 10 types of people in this world
Those who understand binary and those who don't
















--
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 email message. You can leave the Subject: field of your email blank.



Re: [AOLSERVER] OT: Who owns aolserver.com?

2006-10-18 Thread Thorpe Mayes
Is the problem finding someone to host the site? If so, I will be happy 
to host the site.


Thorpe


On Oct 18, 2006, at 7:12 AM, Chris Kumagai wrote:


Does anyone know what kind of bandwidth would be necessary?

-Chris



- Original Message -
From: Daniël Mantione <[EMAIL PROTECTED]>
Date: Wednesday, October 18, 2006 12:56 am
Subject: Re: [AOLSERVER] OT: Who owns aolserver.com?
To: AOLSERVER@LISTSERV.AOL.COM




Op Wed, 18 Oct 2006, schreef Bas Scheffers:


That's been a sore point for a long time; one that I am trying

to solve

with Dossy's blessing. Unfortunately, having a busy project at

work and

building work going on at home hasn't sped things up. I came as

far as

preparing AOLserver for an OpenACS install, but got stalled there.

If anyone - especially and OpenACS expert, like someone from

that group -

would like to help out, it would really be appreciated.


I can help set up an OpenACS installation if necessary.

Daniël


--
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 email message. You can leave
the Subject: field of your email blank.



--
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 email message. You can leave the 
Subject: field of your email blank.




Thorpe Mayes
eCognizant LLC
3840 Cobble Circle
Norman, Oklahoma 73072
(405) 514-9753
(800) 309-5832
fax: 1-866-871-3069
[EMAIL PROTECTED]


--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] OT: Who owns aolserver.com?

2006-10-18 Thread Bas Scheffers
I would guess very, very little; all the downloads will stil be comming
from sourceforge, so it's just some page views.

Bas.

On Wednesday, October 18, 2006 13:12, Chris Kumagai said:
> Does anyone know what kind of bandwidth would be necessary?
>
> -Chris
>
>
>
> - Original Message -
> From: Daniël Mantione <[EMAIL PROTECTED]>
> Date: Wednesday, October 18, 2006 12:56 am
> Subject: Re: [AOLSERVER] OT: Who owns aolserver.com?
> To: AOLSERVER@LISTSERV.AOL.COM
>
> >
> >
> > Op Wed, 18 Oct 2006, schreef Bas Scheffers:
> >
> > > That's been a sore point for a long time; one that I am trying
> > to solve
> > > with Dossy's blessing. Unfortunately, having a busy project at
> > work and
> > > building work going on at home hasn't sped things up. I came as
> > far as
> > > preparing AOLserver for an OpenACS install, but got stalled there.
> > >
> > > If anyone - especially and OpenACS expert, like someone from
> > that group -
> > > would like to help out, it would really be appreciated.
> >
> > I can help set up an OpenACS installation if necessary.
> >
> > Daniël
> >
> >
> > --
> > 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 email message. You can leave
> > the Subject: field of your email blank.
>
>
> --
> 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 email message. You can leave the
> Subject: field of your email blank.
>


--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] OT: Who owns aolserver.com?

2006-10-18 Thread Daniël Mantione


Op Wed, 18 Oct 2006, schreef Chris Kumagai:

> Does anyone know what kind of bandwidth would be necessary?

According to the Sourceforge statistics, it is < 1MB/hour.

Daniël


--
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 email message. You can leave the Subject: 
field of your email blank.

Re: [AOLSERVER] OT: Who owns aolserver.com?

2006-10-18 Thread Chris Kumagai
Does anyone know what kind of bandwidth would be necessary?

-Chris



- Original Message -
From: Daniël Mantione <[EMAIL PROTECTED]>
Date: Wednesday, October 18, 2006 12:56 am
Subject: Re: [AOLSERVER] OT: Who owns aolserver.com?
To: AOLSERVER@LISTSERV.AOL.COM

> 
> 
> Op Wed, 18 Oct 2006, schreef Bas Scheffers:
> 
> > That's been a sore point for a long time; one that I am trying 
> to solve
> > with Dossy's blessing. Unfortunately, having a busy project at 
> work and
> > building work going on at home hasn't sped things up. I came as 
> far as
> > preparing AOLserver for an OpenACS install, but got stalled there.
> > 
> > If anyone - especially and OpenACS expert, like someone from 
> that group -
> > would like to help out, it would really be appreciated.
> 
> I can help set up an OpenACS installation if necessary.
> 
> Daniël
> 
> 
> --
> 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 email message. You can leave 
> the Subject: field of your email blank.


--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] OT: Who owns aolserver.com?

2006-10-18 Thread Daniël Mantione


Op Wed, 18 Oct 2006, schreef Bas Scheffers:

> That's been a sore point for a long time; one that I am trying to solve
> with Dossy's blessing. Unfortunately, having a busy project at work and
> building work going on at home hasn't sped things up. I came as far as
> preparing AOLserver for an OpenACS install, but got stalled there.
> 
> If anyone - especially and OpenACS expert, like someone from that group -
> would like to help out, it would really be appreciated.

I can help set up an OpenACS installation if necessary.

Daniël


--
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 email message. You can leave the Subject: 
field of your email blank.

Re: [AOLSERVER] OT: Who owns aolserver.com?

2006-10-18 Thread Bas Scheffers
That's been a sore point for a long time; one that I am trying to solve
with Dossy's blessing. Unfortunately, having a busy project at work and
building work going on at home hasn't sped things up. I came as far as
preparing AOLserver for an OpenACS install, but got stalled there.

If anyone - especially and OpenACS expert, like someone from that group -
would like to help out, it would really be appreciated.

Cheers,
Bas.


On Wednesday, October 18, 2006 10:29, JM said:
> hi,
>
>   IIRC aolserver.com is the official site for aolserver... i last visited
> the
> site and www.aolserver.com is running under apache... :(
>
>
> Mailing-list
>
> DISCLAIMER: This Message may contain confidential information intended
> only for the use of the addressee named above. If you are not the intended
> recipient of this message you are hereby notified that any use,
> dissemination, distribution or reproduction of this message is prohibited.
>  If you received this message in error please notify your Mail
> Administrator and delete this message immediately. Any views expressed in
> this message are those of the individual sender and may not necessarily
> reflect the views of GMA New Media, Inc.
>
>
> --
> 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 email message. You can leave the
> Subject: field of your email blank.
>


--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] aolserver 4.5 tarball utils/* missing #! line

2006-10-18 Thread Mark Aufflick
Ah I see. Well, the make seems to have worked fine via the Makefile shim, other than the #! line and mode.Alternatively, there could just be a dummy Makefile that outputs some help.Now I'm working on compiling nsoracle under macosx with oracle 10g - some tweaking to the included libraries is needed.
On 10/18/06, Dossy Shiobara <[EMAIL PROTECTED]> wrote:
On 2006.10.18, Mark Aufflick <[EMAIL PROTECTED]> wrote:> I just did an install of aolserver 4.5 from the tarball on sf.net
 and> had to do the following to allow the configure/make/make install cycle> work:>> chmod a+x utils/*> added #!/usr/bin/tclsh to the top of utils/*.tcl files>> Is this expected? I guess the makefile or configure process should be
> doing these steps.As an experiment, the build process for AOLserver 4.5.0 changedslightly.  See the README:|| 3c. Configure, build, and install AOLserver.  The build process|| requires a working, installed Tcl, and supports Unix and
|| Windows with the same makefiles and a few supporting Tcl|| scripts.  The following should work: Windows: c:\aolserver\srcdir> c:\aolserver\bin\tclsh84.exe 
nsconfig.tcl|| c:\aolserver\srcdir> nmake install Unix: % /usr/local/aolserver/bin/tclsh84 ./nsconfig.tcl|| % gmake install ...This was an attempt to rationalize the build process for Win32 and
Unix-like systems ... thinking that if they shared the same buildmachinery, they would stay in sync.However, I think we can still have the old Unix-style "configure; make"continue to work as it did before.  But, for now, if you follow what's
in the README, it should work out-of-the-box.-- Dossy--Dossy Shiobara  | [EMAIL PROTECTED] | http://dossy.org/
Panoptic Computer Network   | http://panoptic.com/  "He realized the fastest way to change is to laugh at your ownfolly -- then you can let go and quickly move on." (p. 70)
--AOLserver - http://www.aolserver.com/To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]
> with thebody of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.-- Mark Aufflick e: 
[EMAIL PROTECTED] w: mark.aufflick.com p: +61 438 700 647 f: +61 2 9436 4737


--
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 email message. You can leave the Subject: field of your email blank.



[AOLSERVER] OT: Who owns aolserver.com?

2006-10-18 Thread JM
hi,

IIRC aolserver.com is the official site for aolserver... i last visited 
the 
site and www.aolserver.com is running under apache... :(


Mailing-list

DISCLAIMER: This Message may contain confidential information intended only for 
the use of the addressee named above. If you are not the intended recipient of 
this message you are hereby notified that any use, dissemination, distribution 
or reproduction of this message is prohibited.  If you received this message in 
error please notify your Mail Administrator and delete this message 
immediately. Any views expressed in this message are those of the individual 
sender and may not necessarily reflect the views of GMA New Media, Inc.


--
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 email message. You can leave the Subject: 
field of your email blank.


Re: [AOLSERVER] aolserver 4.5 tarball utils/* missing #! line

2006-10-18 Thread Dossy Shiobara
On 2006.10.18, Mark Aufflick <[EMAIL PROTECTED]> wrote:
> I just did an install of aolserver 4.5 from the tarball on sf.net and
> had to do the following to allow the configure/make/make install cycle
> work:
> 
> chmod a+x utils/*
> added #!/usr/bin/tclsh to the top of utils/*.tcl files
> 
> Is this expected? I guess the makefile or configure process should be
> doing these steps.

As an experiment, the build process for AOLserver 4.5.0 changed
slightly.  See the README:

|| 3c. Configure, build, and install AOLserver.  The build process
|| requires a working, installed Tcl, and supports Unix and
|| Windows with the same makefiles and a few supporting Tcl
|| scripts.  The following should work:
|| 
|| Windows:
|| 
|| c:\aolserver\srcdir> c:\aolserver\bin\tclsh84.exe nsconfig.tcl
|| c:\aolserver\srcdir> nmake install
|| 
|| Unix:
|| 
|| % /usr/local/aolserver/bin/tclsh84 ./nsconfig.tcl
|| % gmake install
||
|| ...

This was an attempt to rationalize the build process for Win32 and
Unix-like systems ... thinking that if they shared the same build
machinery, they would stay in sync.

However, I think we can still have the old Unix-style "configure; make"
continue to work as it did before.  But, for now, if you follow what's
in the README, it should work out-of-the-box.

-- Dossy

-- 
Dossy Shiobara  | [EMAIL PROTECTED] | http://dossy.org/
Panoptic Computer Network   | http://panoptic.com/
  "He realized the fastest way to change is to laugh at your own
folly -- then you can let go and quickly move on." (p. 70)


--
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 email message. You can leave the Subject: 
field of your email blank.


[AOLSERVER] aolserver 4.5 tarball utils/* missing #! line

2006-10-18 Thread Mark Aufflick

I just did an install of aolserver 4.5 from the tarball on sf.net and
had to do the following to allow the configure/make/make install cycle
work:

chmod a+x utils/*
added #!/usr/bin/tclsh to the top of utils/*.tcl files

Is this expected? I guess the makefile or configure process should be
doing these steps.

Cheers,

Mark.

--
Mark Aufflick
e: [EMAIL PROTECTED]
w: mark.aufflick.com
p: +61 438 700 647
f: +61 2 9436 4737


--
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 email message. You can leave the Subject: 
field of your email blank.