Re: [AOLSERVER] ANN: Searchable list archive at Gmane.org

2004-06-18 Thread Andrew Piskorski
On Fri, Jun 11, 2004 at 02:50:40PM -0700, Jim Wilcoxson wrote: > If you are interested in adding historical stuff to the archive, I have > the mailing list from March 23rd, 1996 to Oct 9, 1999. Lemme know. That would be neat, please do add those really old archives. -- Andrew Piskorski <[EMAIL P

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Dossy
On 2004.06.19, Cristian Andrei Calin <[EMAIL PROTECTED]> wrote: > Indeed with a 1MB stacksize both phpbb2 and phpsysinfo work fine. Great! > I've also tried a 4MB stacksize, > ns_param stacksize [expr 4096 * 1024] > and it segfaulted, this was only tried with aolserver 3.5.6, I don't > have a 4.0

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Cristian Andrei Calin
Indeed with a 1MB stacksize both phpbb2 and phpsysinfo work fine. I've also tried a 4MB stacksize, ns_param stacksize [expr 4096 * 1024] and it segfaulted, this was only tried with aolserver 3.5.6, I don't have a 4.0.5 server at the moment, but I can try if you find it necesary. Now, my problem,

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Dossy
OK, after some more troubleshooting, I think I figured out what's wrong. I'm feeling awfully dumb now for not thinking of/checking this first. Only on PHP operations that used lots of memory did it coredump. (And "lots" wasn't a big number, either.) So, I checked what I had stacksize configured

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Dossy
On 2004.06.18, Cristian Andrei Calin <[EMAIL PROTECTED]> wrote: > > > So, I'll work on this over the next few days. We'll see how far I get > > ... > > If there is anything else I can do to help please let me know. I was able to get phpBB2 as far as actually connecting to MySQL 3.x and creating t

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Cristian Andrei Calin
On Fri, 18 Jun 2004 15:46:15 -0400 Dossy <[EMAIL PROTECTED]> wrote: > So, I'll work on this over the next few days. We'll see how far I get > ... If there is anything else I can do to help please let me know. -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply s

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Cristian Andrei Calin
On Fri, 18 Jun 2004 15:46:15 -0400 Dossy <[EMAIL PROTECTED]> wrote: > Where is /phpsysinfo/index.php in phpBB2? I just downloaded and > installed phpBB2 2.0.8a, and I don't see it anywhere. ups, sorry, that was from a different coredump, not by phpbb2, but by phpsysinfo (phpsysinfo.sf.net) 2.2.

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Dossy
On 2004.06.18, Cristian Andrei Calin <[EMAIL PROTECTED]> wrote: > #18 0x4003d2d0 in Ns_ConnRedirect (conn=0x812b488, > url=0xbf1ff2a8 "/phpsysinfo/index.php") at op.c:242 > #19 0x40035ec3 in FastGetRestart (conn=0x812b488, page=0x8061e00 "index.php") > at fastpath.c:301 Where is /phpsysinf

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Cristian Andrei Calin
On Fri, 18 Jun 2004 13:00:45 -0400 Andrew Piskorski <[EMAIL PROTECTED]> wrote: > Have you tried running it under Valgrind? No, I haven't. On Fri, 18 Jun 2004 12:37:59 -0400 Chris Davies <[EMAIL PROTECTED]> wrote: > Do you have Zend Optimizer installed? Are you running non-compiled > code? No,

Re: [AOLSERVER] configure with -g -O2 ?

2004-06-18 Thread Andrew Piskorski
On Fri, Jun 18, 2004 at 01:16:53PM -0400, Andrew Piskorski wrote: > Using the AOLserver 4.0.5 configure script, how the heck do I get it > to properly generate a Makefile.global which compiles using "-g -O2"? > Removing the "--enable-symbols" gives me -O (not -O2), but not -g. > Adding an "--enabl

Re: [AOLSERVER] configure with -g -O2 ?

2004-06-18 Thread Dossy
On 2004.06.18, Andrew Piskorski <[EMAIL PROTECTED]> wrote: > > Enabling BOTH debugging symbols and optimization is almost always the > right thing to do when compiling with gcc, You mean nobody else compiles with "-O99 -funroll-loops -frerun-cse-after-loop -fexpensive-optimizations -fomit-frame-po

[AOLSERVER] configure with -g -O2 ?

2004-06-18 Thread Andrew Piskorski
Using the AOLserver 4.0.5 configure script, how the heck do I get it to properly generate a Makefile.global which compiles using "-g -O2"? This turns on -g but also turns OFF -O: ./configure --enable-symbols Removing the "--enable-symbols" gives me -O (not -O2), but not -g. Adding an "--enable-

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Andrew Piskorski
On Fri, Jun 18, 2004 at 07:14:05PM +0300, Cristian Andrei Calin wrote: > I can however give you the output of gdb at the time of the > crash. It seems to come from the php source, zend/send_operators.c > (line 453) that converts a long to a string... at list that what That line is basically just

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Dossy
On 2004.06.18, Cristian Andrei Calin <[EMAIL PROTECTED]> wrote: > I can however give you the output of gdb at the time of the crash. It > seems to come from the php source, zend/send_operators.c (line 453) > that converts a long to a string... at list that what gdb's trace > claims. I tried talking

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Chris Davies
Do you have Zend Optimizer installed? Are you running non-compiled code? if so, try zend_optimizer.optimization_level=0 in your php.ini On Fri, 2004-06-18 at 19:14 +0300, Cristian Andrei Calin wrote: > Well, I've been trying to identify the lines of code that cause the problems, so far > I c

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Cristian Andrei Calin
Well, I've been trying to identify the lines of code that cause the problems, so far I came out empty, I will however keep trying as I want to integrate aolserver into TFM Linux and I need PHP support in it. I can however give you the output of gdb at the time of the crash. It seems to come fro

Re: [AOLSERVER] problems with aolserver and php

2004-06-18 Thread Dossy
On 2004.06.18, Cristian Andrei Calin <[EMAIL PROTECTED]> wrote: > I've been trying to get aolserver to play nice with php for the past > few days but so far I came out empty, it simply breakes when trying to > run complex stuff like phpsysinfo or phpbb2. It can run simple scripts > like , but fails

[AOLSERVER] problems with aolserver and php

2004-06-18 Thread Cristian Andrei Calin
I've been trying to get aolserver to play nice with php for the past few days but so far I came out empty, it simply breakes when trying to run complex stuff like phpsysinfo or phpbb2. It can run simple scripts like , but fails with segfault or just fieses up when complex stuff is involved. I'v