<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WPWife &#187; wordpress 413 error</title>
	<atom:link href="http://www.wpwife.com/category/wordpress-413-error/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wpwife.com</link>
	<description>WPHelp: fix and optimise WP themes&#38;plugins</description>
	<lastBuildDate>Fri, 21 Nov 2025 12:00:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.38</generator>
	<item>
		<title>How to Fix the 413 Request Entity Too large Error in WordPress</title>
		<link>http://www.wpwife.com/tutorials/how-to-fix-the-413-request-entity-too-large-error-in-wordpress</link>
		<comments>http://www.wpwife.com/tutorials/how-to-fix-the-413-request-entity-too-large-error-in-wordpress#comments</comments>
		<pubDate>Wed, 07 Feb 2018 14:41:16 +0000</pubDate>
		<dc:creator><![CDATA[Editorial Staff]]></dc:creator>
				<category><![CDATA[common wordpress errors]]></category>
		<category><![CDATA[request entity too large error]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress 413 error]]></category>
		<category><![CDATA[wordpress errors]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=50262</guid>
		<description><![CDATA[
<p>Are you seeing the 413 Request entity too large error in WordPress? This error usually occurs when you are trying to upload a theme or plugin file in WordPress. In this article, we will show you how to easily fix the 413: request entity too&#8230;&#160;<strong><a href="http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-413-request-entity-too-large-error-in-wordpress/">Read More &#187;</a></strong></p>
<p>The post <a rel="nofollow" href="http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-413-request-entity-too-large-error-in-wordpress/">How to Fix the 413 Request Entity Too large Error in WordPress</a> appeared first on <a rel="nofollow" href="http://www.wpbeginner.com/">WPBeginner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Are you seeing the 413 Request entity too large error in WordPress? This error usually occurs when you are trying to upload a theme or plugin file in WordPress. In this article, we will show you how to easily fix the 413: request entity too large error in WordPress. </p>
<p><img title="WordPress 413 error - Request entity too large" src="http://cdn4.wpbeginner.com/wp-content/uploads/2018/02/wp413error.png" alt="WordPress 413 error - Request entity too large" width="550" height="340" class="alignnone size-full wp-image-50269" /></p>
<h4>What Causes WordPress 413 Request Entity Too Large Error?</h4>
<p>This error usually happens when you are trying to upload a file that exceeds the maximum file upload limit on your WordPress site. </p>
<p>Your web server will fail to upload the file, and you will see the 413 request entity too large error page. </p>
<p><img title="413 request entity too large error example" src="http://cdn.wpbeginner.com/wp-content/uploads/2018/02/413requestentityerror.png" alt="413 request entity too large error example" width="550" height="237" class="alignnone size-full wp-image-50265" /></p>
<p>Normally, most <a href="http://www.wpbeginner.com/wordpress-hosting/" title="How to Choose the Best WordPress Hosting?">WordPress hosting</a> companies have their servers configured, so that WordPress users can <a href="http://www.wpbeginner.com/beginners-guide/how-to-upload-large-images-in-wordpress/" title="How to Upload Large Images in WordPress">easily upload large images</a> and other media. </p>
<p>However, sometimes this setting is not high enough to upload large theme or plugin files. </p>
<p>It would also stop you from uploading large files in media library. In that case, you will see a different message, clearly stating that the file size exceeds maximum allowed limit. </p>
<p><img title="File size exceeds maximum upload size limit" src="http://cdn4.wpbeginner.com/wp-content/uploads/2018/02/filesizelimit.png" alt="File size exceeds maximum upload size limit" width="550" height="290" class="alignnone size-full wp-image-50266" /></p>
<p>That being said, let&#8217;s take a look at how to fix the the WordPress 413 request entity too large error. </p>
<h4>Fixing 413 Request Entity Too Large Error in WordPress</h4>
<p>There are multiple ways to fix the request entity too large error in WordPress. We will cover all these methods, and you can try the one that works best for you. </p>
<p><strong>Method 1. Increase Upload File Size Limit via Functions File</strong> </p>
<p>Simply add the following code to your theme&#8217;s <a href="http://www.wpbeginner.com/glossary/functions-php/" title="What is functions.php File in WordPress?">functions.php</a> file or a <a href="http://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/" title="What, Why, and How-To’s of Creating a Site-Specific WordPress Plugin">site-specific plugin</a>. </p>
<pre class="brush: php; title: ; notranslate">
@ini_set( 'upload_max_size' , '64M' );
@ini_set( 'post_max_size', '64M');
@ini_set( 'max_execution_time', '300' );
</pre>
<p>You can increase the values in upload_max_size and post_max_size to be more than the file you are trying to upload. You will also need to increase the max_execution_time to the time you think it would take for the file to upload. If you are unsure, then you can try doubling this value. </p>
<p><strong>Method 2. Increase Upload File Size Limit via .htacces File</strong> </p>
<p>For this method, you will need to edit the .htaccess file and add the following code at the bottom: </p>
<pre class="brush: php; title: ; notranslate">
php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300
</pre>
<p>To learn more about increasing file upload size limit, see our guide on how to <a href="http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/" title="How to Increase the Maximum File Upload Size in WordPress">increase the maximum file upload size</a> in WordPress. </p>
<p><strong>Method 3. Manually Upload File via FTP</strong>  </p>
<p>If the 413 error only occurs when you are uploading one particular file, then you may want to consider uploading the file manually via <a href="http://www.wpbeginner.com/glossary/ftp/" title="What is FTP? How to Use FTP to upload WordPress Files?">FTP</a>. </p>
<p>If you are trying to upload a WordPress theme, then see our guide on <a href="http://www.wpbeginner.com/beginners-guide/how-to-install-a-wordpress-theme/" title="Beginners Guide: How to Install a WordPress Theme">how to install a WordPress theme</a> and jump to the &#8216;Installing a WordPress theme using FTP&#8217; section. </p>
<p>If you are trying to upload a plugin, then see our guide <a href="http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/" title="Step by Step Guide to Install a WordPress Plugin for Beginners">how to install a WordPress plugin</a> and jump to &#8216;Manually install a WordPress plugin using FTP&#8217; section. </p>
<p>For other files, see our guide on how to <a href="http://www.wpbeginner.com/beginners-guide/how-to-use-ftp-to-upload-files-to-wordpress-for-beginners/" title="How to use FTP to upload files to WordPress for Beginners">manually upload WordPress files using FTP</a>. </p>
<p>We hope this article helped you learn how to fix the WordPress 413 request entity too large error. You may also want to see our list of the <a href="http://www.wpbeginner.com/common-wordpress-errors-and-how-to-fix-them/" title="25 Most Common WordPress Errors and How to Fix Them">most common WordPress errors</a> and how to fix them. </p>
<p>If you liked this article, then please subscribe to our <a href="http://youtube.com/wpbeginner?sub_confirmation=1" title="WPBeginner on YouTube"  rel="nofollow">YouTube Channel</a> for WordPress video tutorials. You can also find us on <a href="http://twitter.com/wpbeginner" title="WPBeginner on Twitter"  rel="nofollow">Twitter</a> and <a href="https://www.facebook.com/wpbeginner" title="WPBeginner on Facebook"  rel="nofollow">Facebook</a>.</p>
<p>The post <a rel="nofollow" href="http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-413-request-entity-too-large-error-in-wordpress/">How to Fix the 413 Request Entity Too large Error in WordPress</a> appeared first on <a rel="nofollow" href="http://www.wpbeginner.com/">WPBeginner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpwife.com/tutorials/how-to-fix-the-413-request-entity-too-large-error-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="0" type="" />
		</item>
	</channel>
</rss>
