Req #44522 [Com]: http upload max_limits and file above 2GB

2013-07-01 Thread lang at b1-systems dot de
Edit report at https://bugs.php.net/bug.php?id=44522&edit=1

 ID: 44522
 Comment by: lang at b1-systems dot de
 Reported by:mail2lv at yahoo dot com
 Summary:http upload max_limits and file above 2GB
 Status: Open
 Type:   Feature/Change Request
 Package:*Web Server problem
 Operating System:   All
 PHP Version:5.2.5
 Block user comment: N
 Private report: N

 New Comment:

Newest Mailing List feedback applied.
Pull Request attached.
Please pull or comment in github or here.


Previous Comments:

[2013-04-19 20:21:34] azet at azet dot org

Could you please add this patch? It MIGHT make seem PHP less an embarrassing 
language than it is already.

Sincerely,
The Internet


[2013-04-19 09:37:22] scroogie at scroogie dot de

In my opinion this is quite an issue. We faced it at an intranet side yesterday.
Due to the cast to int at 
https://github.com/php/php-src/blob/master/main/rfc1867.c#L901 it also has 
weird side effects, like setting 4G will equal 0 and disable the size check 
(see https://github.com/php/php-src/blob/master/main/rfc1867.c#L1031), 5G equal 
1G etc.


[2012-03-26 04:02:16] jason at infininull dot com

I have re-rolled the patch against HEAD 
(b4d078f18c950a4bf7e136443586e348bd54f40c) 
and attached it to this request.


[2012-03-24 18:42:45] jason at infininull dot com

I was recently bitten by this bug too.  The patch needed a little updating for 
11.04 and I also found a couple of other issues.  1) Uploads only work if 
upload_max_filesize = 0 and 2) The $_FILES[*]['size'] value is an overflowed 
integer.  The attached patch fixes these issues.  I am currently in the process 
of 
re-rolling the patch against HEAD on master to get this in to upstream.


[2012-02-23 19:14:51] s...@php.net

It's probably too late for 5.4, but would be OK for trunk. The patch however 
needs to be cleaned up (no IGNORE vars, etc.) and changing signature for 
zend_atoi may not be safe if any code out there presumes it returns int 
(integer 
overflow). Also, no reason to use signed long there where we used unsigned long.




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at

https://bugs.php.net/bug.php?id=44522


-- 
Edit this bug report at https://bugs.php.net/bug.php?id=44522&edit=1


Req #44522 [Com]: http upload max_limits and file above 2GB

2013-04-19 Thread azet at azet dot org
Edit report at https://bugs.php.net/bug.php?id=44522&edit=1

 ID: 44522
 Comment by: azet at azet dot org
 Reported by:mail2lv at yahoo dot com
 Summary:http upload max_limits and file above 2GB
 Status: Open
 Type:   Feature/Change Request
 Package:*Web Server problem
 Operating System:   All
 PHP Version:5.2.5
 Block user comment: N
 Private report: N

 New Comment:

Could you please add this patch? It MIGHT make seem PHP less an embarrassing 
language than it is already.

Sincerely,
The Internet


Previous Comments:

[2013-04-19 09:37:22] scroogie at scroogie dot de

In my opinion this is quite an issue. We faced it at an intranet side yesterday.
Due to the cast to int at 
https://github.com/php/php-src/blob/master/main/rfc1867.c#L901 it also has 
weird side effects, like setting 4G will equal 0 and disable the size check 
(see https://github.com/php/php-src/blob/master/main/rfc1867.c#L1031), 5G equal 
1G etc.


[2012-03-26 04:02:16] jason at infininull dot com

I have re-rolled the patch against HEAD 
(b4d078f18c950a4bf7e136443586e348bd54f40c) 
and attached it to this request.


[2012-03-24 18:42:45] jason at infininull dot com

I was recently bitten by this bug too.  The patch needed a little updating for 
11.04 and I also found a couple of other issues.  1) Uploads only work if 
upload_max_filesize = 0 and 2) The $_FILES[*]['size'] value is an overflowed 
integer.  The attached patch fixes these issues.  I am currently in the process 
of 
re-rolling the patch against HEAD on master to get this in to upstream.


[2012-02-23 19:14:51] s...@php.net

It's probably too late for 5.4, but would be OK for trunk. The patch however 
needs to be cleaned up (no IGNORE vars, etc.) and changing signature for 
zend_atoi may not be safe if any code out there presumes it returns int 
(integer 
overflow). Also, no reason to use signed long there where we used unsigned long.


