From: mozilla%colinogilvie.co.uk <> Date: Tue, 12 Jul 2005 17:55:55 +0000 (+0000) Subject: Bug 252272: Allow extremely large attachments to be stored locally (docs) X-Git-Tag: bugzilla-2.20rc2~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d7a49d9476dc66a50a92951aa4b3e965c20cc05;p=thirdparty%2Fbugzilla.git Bug 252272: Allow extremely large attachments to be stored locally (docs) Patch by A. Karl Kornel , r=joel,colin --- diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml index 51039b3d85..a90796d175 100644 --- a/docs/xml/installation.xml +++ b/docs/xml/installation.xml @@ -1,5 +1,5 @@ - + Installing Bugzilla @@ -651,6 +651,14 @@ 'max_allowed_packet' or 'maxattachmentsize' value will not be accepted by Bugzilla. + + + + This does not affect Big Files, attachments that are stored directly + on disk instead of in the database. Their maximum size is + controlled using the 'maxlocalattachment' parameter. + + @@ -707,6 +715,13 @@ to make a temporary copy of your entire table to do this. Ideally, you should do this when your attachments table is still small. + + + + This does not affect Big Files, attachments that are stored directly + on disk instead of in the database. + +
diff --git a/docs/xml/using.xml b/docs/xml/using.xml index d6c14dbd18..720f461e9d 100644 --- a/docs/xml/using.xml +++ b/docs/xml/using.xml @@ -234,8 +234,12 @@ Attachments: - You can attach files (e.g. testcases or patches) to bugs. If there - are any attachments, they are listed in this section. + You can attach files (e.g. testcases or patches) to bugs. If there + are any attachments, they are listed in this section. Attachments are + normally stored in the Bugzilla database, unless they are marked as + Big Files, which are stored directly on disk and (unlike attachments + kept in the database) may be deleted at some future time. + @@ -774,7 +778,17 @@ Content-Type (e.g. application/xhtml+xml), you can override this using a 'content-type' parameter on the URL, e.g. &content-type=text/plain. - + + + + If you have a really large attachment, something that does not need to + be recorded forever (as most attachments are), you can mark your + attachment as a Big File, Assuming the administrator of the + installation has enabled this feature. Big Files are stored directly on + disk instead of in the database, and can be deleted when it is no longer + needed. The maximum size of a Big File is normally larger than the + maximum size of a regular attachment. +