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
- Unable to upload package. Access to server could be restricted or package is too large.
- This request requires buffering data to succeed.
- Import was aborted
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
MaxRequestLengthLimithas 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
AspMaxRequestEntityAllowedto a number that represents the maximum amount of bytes you expect to upload from Content Porter. A typical value might be209752100, 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 toc:\Program Files (x86)\Tridionorc:\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):where the value for the
maxAllowedContentLengthattribute 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.