[2012-02-23 10:14:23] jcabillot at gmail dot com

Do you plan to apply this patch ?
5.3 doesn't support file upload if the file is bigger than 2Gb.
It seem that 5.4 have the same limit.




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at

https://bugs.php.net/bug.php?id=44522


-- 
Edit this bug report at https://bugs.php.net/bug.php?id=44522&edit=1


Req #44522 [Com]: http upload max_limits and file above 2GB

2013-04-19 Thread scroogie at scroogie dot de
Edit report at https://bugs.php.net/bug.php?id=44522&edit=1

 ID: 44522
 Comment by: scroogie at scroogie dot de
 Reported by:mail2lv at yahoo dot com
 Summary:http upload max_limits and file above 2GB
 Status: Open
 Type:   Feature/Change Request
 Package:*Web Server problem
 Operating System:   All
 PHP Version:5.2.5
 Block user comment: N
 Private report: N

 New Comment:

In my opinion this is quite an issue. We faced it at an intranet side yesterday.
Due to the cast to int at 
https://github.com/php/php-src/blob/master/main/rfc1867.c#L901 it also has 
weird side effects, like setting 4G will equal 0 and disable the size check 
(see https://github.com/php/php-src/blob/master/main/rfc1867.c#L1031), 5G equal 
1G etc.


Previous Comments:

[2012-03-26 04:02:16] jason at infininull dot com

I have re-rolled the patch against HEAD 
(b4d078f18c950a4bf7e136443586e348bd54f40c) 
and attached it to this request.


[2012-03-24 18:42:45] jason at infininull dot com

I was recently bitten by this bug too.  The patch needed a little updating for 
11.04 and I also found a couple of other issues.  1) Uploads only work if 
upload_max_filesize = 0 and 2) The $_FILES[*]['size'] value is an overflowed 
integer.  The attached patch fixes these issues.  I am currently in the process 
of 
re-rolling the patch against HEAD on master to get this in to upstream.


[2012-02-23 19:14:51] s...@php.net

It's probably too late for 5.4, but would be OK for trunk. The patch however 
needs to be cleaned up (no IGNORE vars, etc.) and changing signature for 
zend_atoi may not be safe if any code out there presumes it returns int 
(integer 
overflow). Also, no reason to use signed long there where we used unsigned long.


[2012-02-23 10:14:23] jcabillot at gmail dot com

Do you plan to apply this patch ?
5.3 doesn't support file upload if the file is bigger than 2Gb.
It seem that 5.4 have the same limit.


[2012-02-22 09:30:11] noxxim at mail dot ru

Can someone add a patch for debian squeeze?




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at

https://bugs.php.net/bug.php?id=44522


-- 
Edit this bug report at https://bugs.php.net/bug.php?id=44522&edit=1


Req #44522 [Com]: http upload max_limits and file above 2GB

2012-03-25 Thread jason at infininull dot com
Edit report at https://bugs.php.net/bug.php?id=44522&edit=1

 ID: 44522
 Comment by: jason at infininull dot com
 Reported by:mail2lv at yahoo dot com
 Summary:http upload max_limits and file above 2GB
 Status: Open
 Type:   Feature/Change Request
 Package:*Web Server problem
 Operating System:   All
 PHP Version:5.2.5
 Block user comment: N
 Private report: N

 New Comment:

I have re-rolled the patch against HEAD 
(b4d078f18c950a4bf7e136443586e348bd54f40c) 
and attached it to this request.


Previous Comments:

[2012-03-24 18:42:45] jason at infininull dot com

I was recently bitten by this bug too.  The patch needed a little updating for 
11.04 and I also found a couple of other issues.  1) Uploads only work if 
upload_max_filesize = 0 and 2) The $_FILES[*]['size'] value is an overflowed 
integer.  The attached patch fixes these issues.  I am currently in the process 
of 
re-rolling the patch against HEAD on master to get this in to upstream.


[2012-02-23 19:14:51] s...@php.net

It's probably too late for 5.4, but would be OK for trunk. The patch however 
needs to be cleaned up (no IGNORE vars, etc.) and changing signature for 
zend_atoi may not be safe if any code out there presumes it returns int 
(integer 
overflow). Also, no reason to use signed long there where we used unsigned long.


[2012-02-23 10:14:23] jcabillot at gmail dot com

Do you plan to apply this patch ?
5.3 doesn't support file upload if the file is bigger than 2Gb.
It seem that 5.4 have the same limit.


[2012-02-22 09:30:11] noxxim at mail dot ru

