Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:29225 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 26952 invoked by uid 1010); 6 May 2007 22:27:43 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 26937 invoked from network); 6 May 2007 22:27:43 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 6 May 2007 22:27:43 -0000 X-Host-Fingerprint: 75.57.38.117 adsl-75-57-38-117.dsl.irvnca.sbcglobal.net Received: from [75.57.38.117] ([75.57.38.117:9604] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id AE/EA-06274-C565E364 for ; Sun, 06 May 2007 18:27:41 -0400 Message-ID: To: internals@lists.php.net Date: Sun, 06 May 2007 15:27:43 -0700 User-Agent: Thunderbird 1.5.0.12pre (Windows/20070504) MIME-Version: 1.0 References: <20070504201847.547329627@smtp.haun-online.de> <05.C4.06274.89F1E364@pb1.pair.com> <1178477928.4640.62.camel@johannes.nop> In-Reply-To: <1178477928.4640.62.camel@johannes.nop> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Posted-By: 75.57.38.117 Subject: Re: [PHP-DEV] Re: Bug? Raw POST data in PHP 5.2.2, take two From: unknown@simplemachines.org ("Unknown W. Brackets") Wow. That's a curt reply. At the risk of being curt too... at least I learned my lessons in manners? Anyway, I did take a glance at the documentation but couldn't find anything mentioning whether it really was a global. Sorry for my mistaken assumption. Seems like it should be properly documented next to $php_errormsg here: http://www.php.net/manual/en/reserved.variables.php -[Unknown] -------- Original Message -------- > Hello "Unknown", > > you are wrong, the name is right please learn your lessons before > writing to internals. > > To the original problem: Ilia committed a fix a few hours ago which > should fix the problem. Feel free to test a current snapshot. > > johannes > > On Sun, 2007-05-06 at 11:34 -0700, Unknown W. Brackets wrote: >> It sounds like you have register_globals off, which is a good thing imho. >> >> You are trying $HTTP_RAW_POST_DATA but my recollection tells me it is >> $_SERVER['HTTP_RAW_POST_DATA']. Does the latter work? >> >> Anyway, reading from php://input is more correct and doesn't depend on >> PHP settings as much, as far as I know. >> >> -[Unknown]