Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-03-01 Thread Mel
On Saturday 01 March 2008 12:13:29 Matthew Seaman wrote:
> Mel wrote:
> > On Friday 29 February 2008 21:57:10 Alex Zbyslaw wrote:
> >> Abdullah Ibn Hamad Al-Marri wrote:
> >>> BB# php -v
> >>> PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Feb 24 2008
> >>> 21:57:57) Copyright (c) 1997-2007 The PHP Group
> >>> Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
> >>>with eAccelerator v0.9.5.2, Copyright (c) 2004-2006 eAccelerator, by
> >>> eAccelerator Segmentation fault (core dumped)
> >>>
> >>>
> >>>
> >>> Regards,
> >>>
> >>> -Abdullah Ibn Hamad Al-Marri
> >>> Arab Portal
> >>> http://www.WeArab.Net/
> >>
> >> I hate to see a good post go to waste.  This was sent just last week
> >> sometime.  The OP there didn't respond so maybe you can try.  There was
> >> more info in that thread (and probably dozens more just like it).
> >>
> >> --Alex
> >>
> >> PS This php misfeature is so common that even though I've never run PHP
> >> in my life, it is burned into my brain that module ordering causes
> >> severe headaches.
> >>
> >>> Hmmm...
> >>>
> >>> I've been thinking about methods to make sure the load order of PHP
> >>> modules avoids this sort of problem.  Can you try the following and
> >>> see if it helps?
> >>>
> >>>   # cp /usr/local/etc/php/extensions.ini{,.bak}
> >>>   # cd /usr/local/lib/php/20060613
> >>>   # lorder *.so | tsort | tail -r | sed -e 's/^/extension=/' >
> >>> /usr/local/etc/php/extensions.ini
> >>>
> >>> Oh, and yes, you do need the php5-spl module to be installed.
> >>>
> >>>   Cheers,
> >>>
> >>>   Matthew
> >>>
> >>> - --
> >>> Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
> >>>  Flat 3
> >>> PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
> >>>  Kent, CT11 9PW
> >>
> >> ___
> >> freebsd-questions@freebsd.org mailing list
> >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> >> To unsubscribe, send any mail to
> >> "[EMAIL PROTECTED]"
> >
> > Oh, right, forgot to mention that last time, doesn't work:
> > $ lorder /usr/local/lib/php/20060613/*.so |tsort -l|tail -r |
> > sed -e 's,^.*/,extension=,' |sudo /bin/dd
> > of=/usr/local/etc/php/extensions.ini
> > 1+1 records in
> > 1+1 records out
> > 873 bytes transferred in 0.412678 secs (2115 bytes/sec)
> >
> > $ php -v
> > PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Nov 19 2007 04:04:39)
> > Copyright (c) 1997-2007 The PHP Group
> > Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
> > Segmentation fault: 11 (core dumped)
> >
> > #1  0x2916e544 in __do_global_dtors_aux ()
> >from /usr/local/lib/php/20060613/simplexml.so
> > #2  0x29172ba8 in _fini () from /usr/local/lib/php/20060613/simplexml.so
> >
> > $ sudo
> > mv /usr/local/etc/php/extensions.ini.bak
> > /usr/local/etc/php/extensions.ini
> >
> > $ php -v
> > PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Nov 19 2007 04:04:39)
> > Copyright (c) 1997-2007 The PHP Group
> > Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
> >
> > I'm pretty sure ale@ would've thought of that, if it did work.
> >
> > It's all trial and error and I haven't found any 100% working logic to
> > it.
>
> Oh well.  Another beautiful theory destroyed by ugly facts.  Actually,
> I think something like lorder(1) is the right answer here, but it needs
> rather different semantics to the way lorder(1) has been traditionally used
> -- hence the rather kludgy step of reversing the final order with 'tail
> -r'.
>
> Something to think about in my copious free time, I suppose.  Thank you
> very much indeed for testing though.

Lorder just checks if lib a calls a function from lib b, but the problem is in 
the zend engine module shutdown code, where it tells a module to free it's 
globals. So it's not just the undefined symbol problem you have to deal with, 
(which lorder as you described would indeed fix things), but also that 
resources are being freed in correct order.

It seems to be a more general problem of FreeBSD's dlopen(), since 
multimedia/transcode suffers from the same issues.
However, both the Zend Engine and the transcode code, are so heavily 
typedeffed, macroed and comments-lacking, I get lost and frustrated before I 
can even begin to understand the logic of the code :p