Can someone add a patch for debian squeeze?


[2010-02-15 19:52:50] zaulychny at yahoo dot com

The same problem was faced by me. It seems that PHP stops if size of file is 
above 2Gb (i.e. signed int). 
Will someone fix this issue?




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at

https://bugs.php.net/bug.php?id=44522


-- 
Edit this bug report at https://bugs.php.net/bug.php?id=44522&edit=1


Req #44522 [Com]: http upload max_limits and file above 2GB

2012-03-24 Thread jason at infininull dot com
Edit report at https://bugs.php.net/bug.php?id=44522&edit=1

 ID: 44522
 Comment by: jason at infininull dot com
 Reported by:mail2lv at yahoo dot com
 Summary:http upload max_limits and file above 2GB
 Status: Open
 Type:   Feature/Change Request
 Package:*Web Server problem
 Operating System:   All
 PHP Version:5.2.5
 Block user comment: N
 Private report: N

 New Comment:

I was recently bitten by this bug too.  The patch needed a little updating for 
11.04 and I also found a couple of other issues.  1) Uploads only work if 
upload_max_filesize = 0 and 2) The $_FILES[*]['size'] value is an overflowed 
integer.  The attached patch fixes these issues.  I am currently in the process 
of 
re-rolling the patch against HEAD on master to get this in to upstream.


Previous Comments:

[2012-02-23 19:14:51] s...@php.net

It's probably too late for 5.4, but would be OK for trunk. The patch however 
needs to be cleaned up (no IGNORE vars, etc.) and changing signature for 
zend_atoi may not be safe if any code out there presumes it returns int 
(integer 
overflow). Also, no reason to use signed long there where we used unsigned long.


[2012-02-23 10:14:23] jcabillot at gmail dot com

Do you plan to apply this patch ?
5.3 doesn't support file upload if the file is bigger than 2Gb.
It seem that 5.4 have the same limit.


[2012-02-22 09:30:11] noxxim at mail dot ru

Can someone add a patch for debian squeeze?


[2010-02-15 19:52:50] zaulychny at yahoo dot com

The same problem was faced by me. It seems that PHP stops if size of file is 
above 2Gb (i.e. signed int). 
Will someone fix this issue?


[2009-12-09 20:40:19] tracey at archive dot org

we are using 64-bit ubuntu (jaunty and karmic) at archive.org, and php
v5.2.6 and v5.2.10 (respectively).  we are using fastcgi php-cgi
with nginx.

