Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:43265 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 76862 invoked from network); 6 Mar 2009 01:13:10 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 6 Mar 2009 01:13:10 -0000 Authentication-Results: pb1.pair.com smtp.mail=greg@chiaraquartet.net; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=greg@chiaraquartet.net; sender-id=unknown Received-SPF: error (pb1.pair.com: domain chiaraquartet.net from 209.85.218.180 cause and error) X-PHP-List-Original-Sender: greg@chiaraquartet.net X-Host-Fingerprint: 209.85.218.180 mail-bw0-f180.google.com Received: from [209.85.218.180] ([209.85.218.180:48775] helo=mail-bw0-f180.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 72/B6-42068-4A870B94 for ; Thu, 05 Mar 2009 20:13:09 -0500 Received: by bwz28 with SMTP id 28so203134bwz.23 for ; Thu, 05 Mar 2009 17:13:05 -0800 (PST) Received: by 10.103.223.2 with SMTP id a2mr824667mur.54.1236301985357; Thu, 05 Mar 2009 17:13:05 -0800 (PST) Received: from pcp041178pcs.unl.edu (pcp041178pcs.unl.edu [129.93.124.117]) by mx.google.com with ESMTPS id n7sm874723mue.36.2009.03.05.17.13.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 05 Mar 2009 17:13:04 -0800 (PST) Message-ID: <49B0789D.3010202@chiaraquartet.net> Date: Thu, 05 Mar 2009 19:13:01 -0600 User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070807) MIME-Version: 1.0 To: "David M. Patterson" CC: internals@lists.php.net References: <311DE285A2C24C23ABA0C0672A4F177E@dmp.home> In-Reply-To: <311DE285A2C24C23ABA0C0672A4F177E@dmp.home> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: Bogus load error for my extension From: greg@chiaraquartet.net (Greg Beaver) David M. Patterson wrote: > I'm having a curious problem with my extension. > I just moved to PHP 5.3-200903031530, made various changes as appropriate > and successfully built it. > Running php -i generates the expected output, including all of the stuff > from my extension. > The odd thing is that PHP always reports: > PHP Warning: PHP Startup: Unable to load dynamic library > './Debug_TS\php_dplhlib' - The specified module could not be found. > > This seems particularly odd to me since it's built statically (and runs). > > Ideas? yes - remove extension=php_dplhlib.dll from php.ini. You probably have an old one you've forgotten about that is getting loaded. You can verify by doing php -i |more and seeing which it is loading, and then edit it in your favorite text editor. :) Greg