<?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>Optimise Blog &#187; Wordpress</title>
	<atom:link href="http://optimiseblog.co.uk/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://optimiseblog.co.uk</link>
	<description>Technology, in plain English!</description>
	<lastBuildDate>Mon, 27 Feb 2012 12:58:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Increase Maximum File Upload Size in WordPress</title>
		<link>http://optimiseblog.co.uk/increase-maximum-file-upload-size-in-wordpress/</link>
		<comments>http://optimiseblog.co.uk/increase-maximum-file-upload-size-in-wordpress/#comments</comments>
		<pubDate>Tue, 10 May 2011 10:06:34 +0000</pubDate>
		<dc:creator>Adrian @ Optimise</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://optimiseblog.co.uk/?p=624</guid>
		<description><![CDATA[In some cases the file you are trying to upload into the Media Library in your WordPress installation may be bigger than the maximum allowed size. This is a common problem, but it is easy to fix. At Optimise Web our web servers have a maximum upload limit of 2MB. Occasionally we have clients who [...]]]></description>
			<content:encoded><![CDATA[<p>In some cases the file you are trying to upload into the Media Library in your WordPress installation may be bigger than the maximum allowed size. This is a common problem, but it is easy to fix.</p>
<p>At <a title="Optimise Web" href="http://www.optimiseweb.co.uk/">Optimise Web</a> our web servers have a maximum upload limit of 2MB. Occasionally we have clients who want to upload larger PDFs into their media library. Rather than increasing the limit for all domains, we can override this limit on individual domains. Some shared hosting accounts have similar restrictions and will not increase it for individual clients. Here&#8217;s one way you can try to override the imposed file size limit:</p>
<p>In the root directory of your server (the folder where your WordPress install lives), look for the <a title="Apache Tutorial - htaccess file " href="http://httpd.apache.org/docs/1.3/howto/htaccess.html">.htaccess</a> file. Open this file in your editor of choice and add the following lines&#8230;</p>
<pre class="brush: php; title: ; notranslate">

php_value upload_max_filesize 3M
php_value post_max_size 3M
php_value memory_limit 3M
</pre>
<p>This increases the allowed file size and also the amount of <a title="How do I Import a WordPress file when it says it is too large to import?" href="http://codex.wordpress.org/FAQ_Working_with_WordPress#How_do_I_Import_a_WordPress_WXR_file_when_it_says_it_is_too_large_to_import.3F">memory the server allocates</a> for running the PHP scripts need to perform the upload.</p>
<p>Of course <strong>3M</strong> represents a 3MB file size. You can change this for your own value.</p>
]]></content:encoded>
			<wfw:commentRss>http://optimiseblog.co.uk/increase-maximum-file-upload-size-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide Pages from a Menu in WordPress 3.x</title>
		<link>http://optimiseblog.co.uk/hide-pages-from-a-menu-in-wordpress-3-x/</link>
		<comments>http://optimiseblog.co.uk/hide-pages-from-a-menu-in-wordpress-3-x/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 14:13:29 +0000</pubDate>
		<dc:creator>Adrian @ Optimise</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://optimiseblog.co.uk/?p=616</guid>
		<description><![CDATA[If you have a page in WordPress you do not want to appear on a menu &#8212; for example, say you have created a static Home page, but don&#8217;t want it to be shown on the main menu, you can add an exclude argument in the menu function. Find the function which calls your menu, [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a page in WordPress you do not want to appear on a menu &#8212; for example, say you have created a static Home page, but don&#8217;t want it to be shown on the main menu, you can add an exclude argument in the menu function.</p>
<p>Find the function which calls your menu, the main menu function appears in the header.php file in the default TwentyTen theme. It looks something like this&#8230;</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php wp_nav_menu( array( 'container_class' =&gt; 'menu-header', 'menu_class' =&gt; 'main-menu', 'theme_location' =&gt; 'primary' ) ); ?&gt;
</pre>
<p>To exclude a page from this menu you would add the following code to the array&#8230;</p>
<pre class="brush: php; title: ; notranslate">
'exclude' =&gt; 'YOUR_HIDDEN_PAGE/POST_IDs'
</pre>
<p>Page and Post ID&#8217;s should be comma seperated. So now the menu function looks like this&#8230;</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php wp_nav_menu( array( 'container_class' =&gt; 'menu-header', 'menu_class' =&gt; 'main-menu', 'theme_location' =&gt; 'primary', 'exclude' =&gt; '6,12,18' ) ); ?&gt;
</pre>
<p>To find your post or page ID, in your WordPress admin go to the post or page you want to hide, as if you were going to edit it. Look at the URL of that page in your browser. It will look like this&#8230;</p>
<p>http://your_domain.com/wp-admin/post.php?<strong>post=2</strong>&#038;action=edit</p>
<p>Your Page or Post ID is highlighted in bold above. In this case the page ID is <em>2</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://optimiseblog.co.uk/hide-pages-from-a-menu-in-wordpress-3-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fix : WordPress is Stuck in Maintenance Mode after Automatic Upgrade</title>
		<link>http://optimiseblog.co.uk/fix-wordpress-is-stuck-in-maintenance-mode-after-automatic-upgrade/</link>
		<comments>http://optimiseblog.co.uk/fix-wordpress-is-stuck-in-maintenance-mode-after-automatic-upgrade/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 13:00:47 +0000</pubDate>
		<dc:creator>Sid Vel</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://optimiseblog.co.uk/?p=566</guid>
		<description><![CDATA[Is your WordPress site stuck in maintenance mode and displaying the following message? Briefly unavailable for scheduled maintenance. Check back in a minute. Deleting the file called &#8220;.maintenance&#8221; in the root of the site&#8217;s public folder should fix the maintenance mode issue. In most cases the file upgrade would be done successfully and progress stuck at [...]]]></description>
			<content:encoded><![CDATA[<p>Is your WordPress site stuck in maintenance mode and displaying the following message?</p>
<blockquote><p><strong>Briefly unavailable for scheduled maintenance. Check back in a minute.</strong></p></blockquote>
<p>Deleting the file called &#8220;.maintenance&#8221; in the root of the site&#8217;s public folder should fix the maintenance mode issue. In most cases the file upgrade would be done successfully and progress stuck at the database upgrade stage. After deleting this file, you might have to hit Refresh on your browser to release the maintenance mode. Then, you will be prompted for a database upgrade, if it is required.</p>
<p><strong>Source: </strong><a href="http://wordpress.org/support/topic/30-stuck-in-maintenance-mode-after-failed-plugin-upgrade">http://wordpress.org/support/topic/30-stuck-in-maintenance-mode-after-failed-plugin-upgrade</a></p>
]]></content:encoded>
			<wfw:commentRss>http://optimiseblog.co.uk/fix-wordpress-is-stuck-in-maintenance-mode-after-automatic-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twenty Ten Theme &amp; All in One SEO Pack &#8211; Joined / No Space Issue</title>
		<link>http://optimiseblog.co.uk/twenty-ten-theme-all-in-one-seo-pack-joined-no-space-issue/</link>
		<comments>http://optimiseblog.co.uk/twenty-ten-theme-all-in-one-seo-pack-joined-no-space-issue/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 15:51:00 +0000</pubDate>
		<dc:creator>Sid Vel</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[all in one seo]]></category>
		<category><![CDATA[meta title]]></category>
		<category><![CDATA[twenty ten]]></category>
		<category><![CDATA[wordpress fix]]></category>
		<category><![CDATA[wordpress issue]]></category>

		<guid isPermaLink="false">http://optimiseblog.co.uk/?p=326</guid>
		<description><![CDATA[Upon upgrading to WordPress 3.0, you might notice the Meta Page Title joined without spacing between the blog title and blog name. This problem arises when using the Twenty Ten theme or a theme designed using the Twenty Ten theme in conjunction with the All in One SEO Pack plugin. If you have set the [...]]]></description>
			<content:encoded><![CDATA[<p>Upon upgrading to WordPress 3.0, you might notice the <strong>Meta Page Title</strong> joined without spacing between the blog title and blog name.</p>
<p><img class="aligncenter size-full wp-image-332" title="Chrome Page Title All In One SEO Issue" src="http://optimiseblog.co.uk/wp-content/uploads/2010/07/chrome-page-title-all-in-one-seo-issue.png" alt="Chrome Page Title All In One SEO Issue" width="216" height="30" /></p>
<p>This problem arises when using the Twenty Ten theme or a theme designed using the Twenty Ten theme in conjunction with the All in One SEO Pack plugin. If you have set the configuration to not display the Blog Title as follows, the title function causes the above problem.</p>
<p><img class="aligncenter size-full wp-image-330" title="All in One SEO Configuration Page Title" src="http://optimiseblog.co.uk/wp-content/uploads/2010/07/all-in-one-seo-configuration-page-title.png" alt="All in One SEO Configuration Page Title" width="481" height="47" /></p>
<h2>The Fix</h2>
<p>Open the functions.php from the Twenty Ten (or your modified) theme directory. Go to line 262 (approx) and comment out the following line of code.</p>
<p><span style="font-family: monospace;">add_filter( &#8216;wp_title&#8217;, &#8216;twentyten_filter_wp_title&#8217;, 10, 2 );</span></p>
<p><span style="font-family: monospace;"><img class="aligncenter size-large wp-image-331" title="All in One SEO Twenty Ten Page Meta Title WordPress Fix" src="http://optimiseblog.co.uk/wp-content/uploads/2010/07/all-in-one-seo-twenty-ten-page-meta-title-wordpress-fix-550x156.png" alt="All in One SEO Twenty Ten Page Meta Title WordPress Fix" width="550" height="156" /></span></p>
<p><span style="font-family: monospace;">WordPress 3.0 is awesome!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://optimiseblog.co.uk/twenty-ten-theme-all-in-one-seo-pack-joined-no-space-issue/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