-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-03-01 Thread Matthew Seaman
Mel wrote:
> On Friday 29 February 2008 21:57:10 Alex Zbyslaw wrote:
>> Abdullah Ibn Hamad Al-Marri wrote:
>>> BB# php -v
>>> PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Feb 24 2008 21:57:57)
>>> Copyright (c) 1997-2007 The PHP Group
>>> Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
>>>with eAccelerator v0.9.5.2, Copyright (c) 2004-2006 eAccelerator, by
>>> eAccelerator Segmentation fault (core dumped)
>>>
>>>
>>>
>>> Regards,
>>>
>>> -Abdullah Ibn Hamad Al-Marri
>>> Arab Portal
>>> http://www.WeArab.Net/
>> I hate to see a good post go to waste.  This was sent just last week
>> sometime.  The OP there didn't respond so maybe you can try.  There was
>> more info in that thread (and probably dozens more just like it).
>>
>> --Alex
>>
>> PS This php misfeature is so common that even though I've never run PHP
>> in my life, it is burned into my brain that module ordering causes
>> severe headaches.
>>
>>> Hmmm...
>>>
>>> I've been thinking about methods to make sure the load order of PHP
>>> modules avoids this sort of problem.  Can you try the following and
>>> see if it helps?
>>>
>>>   # cp /usr/local/etc/php/extensions.ini{,.bak}
>>>   # cd /usr/local/lib/php/20060613
>>>   # lorder *.so | tsort | tail -r | sed -e 's/^/extension=/' >
>>> /usr/local/etc/php/extensions.ini
>>>
>>> Oh, and yes, you do need the php5-spl module to be installed.
>>>
>>> Cheers,
>>>
>>> Matthew
>>>
>>> - --
>>> Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
>>>  Flat 3
>>> PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
>>>  Kent, CT11 9PW
>> ___
>> freebsd-questions@freebsd.org mailing list
>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>> To unsubscribe, send any mail to
>> "[EMAIL PROTECTED]"
> 
> Oh, right, forgot to mention that last time, doesn't work:
> $ lorder /usr/local/lib/php/20060613/*.so |tsort -l|tail -r |
> sed -e 's,^.*/,extension=,' |sudo /bin/dd 
> of=/usr/local/etc/php/extensions.ini
> 1+1 records in
> 1+1 records out
> 873 bytes transferred in 0.412678 secs (2115 bytes/sec)
> 
> $ php -v
> PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Nov 19 2007 04:04:39)
> Copyright (c) 1997-2007 The PHP Group
> Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
> Segmentation fault: 11 (core dumped)
> 
> #1  0x2916e544 in __do_global_dtors_aux ()
>from /usr/local/lib/php/20060613/simplexml.so
> #2  0x29172ba8 in _fini () from /usr/local/lib/php/20060613/simplexml.so
> 
> $ sudo 
> mv /usr/local/etc/php/extensions.ini.bak /usr/local/etc/php/extensions.ini
> 
> $ php -v
> PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Nov 19 2007 04:04:39)
> Copyright (c) 1997-2007 The PHP Group
> Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
> 
> I'm pretty sure ale@ would've thought of that, if it did work.
> 
> It's all trial and error and I haven't found any 100% working logic to it.

Oh well.  Another beautiful theory destroyed by ugly facts.  Actually,
I think something like lorder(1) is the right answer here, but it needs
rather different semantics to the way lorder(1) has been traditionally used
-- hence the rather kludgy step of reversing the final order with 'tail -r'.

