From: mozilla%colinogilvie.co.uk <> Date: Tue, 12 Jul 2005 17:56:52 +0000 (+0000) Subject: Bug 252272: Allow extremely large attachments to be stored locally X-Git-Tag: bugzilla-2.21.1~205 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f2ff6b73ad75be50164e69235ef2c4bc374cf82;p=thirdparty%2Fbugzilla.git Bug 252272: Allow extremely large attachments to be stored locally Patch by A. Karl Kornel , r=joel,colin --- diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml index 8c7fd136e2..ec30713f34 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. +