Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:930 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 1098 invoked from network); 16 Apr 2003 03:03:46 -0000 Received: from unknown (HELO cs181147.pp.htv.fi) (213.243.181.147) by pb1.pair.com with SMTP; 16 Apr 2003 03:03:46 -0000 Received: from localhost (jani@localhost) by cs181147.pp.htv.fi (8.11.6/8.11.6) with ESMTP id h3G33A629582; Wed, 16 Apr 2003 06:03:14 +0300 X-Authentication-Warning: cs181147.pp.htv.fi: jani owned process doing -bs Date: Wed, 16 Apr 2003 06:03:09 +0300 (EEST) Sender: jani@cs181147.pp.htv.fi Reply-To: Jani Taskinen To: marcus.boerger@post.rwth-aachen.de cc: internals@lists.php.net Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: "forced" ini settings in CLI don't work anymore.. From: sniper@iki.fi (Jani Taskinen) Apparently the changes you made to cleanup the ini settings forcing in CLI do not work as expected: Results with CLI build before the changes were merged: string(1) "1" string(1) "0" string(1) "1" string(1) "1" string(1) "0" Results with latest CVS checkout (PHP_4_3 branch): string(1) "1" string(1) "0" string(1) "1" string(0) "" string(2) "30" When '-n' is used (to not use any php.ini) both builds work fine. So, are these not supposed to be forced defaults anymore for CLI? --Jani