From owner-freebsd-questions@FreeBSD.ORG Wed Sep 26 06:10:45 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 385FD16A417 for ; Wed, 26 Sep 2007 06:10:45 +0000 (UTC) (envelope-from dmacpher@vfs.com) Received: from mail.multimedia.edu (mail.multimedia.edu [208.181.60.36]) by mx1.freebsd.org (Postfix) with ESMTP id 2B09813C469 for ; Wed, 26 Sep 2007 06:10:45 +0000 (UTC) (envelope-from dmacpher@vfs.com) Received: from mail.vfs.com ([208.181.60.36]) by mail.multimedia.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.68 (FreeBSD)) (envelope-from ) id 1IaQ6d-0001o2-Co; Tue, 25 Sep 2007 23:10:43 -0700 Date: Tue, 25 Sep 2007 23:10:43 -0700 (PDT) From: Derrick To: Mel In-Reply-To: <200709260130.25646.fbsd.questions@rachie.is-a-geek.net> Message-ID: <20070925230931.G67085@mail.vfs.com> References: <20070925064350.B67085@mail.vfs.com> <46F93C20.70805@mikestammer.com> <20070925094839.A67085@mail.vfs.com> <200709260130.25646.fbsd.questions@rachie.is-a-geek.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Problem with PHP cli core dumping (SOLVED) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 06:10:45 -0000 On Wed, 26 Sep 2007, Mel wrote: > On Tuesday 25 September 2007 18:50:39 Derrick wrote: >> On Tue, 25 Sep 2007, Eric wrote: >>> Derrick wrote: >>>> so it's sessions.so >>>> I've tried rebuilding it, but still has the same issue. >>> >>> PHP 5.2.4 with Suhosin-Patch 0.9.6.2 (cli) (built: Sep 15 2007 12:57:59) >>> 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 >>> with Suhosin v0.9.20, Copyright (c) 2002-2006, by Hardened-PHP Project >>> >>> heres how my file looks >>> >>> extension=zip.so >>> extension=fileinfo.so >>> extension=suhosin.so >>> extension=pdf.so >>> extension=bz2.so >>> extension=ctype.so >>> extension=pcre.so >>> extension=simplexml.so >>> extension=spl.so >>> extension=dom.so >>> extension=ftp.so >>> extension=gd.so >>> extension=gettext.so >>> extension=iconv.so >>> extension=imap.so >>> extension=ldap.so >>> extension=mbstring.so >>> extension=mcrypt.so >>> extension=mhash.so >>> extension=mysql.so >>> extension=openssl.so >>> extension=session.so >>> extension=pspell.so >>> extension=sockets.so >>> extension=xml.so >>> extension=zlib.so >>> extension=pdo.so >>> extension=sqlite.so >> >> mine: >> extension=json.so >> extension=filter.so >> extension=imagick.so >> extension=hash.so >> extension=tokenizer.so >> extension=simplexml.so >> extension=posix.so >> extension=mbstring.so >> extension=ctype.so >> extension=xmlwriter.so >> extension=openssl.so >> extension=zlib.so >> extension=iconv.so >> extension=mhash.so >> extension=pdo.so >> extension=imap.so >> extension=ftp.so >> extension=pdo_sqlite.so >> extension=gettext.so >> extension=spl.so >> extension=dom.so >> extension=xmlreader.so > HERE >> extension=mysql.so >> extension=sqlite.so >> extension=gd.so >> extension=pcre.so >> extension=xml.so >> extension=session.so > > Move session to indicated spot, then try php -v again. If it still coredumps, > move above spl. If it still coredumps, move it up one spot and rerun, till it > stops coredumping. > > The bug is in the general extension destructor and changing the order till it > works is the only remedy. Thanks to all those that input some output. I moved extension=session.so to the start of the file after trying the first couple suggestions, and all is working now.. Thank you. d