将大型二进制文件上传到 SDL Tridion 多媒体组件时出错 [英] Error uploading large binaries into SDL Tridion Multimedia Components

查看:22
本文介绍了将大型二进制文件上传到 SDL Tridion 多媒体组件时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 SDL Tridion 2011 SP1,并将大型二进制文件作为多媒体组件上传.这适用于高达约 30Mb 的二进制文件,之后 CME 无法上传文件.我假设这是某种限制二进制大小的 web.config 设置,有谁知道我需要更改哪些配置文件以允许高达 100Mb 的二进制文件.这些是特定于 CMS 的设置吗,我是否需要进行其他更改以支持通过 WebDAV 上传这些大文件?

I am using SDL Tridion 2011 SP1, and uploading large binaries as Multimedia Components. This works fine for binaries up to about 30Mb, after that the CME fails to upload files. I assume this is some sort of web.config setting to limit binary sizes, does anyone know which config files I need to change to allow binaries of up to 100Mb. Are these CMS specific settings, and will I need to make additional changes to support uploading these large files over WebDAV?

我完全知道我可以为此使用外部多媒体组件",但我们有一些大型二进制文件需要使用完整版本控制.

I am fully aware that I could use "External Multimedia Components" for this, but we have a few large binaries that we want to use full version control on.

推荐答案

这里是你问题的答案;你快到了.

Here is the answer of your question; you are almost on the way.

首先我们需要了解的是,默认情况下,Tridion WebUI 不会在 web.config 中设置任何 maxFilesize,因此 Tridion CME 将采用机器配置文件大小 [默认为 30MB].

First thing what we need to understand is by default Tridion WebUI will not set any maxFilesize in web.config so, Tridion CME will take machine config file size [it is by default 30MB].

这里要上传更大的文件,您需要在 webUI webconfig 下添加以下节点,该节点将位于 c:\programfiles(x86)\Tridion\web\WebUi\WebRoot\

Here to upload bigger file you need to add following node under webUI webconfig which will located at c:\programfiles(x86)\Tridion\web\WebUi\WebRoot\

<security>
   <requestFiltering>
     <requestLimits maxAllowedContentLength="1073741824"/>
   </requestFiltering>
 </security>

请确保 maxAllowedContentLength 只接受字节......

Please make sure maxAllowedContentLength only accept in byte....

例如你需要将 maxAllowedContentLength 设置为 1GB 那么它应该是 10240000000

for e.g. you need to go for maxAllowedContentLength to 1GB then it should be like 10240000000

我希望这个答案能解决你的问题......祝一切顺利,

I hope this answer will solved your problem ... All the best,

问候,雇用

这篇关于将大型二进制文件上传到 SDL Tridion 多媒体组件时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