[Pkg-owncloud-commits] [owncloud-doc] 11/22: Changed configuring_big_file_upload.rst to reflect .htaccess, provided note about output_buffering

David Prévot taffit at moszumanska.debian.org
Sun Jun 1 18:48:19 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud-doc.

commit 5a3e8da9b79cd00cb62363dbb2cea78a8d1b6b34
Author: ramschmaerchen <z-git at ay.vc>
Date:   Fri May 30 13:29:41 2014 +0200

    Changed configuring_big_file_upload.rst to reflect .htaccess, provided note about output_buffering
---
 .../configuration/configuring_big_file_upload.rst     | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

diff --git a/admin_manual/configuration/configuring_big_file_upload.rst b/admin_manual/configuration/configuring_big_file_upload.rst
index db82b0f..b8e7043 100644
--- a/admin_manual/configuration/configuring_big_file_upload.rst
+++ b/admin_manual/configuration/configuring_big_file_upload.rst
@@ -27,21 +27,30 @@ Enabling uploading big files
 * Under "File handling" set the Maximum upload size to the desired value (e.g. 16GB)
 * Click the "save"-Button
 
-**Open the php.ini - file**
+**Configuring your webserver**
+
+ownCloud comes with a .htaccess - file which propagates all config to your webserver. To adapt those settings go to the ownCloud - Folder on your server and set the following two parameters inside the .htaccess file:
+
+* ``upload_max_filesize = 16G``   (e.g., to stay consistent with the example value above)
+* ``post_max_size = 16G``   (e.g., to stay consistent with the example value above)
+
+If you don't want to use the shipped .htaccess - file, outcomment those options there and edit them in your global php.ini file:
 
 * Under Debian or SUSE and their derivatives this file resides at ``/etc/php5/apache2/php.ini``
 * On Windows, you can find this file within ``C:\Program Files (x86)\PHP\PHP.ini``
 
-**Do the following:**
+Set the following two parameters inside the php.ini to the same value as chosen inside the admin-section one step before:
 
-* Set the following three parameters inside th php.ini to the same value as chosen inside the admin-section one step before:
 * ``upload_max_filesize = 16G``   (e.g., to stay consistent with the example value above)
 * ``post_max_size = 16G``   (e.g., to stay consistent with the example value above)
+
+**Output Buffering** allows you to get performance benefits in some setups. Please make sure you know what you are doing before using it in production. As previously mentioned, add this option in your .htaccess file or edit your php.ini file:
+
 * ``output_buffering = 16384``	(e.g., to stay consistent with the example value above)
 
-whereas the "output_buffering" has to be given in MegaBytes but as a plain figure (without size-units as 'M' or 'G')
+As you can see, the "output_buffering" has to be given in MegaBytes but as a plain figure (without size-units as 'M' or 'G')
 
-These client configurations have been proven by testing maximum file sizes of 16 GB:
+**These client configurations have been proven by testing maximum file sizes of 16 GB:**
 
 * Linux 32 Bit: Ubuntu, Firefox => 16GB 
 * Windows 8  64 Bit: Google Chrome => 8GB

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-doc.git



More information about the Pkg-owncloud-commits mailing list