From 47197651e3cba4776733555484c75ffb344bb962 Mon Sep 17 00:00:00 2001 From: Roland Hager Date: Tue, 17 Nov 2015 09:46:52 +0100 Subject: [PATCH] misinterpretation of php's max_file_uploads The value of max_file_uploads limits fileuploads to a maximum of ``max_file_uploads`` within one connection. So multiple users can each upload ``max_file_uploads`` at the same time. The value does not have to be higher than the maximum number of simutanously uploaded files per connection. If the desktop clients uploads a maximum of 3 files at once, the value could stay at 3. I'm not sure how he webapplication handles the upload of multiple files but the default of 20 seems quite reasonable. --- .../performance_tuning/webserver_tips.rst | 8 -------- 1 file changed, 8 deletions(-) diff --git a/admin_manual/configuration_server/performance_tuning/webserver_tips.rst b/admin_manual/configuration_server/performance_tuning/webserver_tips.rst index 878121830..d6ef15a46 100644 --- a/admin_manual/configuration_server/performance_tuning/webserver_tips.rst +++ b/admin_manual/configuration_server/performance_tuning/webserver_tips.rst @@ -12,14 +12,6 @@ on/off``. If it is on, then add this line to ``php.ini`` to turn it off:: safe_mode = Off -Raise max_file_uploads of PHP ------------------------------ - -The PHP setting ``max_file_uploads`` within the ``php.ini`` defaults to ``20`` -on most environments which allows that number of simultaneous uploads. -Currently the ownCloud sync client is doing ``3`` parallel uploads which means -that at least ``6`` clients can upload files simultaneously. Depending on your -server usage it is recommended to raise this number to a higher value. Enable the SPDY / http_v2 protocol ----------------------------------