Request Entity Too Large error on data import

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>

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s