<?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"

			>

	<channel>

		<title>CANNOT INSTALL X THEME TO WORDPRESS. UPLOADED FILE EXCEEDS SIZE ERROR MESSAGE? &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/feed/</link>
		<description></description>
		<lastBuildDate>Fri, 24 Oct 2025 14:35:00 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/#post-191744</guid>
					<title><![CDATA[CANNOT INSTALL X THEME TO WORDPRESS. UPLOADED FILE EXCEEDS SIZE ERROR MESSAGE?]]></title>
					<link>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/#post-191744</link>
					<pubDate>Mon, 26 Jan 2015 13:10:00 +0000</pubDate>
					<dc:creator>SteveMepsted</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there  &#8211; I have been attempting to upload the x.zip file to WordPress but get a message stating that the max file size is too large? </p>
<p>Can someone help please? Many thanks Steve </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/#post-192155</guid>
					<title><![CDATA[Reply To: CANNOT INSTALL X THEME TO WORDPRESS. UPLOADED FILE EXCEEDS SIZE ERROR MESSAGE?]]></title>
					<link>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/#post-192155</link>
					<pubDate>Mon, 26 Jan 2015 22:24:06 +0000</pubDate>
					<dc:creator>Alexander</dc:creator>

					<description>
						<![CDATA[
						<p>Hey there,</p>
<p>It sounds like your host has limited the file size. I would advise contacting them and asking them to increase the limit. You could also install via FTP, but most hosts are willing to increase the upload size which will make things easier.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/#post-192156</guid>
					<title><![CDATA[Reply To: CANNOT INSTALL X THEME TO WORDPRESS. UPLOADED FILE EXCEEDS SIZE ERROR MESSAGE?]]></title>
					<link>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/#post-192156</link>
					<pubDate>Mon, 26 Jan 2015 22:27:06 +0000</pubDate>
					<dc:creator>John Ezra</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for writing in. This error is due to your PHP configuration settings. If you are comfortable changing the settings you can read on below, if not then please ask your host to adjust this for you. Thanks!</p>
<p>Ideally the best way to do this is to access your php server&#8217;s php.ini file via graphical interface or via the command line. However for most hosting setup this is not something readily available for security reasons and to prevent people using their hosting as an online storage. If you have access to these, you must have a more dedicated type of hosting in which you probably already know what you are doing. If not I recommend getting help from your host directly or trying the following options:</p>
<p><strong>Option 1: Theme Functions File</strong></p>
<p>Add this to your functions.php file:</p>
<pre><code>@ini_set( &#039;upload_max_size&#039; , &#039;64M&#039; );
@ini_set( &#039;post_max_size&#039;, &#039;64M&#039;);
@ini_set( &#039;max_execution_time&#039;, &#039;300&#039; );</code></pre>
<p><strong>Option 2: Increase Upload Size Using a PHP.INI file</strong></p>
<p><strong>A.</strong> Create the php.ini File using Notepad (PC) or TextEdit (Mac) &#8211; just open up your favorite text editor and save the file with PHP as the file name  and  “.ini” as the file extension.</p>
<p><strong>B.</strong> Enter the following lines within this file:</p>
<pre><code>memory_limit = 100M
upload_max_filesize = 192M
post_max_size = 100M
file_uploads = On</code></pre>
<p><strong>C.</strong> Save it and then upload it to your <strong>wp-admin</strong> folder via ftp.</p>
<p><strong>Option 3: .htaccess File</strong></p>
<p>Find or create the .htaccess file similar to option two. You should find it in the root directory of your install.</p>
<p>With a text editor create a file titled &#8220;blank&#8221; as in nothing with the file extension &#8220;.htaccess&#8221; then put the following inside of of it.</p>
<pre><code>RewriteEngine On
php_value memory_limit 34M
php_value post_max_size 33M
php_value upload_max_filesize 32M
php_value max_execution_time 600</code></pre>
<p>That should do it.</p>
<p>Note: in each of the examples above you must change the values as you see fit, generally try to keep a small upload size if you&#8217;re not uploading videos or large files. X theme is just a little over 6MB so you should be fine with a value of 10M.</p>
<p>Hope this helps!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/#post-192647</guid>
					<title><![CDATA[Reply To: CANNOT INSTALL X THEME TO WORDPRESS. UPLOADED FILE EXCEEDS SIZE ERROR MESSAGE?]]></title>
					<link>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/#post-192647</link>
					<pubDate>Tue, 27 Jan 2015 13:36:24 +0000</pubDate>
					<dc:creator>SteveMepsted</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks so much for your reply &#8211; I have contacted them and hopefully they will take off the restriction.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/#post-193048</guid>
					<title><![CDATA[Reply To: CANNOT INSTALL X THEME TO WORDPRESS. UPLOADED FILE EXCEEDS SIZE ERROR MESSAGE?]]></title>
					<link>https://theme.co/archive/forums/topic/cannot-install-x-theme-to-wordpress-uploaded-file-exceeds-size-error-message/#post-193048</link>
					<pubDate>Wed, 28 Jan 2015 00:20:03 +0000</pubDate>
					<dc:creator>John Ezra</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for updating the post, they should be able to take care of it. Let us know if ever you need anything else, thanks!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