Something to think about in my copious free time, I suppose.  Thank you very
much indeed for testing though.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
  Kent, CT11 9PW
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-03-01 Thread Abdullah Ibn Hamad Al-Marri
- Original Message 
> From: Mel <[EMAIL PROTECTED]>
> To: freebsd-questions@freebsd.org
> Cc: Alex Zbyslaw <[EMAIL PROTECTED]>; Abdullah Ibn Hamad Al-Marri <[EMAIL 
> PROTECTED]>
> Sent: Saturday, March 1, 2008 12:38:44 AM
> Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> 
> On Friday 29 February 2008 21:57:10 Alex Zbyslaw wrote:
> > Abdullah Ibn Hamad Al-Marri wrote:
> > >BB# php -v
> > >PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Feb 24 2008 21:57:57)
> > >Copyright (c) 1997-2007 The PHP Group
> > >Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
> > >with eAccelerator v0.9.5.2, Copyright (c) 2004-2006 eAccelerator, by
> > > eAccelerator Segmentation fault (core dumped)
> > >
> > >
> > >
> > >Regards,
> > >
> > >-Abdullah Ibn Hamad Al-Marri
> > >Arab Portal
> > >http://www.WeArab.Net/
> >
> > I hate to see a good post go to waste.  This was sent just last week
> > sometime.  The OP there didn't respond so maybe you can try.  There was
> > more info in that thread (and probably dozens more just like it).
> >
> > --Alex
> >
> > PS This php misfeature is so common that even though I've never run PHP
> > in my life, it is burned into my brain that module ordering causes
> > severe headaches.
> >
> > >Hmmm...
> > >
> > >I've been thinking about methods to make sure the load order of PHP
> > >modules avoids this sort of problem.  Can you try the following and
> > >see if it helps?
> > >
> > >   # cp /usr/local/etc/php/extensions.ini{,.bak}
> > >   # cd /usr/local/lib/php/20060613
> > >   # lorder *.so | tsort | tail -r | sed -e 's/^/extension=/' >
> > > /usr/local/etc/php/extensions.ini
> > >
> > >Oh, and yes, you do need the php5-spl module to be installed.
> > >
> > >Cheers,
> > >
> > >Matthew
> > >
> > >- --
> > >Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
> > >  Flat 3
> > >PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
> > >  Kent, CT11 9PW
> >
> > ___
> > freebsd-questions@freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > To unsubscribe, send any mail to
> > "[EMAIL PROTECTED]"
> 
> Oh, right, forgot to mention that last time, doesn't work:
> $ lorder /usr/local/lib/php/20060613/*.so |tsort -l|tail -r |
> sed -e 's,^.*/,extension=,' |sudo /bin/dd 
> of=/usr/local/etc/php/extensions.ini
> 1+1 records in
> 1+1 records out
> 873 bytes transferred in 0.412678 secs (2115 bytes/sec)
> 
> $ php -v
> PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Nov 19 2007 04:04:39)
> Copyright (c) 1997-2007 The PHP Group
> Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
> Segmentation fault: 11 (core dumped)
> 
> #1  0x2916e544 in __do_global_dtors_aux ()
>from /usr/local/lib/php/20060613/simplexml.so
> #2  0x29172ba8 in _fini () from /usr/local/lib/php/20060613/simplexml.so
> 
> $ sudo 
> mv /usr/local/etc/php/extensions.ini.bak /usr/local/etc/php/extensions.ini
> 
> $ php -v
> PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Nov 19 2007 04:04:39)
> Copyright (c) 1997-2007 The PHP Group
> Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
> 
> I'm pretty sure ale@ would've thought of that, if it did work.
> 
> It's all trial and error and I haven't found any 100% working logic to it.
> -- 
> Mel
> 
> Problem with today's modular software: they start with the modules
> and never get to the software part.

This is PHP5 port issue.

Now I got it working by editing /usr/local/etc/php/extensions.ini by hand.

*sigh*

/usr/local/etc/php/extensions.ini

 
Regards,

-Abdullah Ibn Hamad Al-Marri
Arab Portal
http://www.WeArab.Net/
 




  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Mel
On Friday 29 February 2008 21:57:10 Alex Zbyslaw wrote:
> Abdullah Ibn Hamad Al-Marri wrote:
> >BB# php -v
> >PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Feb 24 2008 21:57:57)
> >Copyright (c) 1997-2007 The PHP Group
> >Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
> >with eAccelerator v0.9.5.2, Copyright (c) 2004-2006 eAccelerator, by
> > eAccelerator Segmentation fault (core dumped)
> >
> >
> >
> >Regards,
> >
> >-Abdullah Ibn Hamad Al-Marri
> >Arab Portal
> >http://www.WeArab.Net/
>
> I hate to see a good post go to waste.  This was sent just last week
> sometime.  The OP there didn't respond so maybe you can try.  There was
> more info in that thread (and probably dozens more just like it).
>
> --Alex
>
> PS This php misfeature is so common that even though I've never run PHP
> in my life, it is burned into my brain that module ordering causes
> severe headaches.
>
> >Hmmm...
> >
> >I've been thinking about methods to make sure the load order of PHP
> >modules avoids this sort of problem.  Can you try the following and
> >see if it helps?
> >
> >   # cp /usr/local/etc/php/extensions.ini{,.bak}
> >   # cd /usr/local/lib/php/20060613
> >   # lorder *.so | tsort | tail -r | sed -e 's/^/extension=/' >
> > /usr/local/etc/php/extensions.ini
> >
> >Oh, and yes, you do need the php5-spl module to be installed.
> >
> > Cheers,
> >
> > Matthew
> >
> >- --
> >Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
> >  Flat 3
> >PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
> >  Kent, CT11 9PW
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

