I was importing Tridion 5.3 contents to Tridion 2011. Exporting content was fine. But later when tried to Import the exported content below message showed and it failed
The file size tried to Import rages in 500KB the MaxRequestLengthLimit in the web.config file is 1000 MB
Also checked to see if its the issue with user permissions tried with Admin , same error message and it closes.
The MaxRequestLengthLimit
has nothing to do with the upload of large binaries for Content porter, which is most likely the issue you are encountering. From the SDL ContentPorter 2009 SP2 documentation it states you have to do the following:
If your Content Porter Web site runs on IIS 6, change the metabase property called AspMaxRequestEntityAllowed
to a number that represents the maximum amount of bytes you expect to upload from Content Porter. A typical value might be 209752100
, that is, 200 MB.
If your Content Porter Web site runs on IIS 7.0 or IIS 7.5, then on the Content Porter server machine, navigate to the Content Porter\ImportExportService\
subfolder of your Content Manager root location. which defaults to c:\Program Files (x86)\Tridion
or c:\Program Files\Tridion
).
Open the file web.config in a plain-text or XML editor.
In the root <system.webServer>
element, add the following fragment (creating elements if they are not already present):
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="209752100" />
</requestFiltering>
</security>
where the value for the maxAllowedContentLength
attribute represents the file size you expect to upload (the value shown allows uploads of files of up to 200 MB).
Save and close web.config and restart IIS.