Groessenbeschraenkung fuer file-uploads??
-
mahlzeit,
weiss jemand aus Erfahrung, wie gross files sein koennen, die mittels dem html-file-upload (SERVER_PROTOCOL: HTTP/1.1; PHP Version 4.3.4RC1; Apache/1.3.28 (Unix) mod_perl/1.28 PHP/4.3.4RC1) maximal verarbeitet werden koennen? Im Moment sind per "upload_max_filesize" 7M eingetragen; auf wieviel laesst sich das aufblasen?
Danke,
SF
-
ich weiß nicht genau, wodurch sich das alles begrenzen lässte, aber theoretisch sollte es praktisch unbegrenzt möglich sein
http://bugs.php.net/bug.php?id=22550
Evtl. auch noch ganz interessant:To upload large files, besides setting upload_max_filesize, you must also set post_max_size in php.ini or using ini_set() function. Keep the value to more than the maximum expected size of the upload. This is because, you may be sending other post data along with the upload file. For example:
post_max_size = 601M
This should be a safe setting if you want to upload files of around 600 MB (as specified by upload_max_filesize = 600M)
While uploading large files, you should also increase the values for max_execution_time and max_input_time directives. Else your script will timeout or timeout before being able to parse the entire input/uploaded data.
-
Es kann bei zu grossen Dateien (>150MB) aber durchaus zu Fehlern kommen
Keine Ahnung woran es liegt, aber bei zu grossen Dateien bricht der Upload manchmal ab
-
Danke Euch beiden, die Infos helfen mir weiter, und ich denke 150 MB sollten
fuer diesen Zweck ausreichen.
Wenn's so weit ist, kann ich ja berichten wie's gelaufen ist (sind im Moment
noch beim klaeren der Moeglichkeiten)solong
SF