Oh, right, forgot to mention that last time, doesn't work:
$ lorder /usr/local/lib/php/20060613/*.so |tsort -l|tail -r |
sed -e 's,^.*/,extension=,' |sudo /bin/dd 
of=/usr/local/etc/php/extensions.ini
1+1 records in
1+1 records out
873 bytes transferred in 0.412678 secs (2115 bytes/sec)

$ php -v
PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Nov 19 2007 04:04:39)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
Segmentation fault: 11 (core dumped)

#1  0x2916e544 in __do_global_dtors_aux ()
   from /usr/local/lib/php/20060613/simplexml.so
#2  0x29172ba8 in _fini () from /usr/local/lib/php/20060613/simplexml.so

$ sudo 
mv /usr/local/etc/php/extensions.ini.bak /usr/local/etc/php/extensions.ini

$ php -v
PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Nov 19 2007 04:04:39)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies

I'm pretty sure ale@ would've thought of that, if it did work.

It's all trial and error and I haven't found any 100% working logic to it.
-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Alex Zbyslaw

Abdullah Ibn Hamad Al-Marri wrote:


BB# php -v
PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Feb 24 2008 21:57:57) 
Copyright (c) 1997-2007 The PHP Group

Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
   with eAccelerator v0.9.5.2, Copyright (c) 2004-2006 eAccelerator, by 
eAccelerator
Segmentation fault (core dumped)



Regards,

-Abdullah Ibn Hamad Al-Marri
Arab Portal
http://www.WeArab.Net/

 

I hate to see a good post go to waste.  This was sent just last week 
sometime.  The OP there didn't respond so maybe you can try.  There was 
more info in that thread (and probably dozens more just like it).


--Alex

PS This php misfeature is so common that even though I've never run PHP 
in my life, it is burned into my brain that module ordering causes 
severe headaches.



Hmmm...

I've been thinking about methods to make sure the load order of PHP
modules avoids this sort of problem.  Can you try the following and
see if it helps?

  # cp /usr/local/etc/php/extensions.ini{,.bak}
  # cd /usr/local/lib/php/20060613
  # lorder *.so | tsort | tail -r | sed -e 's/^/extension=/' > 
/usr/local/etc/php/extensions.ini

Oh, and yes, you do need the php5-spl module to be installed.

Cheers,

Matthew

