Hey all, I need some really technical info I can’t seem to find anywhere. I’m trying to make a script that will upload files up to 4 or 5 GB through PHP (it’s over local intranet). So far I’ve gotten it to go up to 1GB by adjusting all of the max size info in php.ini. It literally stops allowing uploads at files over 1GB exactly. The test server I’m using (and all my servers) only have 1GB of RAM. Could this be a physical limitation of PHP? I know PHP handles files in one big POST data chunk, so could memory be filling up and stopping the upload? (I made sure the memory_size php.ini limit was huge.)
Any ideas?