Error uploading large binaries into SDL Tridion Multimedia Components

倾然丶 夕夏残阳落幕 提交于 2019-12-10 01:13:58

问题


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.


回答1:


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

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].

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>

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

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,

regards, Hiren




回答2:


Try these link from the SDL Tridion Documentation Portal (requires login)

For WebDAV: http://sdllivecontent.sdl.com/LiveContent/content/en-US/SDL_Tridion_2011_SPONE/task_E1E4BB75BEB84404B4EFAFC6B8A22D15

For the CME: http://sdllivecontent.sdl.com/LiveContent/content/en-US/SDL_Tridion_2011_SPONE/CME_concept_242A17EC385644C8A77F2C976576492C



来源:https://stackoverflow.com/questions/11779054/error-uploading-large-binaries-into-sdl-tridion-multimedia-components

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!