- -- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard

 Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
 Kent, CT11 9PW



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Abdullah Ibn Hamad Al-Marri
- Original Message 
> From: Mel <[EMAIL PROTECTED]>
> To: freebsd-questions@freebsd.org
> Cc: Abdullah Ibn Hamad Al-Marri <[EMAIL PROTECTED]>
> Sent: Friday, February 29, 2008 9:48:08 PM
> Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> 
> On Friday 29 February 2008 19:40:44 Abdullah Ibn Hamad Al-Marri wrote:
> > - Original Message 
> >
> > > From: Mel 
> > > To: freebsd-questions@freebsd.org
> > > Cc: Abdullah Ibn Hamad Al-Marri 
> > > Sent: Friday, February 29, 2008 9:35:38 PM
> > > Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> > >
> > > On Friday 29 February 2008 19:08:59 Abdullah Ibn Hamad Al-Marri wrote:
> > > > - Original Message 
> > > >
> > > > > From: Mel
> > > > > To: freebsd-questions@freebsd.org
> > > > > Cc: Abdullah Ibn Hamad Al-Marri
> > > > > Sent: Friday, February 29, 2008 8:52:35 PM
> > > > > Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> > > > >
> > > > > On Friday 29 February 2008 18:32:13 Abdullah Ibn Hamad Al-Marri wrote:
> > > > > > FreeBSD BB.WeArab.Net 7.0-STABLE FreeBSD 7.0-STABLE #0: Fri Feb 29
> > > > > > 16:57:56 UTC 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/BB
> > > > > > amd64
> > > > > >
> > > > > > But I always get :
> > > > > >
> > > > > > pid 646 (httpd), uid 80: exited on signal 11
> > > > >
> > > > > Hint: provide more info:
> > > > > - Is this system upgraded from 6.x?
> > > > > - Is apache recompiled after OS upgrade?
> > > > > - WHat apache version?
> > > > > - What modules?
> > > > >
> > > > > --
> > > > > Mel
> > > >
> > > > Fresh FreeBSD 7.0-RC1 and now  FreeBSD 7.0-STABLE #0: Fri Feb 29
> > > > 16:57:56 UTC 2008 I didn't reinstall apache via portupgrade -f again
> > > > yet. apache 2.2.8
> > > > Standard modules.
> > > >
> > > > I'm using apache to run vb 3.6.8 forum
> > >
> > > Isn't vb forum php or do you run the perl version.
> > > Either way, try to get a core dump:
> > > http://httpd.apache.org/docs/2.2/mod/mpm_common.html#coredumpdirectory
> > >
> > > Then run gdb on it:
> > > gdb /usr/local/sbin/httpd -core /path/to/httpd.core
> > >
> > > and type bt at the prompt.
> > > Anything useful there?
> > >
> > >
> > > --
> > > Mel
> >
> > (gdb) bt
> > #0  0x000804e382f2 in hash_free () from
> > /usr/local/lib/mysql/libmysqlclient.so.15 #1  0x0008064435ae in
> > recode_delete_outer () from /usr/local/lib/librecode.so.3 #2 
> > 0x00080629b6a8 in zm_shutdown_recode () from
> > /usr/local/lib/php/20060613/recode.so #3  0x000802eccc31 in
> > module_destructor () from /usr/local/libexec/apache22/libphp5.so #4 
> > 0x000802ed364a in zend_hash_apply_deleter () from
> > /usr/local/libexec/apache22/libphp5.so #5  0x000802ed38b8 in
> > zend_hash_graceful_reverse_destroy () from
> > /usr/local/libexec/apache22/libphp5.so #6  0x000802ec8df7 in
> > zend_shutdown () from /usr/local/libexec/apache22/libphp5.so #7 
> > 0x000802e858da in php_module_shutdown () from
> > /usr/local/libexec/apache22/libphp5.so #8  0x000802e85979 in
> > php_module_shutdown_wrapper () from /usr/local/libexec/apache22/libphp5.so
> > #9  0x000802f49081 in php_apache_server_shutdown () from
> > /usr/local/libexec/apache22/libphp5.so #10 0x000800bee6fd in
> > run_cleanups () from /usr/local/lib/libapr-1.so.2 #11 0x000800beeedd in
> > apr_pool_clear () from /usr/local/lib/libapr-1.so.2 #12 0x00420a2f
> > in main ()
> 
> php shutdown bug. Reorder /usr/local/etc/php/extensions.ini till it stops. 
> You 
> can use /usr/local/bin/php -v as a way to test as it will also core dump. See 
> list archives.
> 
> -- 
> Mel
> 
> Problem with today's modular software: they start with the modules
> and never get to the software part.

BB# php -v
PHP 5.2.5 with Suhosin-Patch 0.9.6.2 (cli) (built: Feb 24 2008 21:57:57) 
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
with eAccelerator v0.9.5.2, Copyright (c) 2004-2006 eAccelerator, by 
eAccelerator
Segmentation fault (core dumped)


 
Regards,

-Abdullah Ibn Hamad Al-Marri
Arab Portal
http://www.WeArab.Net/







  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Pieter de Goeje
On Friday 29 February 2008, Mel wrote:
> On Friday 29 February 2008 19:47:20 Pieter de Goeje wrote:
> > On Friday 29 February 2008, Abdullah Ibn Hamad Al-Marri wrote:
> > > Fresh FreeBSD 7.0-RC1 and now  FreeBSD 7.0-STABLE #0: Fri Feb 29
> > > 16:57:56 UTC 2008 I didn't reinstall apache via portupgrade -f again
> > > yet. apache 2.2.8
> > > Standard modules.
> >
> > Try installing the misc/compat6x port.
>
> You don't need compat6x for a fresh 7.0-RC1 upgraded to -STABLE.

Oops, obviously i didn't read his message thoroughly enough :)

-- 
Pieter de Goeje

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Mel
On Friday 29 February 2008 19:47:20 Pieter de Goeje wrote:
> On Friday 29 February 2008, Abdullah Ibn Hamad Al-Marri wrote:

