ID: 27024
User updated by: mypass2002 at mail dot ru
Reported By: mypass2002 at mail dot ru
Status: Open
Bug Type: HTTP related
Operating System: Windows XP 5.1 build 2600
PHP Version: 4.3.5RC1
New Comment:
also tryed on php 4.3.4 NOT 4.3.2
Previous Comments:
------------------------------------------------------------------------
[2004-01-23 14:37:36] mypass2002 at mail dot ru
Description:
------------
Apache/1.3.29 (Win32) PHP/4.3.5RC2-dev running...
also tryed on 4.3.2
fopen("www.foo.com?data=safasfafa...64kb...dgdfg", "rb")
fails, because it's too much data, works well with less data
PHP.INI changes:
addes the lines for php_debugger
increased memory+time+input
changed docroot
Reproduce code:
---------------
$url="action=UPDATEROW&&updaterow=".urlencode(serialize($row_send));
m_get_url($url);//fopen ($baseurl.$url)
functio m_get_url($url)
{
global $otherurl;
$url2=$otherurl."?".$msg;
//dyes when opening with LOTS of data ... like more than 64kb
$a=fopen($url2,"rb") or die("...")
....
fclose($a);
}
Expected result:
----------------
to work with "infinite" paramerter data send
Actual result:
--------------
Warning:
fopen(http://localhost/download.php?action=UPDATEROW&&updaterow=a%3A14%....
in c:\www\upload.php on line 44
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=27024&edit=1