Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:9898 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 9253 invoked by uid 1010); 17 May 2004 16:39:46 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 9185 invoked by uid 1007); 17 May 2004 16:39:46 -0000 Message-ID: <20040517163945.9183.qmail@pb1.pair.com> To: internals@lists.php.net References: <027801c43c14$ad5c8230$0d00000a@intra.emini.dk> Date: Mon, 17 May 2004 18:39:29 +0200 Lines: 21 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2727.1300 X-Posted-By: 80.35.119.102 Subject: Re: shared extensions don't load there default ini settings From: su1d@phpclub.net ("su1d") > This problem noticed in HEAD with pgsql extension for example. When loaded > via php.ini it does not function since it thinks that the maximum number of > connections is exhausted. None of the other php.ini settings seem to be > registered. Actually, it neither gets loaded with dl() call. That means extension_loaded('pgsql') returns true, but ini_get_all('pgsql') returns an empty array in both cases (via php.ini or dl() call). > Could this be related to the patch preventing loading extension twice? Have there been any? That's a bit strange, because if you put display_startup_errors=On in php.ini and try to execute at least "php -v", you get a pretty bunch of "Constant has already been defined" warnings, displaying constants of all(?) extensions.