for us, with these 2 patches, we can get up to 8G posting to work
(haven't tried over 8GB 8-).

basically, they are about tracking the config setting/reading vars 
that are 32bits wide when they'd need 64bits, and similar for upload 
limit checking and reading.  

they prolly will not work with 32bit ubuntu immediately without some 
minor tweaking (since i started using long (8B on 64bit; 4B on 32bit) 
datatype and stuck with it instead of "long long" (8B on both)).  i'd 
be happy to try to extend the patches  to work on both 32bit and 64bit 
if there is interest.  (basically it took me awhile to figure these 
out and we are only running on 64bit so  i'd want an 
incentive/encouragement to do the extra work 8-)

http://www.archive.org/~tracey/downloads/patches/jaunty-64bit-post-
large-files.patch

http://www.archive.org/~tracey/downloads/patches/karmic-64bit-post-
large-files.patch

http://www.archive.org/~tracey/downloads/patches/jaunty-64bit-post-
large-files.patch-README.txt




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at

https://bugs.php.net/bug.php?id=44522


-- 
Edit this bug report at https://bugs.php.net/bug.php?id=44522&edit=1


Req #44522 [Com]: http upload max_limits and file above 2GB

2012-02-23 Thread jcabillot at gmail dot com
Edit report at https://bugs.php.net/bug.php?id=44522&edit=1

 ID: 44522
 Comment by: jcabillot at gmail dot com
 Reported by:mail2lv at yahoo dot com
 Summary:http upload max_limits and file above 2GB
 Status: Open
 Type:   Feature/Change Request
 Package:Feature/Change Request
 Operating System:   All
 PHP Version:5.2.5
 Block user comment: N
 Private report: N

 New Comment:

Do you plan to apply this patch ?
5.3 doesn't support file upload if the file is bigger than 2Gb.
It seem that 5.4 have the same limit.


Previous Comments:

[2012-02-22 09:30:11] noxxim at mail dot ru

Can someone add a patch for debian squeeze?


[2010-02-15 19:52:50] zaulychny at yahoo dot com

The same problem was faced by me. It seems that PHP stops if size of file is 
above 2Gb (i.e. signed int). 
Will someone fix this issue?


[2009-12-09 20:40:19] tracey at archive dot org

we are using 64-bit ubuntu (jaunty and karmic) at archive.org, and php
v5.2.6 and v5.2.10 (respectively).  we are using fastcgi php-cgi
with nginx.

for us, with these 2 patches, we can get up to 8G posting to work
(haven't tried over 8GB 8-).

basically, they are about tracking the config setting/reading vars 
that are 32bits wide when they'd need 64bits, and similar for upload 
limit checking and reading.  

they prolly will not work with 32bit ubuntu immediately without some 
minor tweaking (since i started using long (8B on 64bit; 4B on 32bit) 
datatype and stuck with it instead of "long long" (8B on both)).  i'd 
be happy to try to extend the patches  to work on both 32bit and 64bit 
if there is interest.  (basically it took me awhile to figure these 
out and we are only running on 64bit so  i'd want an 
incentive/encouragement to do the extra work 8-)

http://www.archive.org/~tracey/downloads/patches/jaunty-64bit-post-
large-files.patch

http://www.archive.org/~tracey/downloads/patches/karmic-64bit-post-
large-files.patch

http://www.archive.org/~tracey/downloads/patches/jaunty-64bit-post-
large-files.patch-README.txt


[2009-04-24 09:12:04] robin at willowsv dot com

It will accept 2047M Anything bigger breaks post data completely. You 
can only use GET variables.


[2008-03-24 20:21:47] mail2lv at yahoo dot com

Description:

can anyone change the internal variables from int to long, i guess thats the 
reason why uploading files bigger than 2GB via http doesnt work. (yes, i tried 
post_max_size and upload_max_filesize bigger than 2048M).







-- 
Edit this bug report at https://bugs.php.net/bug.php?id=44522&edit=1


Req #44522 [Com]: http upload max_limits and file above 2GB

2012-02-22 Thread noxxim at mail dot ru
Edit report at https://bugs.php.net/bug.php?id=44522&edit=1

 ID: 44522
 Comment by: noxxim at mail dot ru
 Reported by:mail2lv at yahoo dot com
 Summary:http upload max_limits and file above 2GB
 Status: Open
 Type:   Feature/Change Request
 Package:Feature/Change Request
 Operating System:   All
 PHP Version:5.2.5
 Block user comment: N
 Private report: N

 New Comment:

Can someone add a patch for debian squeeze?


Previous Comments:

[2010-02-15 19:52:50] zaulychny at yahoo dot com

The same problem was faced by me. It seems that PHP stops if size of file is 
above 2Gb (i.e. signed int). 
Will someone fix this issue?


[2009-12-09 20:40:19] tracey at archive dot org

we are using 64-bit ubuntu (jaunty and karmic) at archive.org, and php
v5.2.6 and v5.2.10 (respectively).  we are using fastcgi php-cgi
with nginx.

for us, with these 2 patches, we can get up to 8G posting to work
(haven't tried over 8GB 8-).

basically, they are about tracking the config setting/reading vars 
that are 32bits wide when they'd need 64bits, and similar for upload 
limit checking and reading.  

they prolly will not work with 32bit ubuntu immediately without some 
minor tweaking (since i started using long (8B on 64bit; 4B on 32bit) 
datatype and stuck with it instead of "long long" (8B on both)).  i'd 
be happy to try to extend the patches  to work on both 32bit and 64bit 
if there is interest.  (basically it took me awhile to figure these 
out and we are only running on 64bit so  i'd want an 
incentive/encouragement to do the extra work 8-)

http://www.archive.org/~tracey/downloads/patches/jaunty-64bit-post-
large-files.patch

http://www.archive.org/~tracey/downloads/patches/karmic-64bit-post-
large-files.patch

http://www.archive.org/~tracey/downloads/patches/jaunty-64bit-post-
large-files.patch-README.txt


[2009-04-24 09:12:04] robin at willowsv dot com

It will accept 2047M Anything bigger breaks post data completely. You 
can only use GET variables.


[2008-03-24 20:21:47] mail2lv at yahoo dot com

Description:

can anyone change the internal variables from int to long, i guess thats the 
reason why uploading files bigger than 2GB via http doesnt work. (yes, i tried 
post_max_size and upload_max_filesize bigger than 2048M).







-- 
Edit this bug report at https://bugs.php.net/bug.php?id=44522&edit=1