How to handle REALY (say ~30M) big file post?
I wrote simple script to test,
and it's appears that php have hard limit ~10M ,after that limit file just not appear in server tmp dir.
upload_max_filesize = 80M
while exapmle perl script easely hadle file post 50M and more , :-/
OR maybe APACHE/PHP have this limit?
Anyway how to do BIG FILE POST?
<?php
if ( $HTTP_SERVER_VARS["REQUEST_METHOD"]=="POST")
{
$oz=$HTTP_POST_FILES["filename"];
print $oz["tmp_name"];
phpinfo();
exit();
}
?>