2010-08-30 25 views

回答

2

是的。那就對了。你最好使用FTP上傳這樣的大文件。 您的主人可能也會限制您的上傳大小(post_max_size)。

max_execution_time不包括用於上傳的時間。請看這manual page on PHP.net

+0

post_max_size是100MB。 (1)所以只有max_input_time參數我應該改變? (2)upload_max_filesize也很重要(如post_max_size)?謝謝 – aneuryzm 2010-08-30 10:06:11

+1

你應該改變['max_input_time'](http://nl3.php.net/manual/en/info.configuration.php#ini.max-input-time),['upload_max_filesize'](http:// nl3.php.net/manual/en/ini.core.php#ini.upload-max-filesize),['post_max_size'](http://nl3.php.net/manual/en/ini.core.php #ini.post-max-size),['memory_limit'](http://nl3.php.net/manual/en/ini.core.php#ini.memory-limit)。 – Lekensteyn 2010-08-30 10:12:18

相關問題