> > Fresh FreeBSD 7.0-RC1 and now  FreeBSD 7.0-STABLE #0: Fri Feb 29 16:57:56
> > UTC 2008 I didn't reinstall apache via portupgrade -f again yet.
> > apache 2.2.8
> > Standard modules.
>
> Try installing the misc/compat6x port.

You don't need compat6x for a fresh 7.0-RC1 upgraded to -STABLE.

-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Mel
On Friday 29 February 2008 19:40:44 Abdullah Ibn Hamad Al-Marri wrote:
> - Original Message 
>
> > From: Mel <[EMAIL PROTECTED]>
> > To: freebsd-questions@freebsd.org
> > Cc: Abdullah Ibn Hamad Al-Marri <[EMAIL PROTECTED]>
> > Sent: Friday, February 29, 2008 9:35:38 PM
> > Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> >
> > On Friday 29 February 2008 19:08:59 Abdullah Ibn Hamad Al-Marri wrote:
> > > - Original Message 
> > >
> > > > From: Mel
> > > > To: freebsd-questions@freebsd.org
> > > > Cc: Abdullah Ibn Hamad Al-Marri
> > > > Sent: Friday, February 29, 2008 8:52:35 PM
> > > > Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> > > >
> > > > On Friday 29 February 2008 18:32:13 Abdullah Ibn Hamad Al-Marri wrote:
> > > > > FreeBSD BB.WeArab.Net 7.0-STABLE FreeBSD 7.0-STABLE #0: Fri Feb 29
> > > > > 16:57:56 UTC 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/BB
> > > > > amd64
> > > > >
> > > > > But I always get :
> > > > >
> > > > > pid 646 (httpd), uid 80: exited on signal 11
> > > >
> > > > Hint: provide more info:
> > > > - Is this system upgraded from 6.x?
> > > > - Is apache recompiled after OS upgrade?
> > > > - WHat apache version?
> > > > - What modules?
> > > >
> > > > --
> > > > Mel
> > >
> > > Fresh FreeBSD 7.0-RC1 and now  FreeBSD 7.0-STABLE #0: Fri Feb 29
> > > 16:57:56 UTC 2008 I didn't reinstall apache via portupgrade -f again
> > > yet. apache 2.2.8
> > > Standard modules.
> > >
> > > I'm using apache to run vb 3.6.8 forum
> >
> > Isn't vb forum php or do you run the perl version.
> > Either way, try to get a core dump:
> > http://httpd.apache.org/docs/2.2/mod/mpm_common.html#coredumpdirectory
> >
> > Then run gdb on it:
> > gdb /usr/local/sbin/httpd -core /path/to/httpd.core
> >
> > and type bt at the prompt.
> > Anything useful there?
> >
> >
> > --
> > Mel
>
> (gdb) bt
> #0  0x000804e382f2 in hash_free () from
> /usr/local/lib/mysql/libmysqlclient.so.15 #1  0x0008064435ae in
> recode_delete_outer () from /usr/local/lib/librecode.so.3 #2 
> 0x00080629b6a8 in zm_shutdown_recode () from
> /usr/local/lib/php/20060613/recode.so #3  0x000802eccc31 in
> module_destructor () from /usr/local/libexec/apache22/libphp5.so #4 
> 0x000802ed364a in zend_hash_apply_deleter () from
> /usr/local/libexec/apache22/libphp5.so #5  0x000802ed38b8 in
> zend_hash_graceful_reverse_destroy () from
> /usr/local/libexec/apache22/libphp5.so #6  0x000802ec8df7 in
> zend_shutdown () from /usr/local/libexec/apache22/libphp5.so #7 
> 0x000802e858da in php_module_shutdown () from
> /usr/local/libexec/apache22/libphp5.so #8  0x000802e85979 in
> php_module_shutdown_wrapper () from /usr/local/libexec/apache22/libphp5.so
> #9  0x000802f49081 in php_apache_server_shutdown () from
> /usr/local/libexec/apache22/libphp5.so #10 0x000800bee6fd in
> run_cleanups () from /usr/local/lib/libapr-1.so.2 #11 0x000800beeedd in
> apr_pool_clear () from /usr/local/lib/libapr-1.so.2 #12 0x00420a2f
> in main ()

php shutdown bug. Reorder /usr/local/etc/php/extensions.ini till it stops. You 
can use /usr/local/bin/php -v as a way to test as it will also core dump. See 
list archives.

