Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error uploading large binaries into SDL Tridion Multimedia Components

Tags:

tridion

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.

like image 445
GourmetCMS Avatar asked Aug 02 '12 14:08

GourmetCMS


2 Answers

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

like image 62
Hiren Mistry Avatar answered Nov 19 '22 14:11

Hiren Mistry


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

like image 7
Chris Summers Avatar answered Nov 19 '22 16:11

Chris Summers