<?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>Junk Coder &#187; wordpress</title>
	<atom:link href="http://junkcoder.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://junkcoder.com</link>
	<description>Random stuff about life and technology</description>
	<lastBuildDate>Tue, 06 Jul 2010 19:24:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AJAX Thumbnail Rebuild plugin for Wordpress</title>
		<link>http://junkcoder.com/2009/10/10/ajax-thumbnail-rebuild-plugin-for-wordpress/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://junkcoder.com/2009/10/10/ajax-thumbnail-rebuild-plugin-for-wordpress/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 08:59:04 +0000</pubDate>
		<dc:creator>junkcoder</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rebuild]]></category>
		<category><![CDATA[thumbnail]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://junkcoder.com/?p=58</guid>
		<description><![CDATA[This Wordpress plugin allows you to rebuild all thumbnails on your site. There are already some plugins available for this, but they have one thing in common: All thumbnails are rebuilt in a single step. This works fine when you don&#8217;t have that many photos on your site. When you have a lot of full-size [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-46" src="http://junkcoder.com/wp-content/uploads/ajax-thumbnail-rebuild.jpg" alt="ajax-thumbnail-rebuild" width="572" height="282" />This Wordpress plugin allows you to rebuild all thumbnails on your site. There are already some plugins available for this, but they have one thing in common: All thumbnails are rebuilt in a single step. This works fine when you don&#8217;t have that many photos on your site. When you have a lot of full-size photos, the script on the server side takes a long time to run. Unfortunately the time a script is allowed to run is limited, which sets an upper limit to the number of thumbnails you can regenerate. This number depends on the server configuration and the computing power your server has available. When you get over this limit, you won&#8217;t be able to rebuild your thumbnails.</p>
<p>Why would you want to rebuild your thumbnails? Wordpress allows you to change the size of thumbnails. This way, you can make the size of thumbnails fit the design of your website. When you change the size to fit for a new theme, all future photos you are going to upload will have this new size. Your old thumbnails won&#8217;t be resized. That&#8217;s where this plugin comes into action. After changing the image sizes, you can rebuild all thumbnails. But instead of telling the server to  recreate all thumbnails at once, they are rebuilt one after another. Rebuilding thumbnails for one photo won&#8217;t take all too long, so you won&#8217;t run into any script timeouts. Note that you still have to wait until all thumbnails have been rebuilt. If you close the page before the task is completed, you have to start all over again.</p>
<p>You can download the plugin on it&#8217;s <a href="http://junkcoder.com/ajax-thumbnail-rebuild/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed">homepage</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://junkcoder.com/2009/10/10/ajax-thumbnail-rebuild-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress MU: This file is too big. Files must be less than 1500 Kb in size</title>
		<link>http://junkcoder.com/2009/10/06/wordpress-mu-this-file-is-too-big-files-must-be-less-than-1500-kb-in-size/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://junkcoder.com/2009/10/06/wordpress-mu-this-file-is-too-big-files-must-be-less-than-1500-kb-in-size/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 18:06:55 +0000</pubDate>
		<dc:creator>junkcoder</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mu]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://junkcoder.com/?p=29</guid>
		<description><![CDATA[


If you get the error above when you upload a file to a Wordpress MU blog, you need to change the maximum allowed upload file size. You can find this setting under &#8220;Site Admin &#8230; Options &#8230; Max upload file size&#8221;.
Unfortunately there is no option to change this value for existings blogs, but you can [...]]]></description>
			<content:encoded><![CDATA[<p>If you get the error above when you upload a file to a Wordpress MU blog, you need to change the maximum allowed upload file size. You can find this setting under &#8220;Site Admin &#8230; Options &#8230; Max upload file size&#8221;.</p>
<p>Unfortunately there is no option to change this value for existings blogs, but you can you change it directly in the database:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`#YOURDATABASENAME#`</span><span style="color: #66cc66;">.</span><span style="color: #ff0000;">`wp_sitemeta`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`meta_value`</span> <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'32000'</span>
 <span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`wp_sitemeta`</span><span style="color: #66cc66;">.</span><span style="color: #ff0000;">`meta_value`</span> <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">1500</span><span style="color: #66cc66;">&#41;</span>
 <span style="color: #993333; font-weight: bold;">AND</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`wp_sitemeta`</span><span style="color: #66cc66;">.</span><span style="color: #ff0000;">`meta_key`</span> <span style="color: #993333; font-weight: bold;">LIKE</span> <span style="color: #ff0000;">&quot;fileupload_maxk&quot;</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://junkcoder.com/2009/10/06/wordpress-mu-this-file-is-too-big-files-must-be-less-than-1500-kb-in-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