-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Pieter de Goeje
On Friday 29 February 2008, Abdullah Ibn Hamad Al-Marri wrote:
> - Original Message 
>
> > From: Mel <[EMAIL PROTECTED]>
> > To: freebsd-questions@freebsd.org
> > Cc: Abdullah Ibn Hamad Al-Marri <[EMAIL PROTECTED]>
> > Sent: Friday, February 29, 2008 8:52:35 PM
> > Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> >
> > On Friday 29 February 2008 18:32:13 Abdullah Ibn Hamad Al-Marri wrote:
> > > FreeBSD BB.WeArab.Net 7.0-STABLE FreeBSD 7.0-STABLE #0: Fri Feb 29
> > > 16:57:56 UTC 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/BB 
> > > amd64
> > >
> > > But I always get :
> > >
> > > pid 646 (httpd), uid 80: exited on signal 11
> >
> > Hint: provide more info:
> > - Is this system upgraded from 6.x?
> > - Is apache recompiled after OS upgrade?
> > - WHat apache version?
> > - What modules?
> >
> > --
> > Mel
>
> Fresh FreeBSD 7.0-RC1 and now  FreeBSD 7.0-STABLE #0: Fri Feb 29 16:57:56
> UTC 2008 I didn't reinstall apache via portupgrade -f again yet.
> apache 2.2.8
> Standard modules.

Try installing the misc/compat6x port.

-- 
Pieter de Goeje

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Abdullah Ibn Hamad Al-Marri
- Original Message 
> From: Mel <[EMAIL PROTECTED]>
> To: freebsd-questions@freebsd.org
> Cc: Abdullah Ibn Hamad Al-Marri <[EMAIL PROTECTED]>
> Sent: Friday, February 29, 2008 9:35:38 PM
> Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> 
> On Friday 29 February 2008 19:08:59 Abdullah Ibn Hamad Al-Marri wrote:
> > - Original Message 
> >
> > > From: Mel 
> > > To: freebsd-questions@freebsd.org
> > > Cc: Abdullah Ibn Hamad Al-Marri 
> > > Sent: Friday, February 29, 2008 8:52:35 PM
> > > Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> > >
> > > On Friday 29 February 2008 18:32:13 Abdullah Ibn Hamad Al-Marri wrote:
> > > > FreeBSD BB.WeArab.Net 7.0-STABLE FreeBSD 7.0-STABLE #0: Fri Feb 29
> > > > 16:57:56 UTC 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/BB 
> > > > amd64
> > > >
> > > > But I always get :
> > > >
> > > > pid 646 (httpd), uid 80: exited on signal 11
> > >
> > > Hint: provide more info:
> > > - Is this system upgraded from 6.x?
> > > - Is apache recompiled after OS upgrade?
> > > - WHat apache version?
> > > - What modules?
> > >
> > > --
> > > Mel
> >
> > Fresh FreeBSD 7.0-RC1 and now  FreeBSD 7.0-STABLE #0: Fri Feb 29 16:57:56
> > UTC 2008 I didn't reinstall apache via portupgrade -f again yet.
> > apache 2.2.8
> > Standard modules.
> >
> > I'm using apache to run vb 3.6.8 forum
> 
> Isn't vb forum php or do you run the perl version.
> Either way, try to get a core dump:
> http://httpd.apache.org/docs/2.2/mod/mpm_common.html#coredumpdirectory
> 
> Then run gdb on it:
> gdb /usr/local/sbin/httpd -core /path/to/httpd.core
> 
> and type bt at the prompt.
> Anything useful there?
> 
> 
> -- 
> Mel
> 

(gdb) bt
#0  0x000804e382f2 in hash_free () from 
/usr/local/lib/mysql/libmysqlclient.so.15
#1  0x0008064435ae in recode_delete_outer () from 
/usr/local/lib/librecode.so.3
#2  0x00080629b6a8 in zm_shutdown_recode () from 
/usr/local/lib/php/20060613/recode.so
#3  0x000802eccc31 in module_destructor () from 
/usr/local/libexec/apache22/libphp5.so
#4  0x000802ed364a in zend_hash_apply_deleter () from 
/usr/local/libexec/apache22/libphp5.so
#5  0x000802ed38b8 in zend_hash_graceful_reverse_destroy () from 
/usr/local/libexec/apache22/libphp5.so
#6  0x000802ec8df7 in zend_shutdown () from 
/usr/local/libexec/apache22/libphp5.so
#7  0x000802e858da in php_module_shutdown () from 
/usr/local/libexec/apache22/libphp5.so
#8  0x000802e85979 in php_module_shutdown_wrapper () from 
/usr/local/libexec/apache22/libphp5.so
#9  0x000802f49081 in php_apache_server_shutdown () from 
/usr/local/libexec/apache22/libphp5.so
#10 0x000800bee6fd in run_cleanups () from /usr/local/lib/libapr-1.so.2
#11 0x000800beeedd in apr_pool_clear () from /usr/local/lib/libapr-1.so.2
#12 0x00420a2f in main ()



 
Regards,

