IE6: Large file downloads fail and the page cannot be displayed?

I have a very simple PHP script file upload. At the moment I am testing a file with a size of 175 MB. This works fine in all browsers (firefox, chomre, etc.), including IE7 and above, but does not work for IE6.

When I upload a file, the script should export the access database (just downloaded) and all its tables to text files, this works fine in all browsers, but in IE6 the file loads and the script does export, but IE6 cannot return with the page displayed!

When I upload a small file about 1 MB in size, it works fine, it exports and shows a page with the results. Therefore, I assume that the time required for processing is a problem. I made sure they are installed as follows:

upload_max_filesize = 2000M
post_max_size = 2000M
max_input_time = 600

I also use the set_time_limit(0)top if my script. For apache:

Timeout 3000
KeepAlive On
KeepAliveTimeout 5

What is the problem? I can not narrow it further!

Thanks for any help with this.

Update

I need to check my logs. There are errors, they look like this:

[29-Jun-2010 14:03:41] PHP Notice:  Undefined index: access_db in

All my POST and FILES data are missing! IE6 is not sending this for some reason for large files!

I wonder why?

Update 2

, : IE6 , , , , " ", . Wtf ?!

+3
2

, post_max_size 2000 IE6 REQUEST. post_max_size 1800 , .

0

, IE6, , YouTube, .

+1

Source: https://habr.com/ru/post/1752267/


All Articles