私はAlfresco Shareのdonwloadファイルサイズ制限について1つの質問があります。 大きなファイルをダウンロードすると、「コンテンツが大きすぎてダウンロードできません。最大ダウンロードサイズは2GB、選択されたファイルは2.9GB」というメッセージポップアップが表示されます。 このファイルサイズの制限を3GBまたは4GBに変更することはできますか? 私は、メッセージは以下のコードAlfresco Shareのダウンロードファイルサイズ制限を変更することはできますか?
archiveProgressSuccess: function ArchiveAndDownload_archiveProgressSuccess(response)
{
else if (response.json.status == "MAX_CONTENT_SIZE_EXCEEDED")
{
// The file size is too large to be zipped up:
Alfresco.util.PopupManager.displayPrompt(
{
text: this.msg("message.maxContentSizeExceeded", Alfresco.util.formatFileSize(response.json.done), Alfresco.util.formatFileSize(response.json.total, 2))
});
this.panel.hide();
}
},
によってアーカイブと-download.jsにcatpuredていると思うと、この関数はそれはのようにまっすぐ進むそれが必要ないようです
getArchivingProgress: function ArchiveAndDownload_getArchivingProgress(prevFailures)
{
if (this._currentArchiveNodeURL != null && this._currentArchiveNodeURL != "")
{
Alfresco.util.Ajax.jsonGet({
url: Alfresco.constants.PROXY_URI + "api/internal/downloads/" + this._currentArchiveNodeURL + "/status",
responseContentType : "application/json",
successCallback:
{
fn: this.archiveProgressSuccess,
scope: this
},
failureCallback:
{
fn: this.archiveProgressFailure,
scope: this
},
failureCount: prevFailures
});
}
},
に download.maxContentSize = -1 を追加することで解決策を見つけましたか? – Gagravarr
私が使用しているバージョンはCommunity-5.2.0(r128301-b8) – vincent