-Abdullah Ibn Hamad Al-Marri
Arab Portal
http://www.WeArab.Net/





  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Mel
On Friday 29 February 2008 19:08:59 Abdullah Ibn Hamad Al-Marri wrote:
> - Original Message 
>
> > From: Mel <[EMAIL PROTECTED]>
> > To: freebsd-questions@freebsd.org
> > Cc: Abdullah Ibn Hamad Al-Marri <[EMAIL PROTECTED]>
> > Sent: Friday, February 29, 2008 8:52:35 PM
> > Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> >
> > On Friday 29 February 2008 18:32:13 Abdullah Ibn Hamad Al-Marri wrote:
> > > FreeBSD BB.WeArab.Net 7.0-STABLE FreeBSD 7.0-STABLE #0: Fri Feb 29
> > > 16:57:56 UTC 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/BB 
> > > amd64
> > >
> > > But I always get :
> > >
> > > pid 646 (httpd), uid 80: exited on signal 11
> >
> > Hint: provide more info:
> > - Is this system upgraded from 6.x?
> > - Is apache recompiled after OS upgrade?
> > - WHat apache version?
> > - What modules?
> >
> > --
> > Mel
>
> Fresh FreeBSD 7.0-RC1 and now  FreeBSD 7.0-STABLE #0: Fri Feb 29 16:57:56
> UTC 2008 I didn't reinstall apache via portupgrade -f again yet.
> apache 2.2.8
> Standard modules.
>
> I'm using apache to run vb 3.6.8 forum

Isn't vb forum php or do you run the perl version.
Either way, try to get a core dump:
http://httpd.apache.org/docs/2.2/mod/mpm_common.html#coredumpdirectory

Then run gdb on it:
gdb /usr/local/sbin/httpd -core /path/to/httpd.core

and type bt at the prompt.
Anything useful there?


-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Abdullah Ibn Hamad Al-Marri
- Original Message 
> From: Mel <[EMAIL PROTECTED]>
> To: freebsd-questions@freebsd.org
> Cc: Abdullah Ibn Hamad Al-Marri <[EMAIL PROTECTED]>
> Sent: Friday, February 29, 2008 8:52:35 PM
> Subject: Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11
> 
> On Friday 29 February 2008 18:32:13 Abdullah Ibn Hamad Al-Marri wrote:
> 
> > FreeBSD BB.WeArab.Net 7.0-STABLE FreeBSD 7.0-STABLE #0: Fri Feb 29 16:57:56
> > UTC 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/BB  amd64
> >
> > But I always get :
> >
> > pid 646 (httpd), uid 80: exited on signal 11
> 
> Hint: provide more info:
> - Is this system upgraded from 6.x?
> - Is apache recompiled after OS upgrade?
> - WHat apache version?
> - What modules?
> 
> -- 
> Mel

Fresh FreeBSD 7.0-RC1 and now  FreeBSD 7.0-STABLE #0: Fri Feb 29 16:57:56 UTC 
2008
I didn't reinstall apache via portupgrade -f again yet.
apache 2.2.8
Standard modules.

I'm using apache to run vb 3.6.8 forum 


Regards,

-Abdullah Ibn Hamad Al-Marri
Arab Portal
http://www.WeArab.Net/




  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD 7.0 AMD64 and apache 2.2.8 exited on signal 11

2008-02-29 Thread Mel
On Friday 29 February 2008 18:32:13 Abdullah Ibn Hamad Al-Marri wrote:

> FreeBSD BB.WeArab.Net 7.0-STABLE FreeBSD 7.0-STABLE #0: Fri Feb 29 16:57:56
> UTC 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/BB  amd64
>
> But I always get :
>
> pid 646 (httpd), uid 80: exited on signal 11

Hint: provide more info:
- Is this system upgraded from 6.x?
- Is apache recompiled after OS upgrade?
- WHat apache version?
- What modules?

-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"