Bug 155916

Summary: PHP Bug 32553 : PHP_STREAM_COPY_ALL set to 2000000
Product: [Fedora] Fedora Reporter: Remi COLLET <admin>
Component: phpAssignee: Joe Orton <jorton>
Status: CLOSED RAWHIDE QA Contact: David Lawrence <dkl>
Severity: medium Docs Contact:
Priority: medium    
Version: rawhide   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: 5.0.4-9 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2005-05-10 13:39:17 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
Patch proposal. none

Description Remi COLLET 2005-04-25 18:09:12 UTC
Description of problem:
See http://bugs.php.net/bug.php?id=32553

This bug is really a problem as PHP cannot read file larger than 2000000 bytes.

Version-Release number of selected component (if applicable):
php-5.0.4-6 from rawhide (since php-5.0.3)

How reproducible:
Always

Steps to Reproduce:
1. using fpasthru on a file larger than 2000000 bytes
2.
3.
  
Actual results:
A file of 2000000 bytes extacly

Expected results:
The same file as the source one.

Additional info:
We can wait for php-5.0.5 (as this bug has been fixed in CVS) or use a very
small/simple patch (see attachment)

Comment 1 Remi COLLET 2005-04-25 18:09:12 UTC
Created attachment 113644 [details]
Patch proposal.

Comment 2 Joe Orton 2005-05-06 10:18:19 UTC
Keeping the old #define commented out with // is not necessary; I just changed
it in-place.  Can you test 5.0.4-9 in Raw Hide?

Comment 3 Remi COLLET 2005-05-06 17:04:09 UTC
This "very" simple tests are ok...

php -r 'fpassthru(fopen("/usr/bin/mplayer","rb"));'"));'>/tmp/mp1
php -r 'readfile("/usr/bin/mplayer");'>/tmp/mp2

File /usr/bin/mplayer, /tmp/mp1 and /tmp/mp2 are the identical.

Thanks