When exporting a big amount of content via Epi Admin Tools and importing into local environment you can receive an Error because the file size limitation.
“The remote server returned an error: (413) Request Entity Too Large. Request entity too large.”
The limits can be extended so you can import larger *.episerverdata files in the web.config
Example:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="100000000"/>
</requestFiltering>
</security>
</system.webServer>
<system.web>
<httpRuntime maxRequestLength="1000000" executionTimeout="3600"/>
</system.web>