From:             mypass2002 at mail dot ru
Operating system: Windows XP 5.1 build 2600
PHP version:      4.3.5RC1
PHP Bug Type:     HTTP related
Bug description:  fopen 

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 bug report at http://bugs.php.net/?id=27024&edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=27024&r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=27024&r=trysnapshot5
Fixed in CVS:               http://bugs.php.net/fix.php?id=27024&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=27024&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=27024&r=needtrace
Need Reproduce Script:      http://bugs.php.net/fix.php?id=27024&r=needscript
Try newer version:          http://bugs.php.net/fix.php?id=27024&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=27024&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=27024&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=27024&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=27024&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=27024&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=27024&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=27024&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=27024&r=isapi
Install GNU Sed:            http://bugs.php.net/fix.php?id=27024&r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=27024&r=float

Reply via email to