Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:56294 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 74613 invoked from network); 11 Nov 2011 23:54:30 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 11 Nov 2011 23:54:30 -0000 Authentication-Results: pb1.pair.com header.from=hannes.magnusson@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=hannes.magnusson@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.213.170 as permitted sender) X-PHP-List-Original-Sender: hannes.magnusson@gmail.com X-Host-Fingerprint: 209.85.213.170 mail-yx0-f170.google.com Received: from [209.85.213.170] ([209.85.213.170:45965] helo=mail-yx0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B8/DB-09898-6B5BDBE4 for ; Fri, 11 Nov 2011 18:54:30 -0500 Received: by yenm5 with SMTP id m5so4239739yen.29 for ; Fri, 11 Nov 2011 15:54:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=9tAZNQ5wAFzkiTjlG/eN0dfs/5SzfG7Qx1upV63SI64=; b=Nod4UtEu+x4BSNu7aoZmJ3hwOyveelBkpy4ZEiM5Mqe0tvhaJhCmw4li4unCsCQd9I ypahRSByKmci9VIcr6iPmoE12yV59aoN+Fr8PVQup9TPSyvyx3DkArpKjF2OYe8kesAO Bk2TvHJMhxuA4+YcWNVpthGrvWtl6+01+pehI= MIME-Version: 1.0 Received: by 10.236.114.227 with SMTP id c63mr187773yhh.47.1321055667968; Fri, 11 Nov 2011 15:54:27 -0800 (PST) Received: by 10.147.181.8 with HTTP; Fri, 11 Nov 2011 15:54:27 -0800 (PST) In-Reply-To: <1321047664-sup-8238@ezyang> References: <1320740449-sup-5688@ezyang> <4EB8EAF1.3040104@lerdorf.com> <1320981061-sup-2803@ezyang> <4EBD79A5.2020604@lerdorf.com> <1321040435-sup-2225@ezyang> <4EBD8967.8040606@lerdorf.com> <1321047664-sup-8238@ezyang> Date: Sat, 12 Nov 2011 00:54:27 +0100 Message-ID: To: "Edward Z. Yang" Cc: Rasmus Lerdorf , internals Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] Load extensions for .user.ini files From: hannes.magnusson@gmail.com (Hannes Magnusson) On Fri, Nov 11, 2011 at 22:43, Edward Z. Yang wrote: > Excerpts from Rasmus Lerdorf's message of Fri Nov 11 15:45:27 -0500 2011: >> Well, it is simple enough that we don't really need a patch. However, >> generally if you want to submit a patch it needs to be against a current >> svn branch and not an old release. You want to minimize the work people >> will need to do to look at your suggested change. > > Gotcha. > >> The other issue with your patch is that you are enabling this for the >> fpm sapi. I thought we agreed that this should only be in the sapis that >> supported dl() and those are cgi, cli and embed. And .user.ini doesn't >> apply to embed, so it would just be cli and cgi because these are the >> non-persistent cases where there is no danger of screwing up the next >> request with a bad extension in a .user.ini file. > > Hmm, it looks like cli doesn't have .user.ini support at all. =C2=A0Does = this > mean we should implement .user.ini for these SAPIs? I'd be in favor. Hmh. Whats the difference between .user.ini and -dextension=3D? I hate it when bucketloads of .ini files are picked up when I run PHP via c= li -Hannes