<?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>Weblog Tools Collection &#187; wordpress upgrade</title>
	<atom:link href="http://weblogtoolscollection.com/archives/tag/wordpress-upgrade/feed/" rel="self" type="application/rss+xml" />
	<link>http://weblogtoolscollection.com</link>
	<description>Weblog Tools Blogging Tools Blog</description>
	<lastBuildDate>Mon, 13 Feb 2012 13:00:19 +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>WordPress, IIS and Plesk &#8220;Unable to find wp-content&#8221; Woes and Solution</title>
		<link>http://weblogtoolscollection.com/archives/2011/11/23/wordpress-iis-and-plesk-unable-to-find-wp-content-woes-and-solution/</link>
		<comments>http://weblogtoolscollection.com/archives/2011/11/23/wordpress-iis-and-plesk-unable-to-find-wp-content-woes-and-solution/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 23:15:15 +0000</pubDate>
		<dc:creator>Mark Ghosh</dc:creator>
				<category><![CDATA[HOW-TO]]></category>
		<category><![CDATA[WordPress FAQs]]></category>
		<category><![CDATA[WordPress Hack]]></category>
		<category><![CDATA[wordpress upgrade]]></category>
		<category><![CDATA[wp-content]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=10743</guid>
		<description><![CDATA[I tried to help a co-worker with a professional blog for a TV channel yesterday and ran into some weird issues. We host the blog on a Windows 2008 server with IIS and Plesk. The WordPress install from within the Plesk worked fine but ours did not. The &#8220;white screen of death&#8221; on the install screen was perplexing (more on that at the bottom of this article), but every time he tried to either upgrade WordPress or install or upgrade a plugin or theme, he would receive warnings or failures stating that WordPress was unable to find the wp-content directory. This warning can take various forms but circle around the fact that WordPress did not find the right directory in the expected place. The obvious and painless solution is to upload the files directly to the server using FTP and then control the blog from within wp-admin. In this case, [...]]]></description>
			<content:encoded><![CDATA[<p>I tried to help a co-worker with a professional blog for a TV channel yesterday and ran into some weird issues. We host the blog on a Windows 2008 server with IIS and Plesk. The WordPress install from within the Plesk worked fine but ours did not. The &#8220;white screen of death&#8221; on the install screen was perplexing (more on that at the bottom of this article), but every time he tried to either upgrade WordPress or install or upgrade a plugin or theme, he would receive warnings or failures stating that WordPress was unable to find the wp-content directory. This warning can take various forms but circle around the fact that WordPress did not find the right directory in the expected place.</p>
<p>The obvious and painless solution is to upload the files directly to the server using FTP and then control the blog from within wp-admin. In this case, though I knew the simple solution, I wanted to get to the root of the problem. It turns out that weird permission issues with IIS and WordPress and in some extreme cases such as mine, can be solved with simple but somewhat hidden features to get the desired results.</p>
<p>A Google search revealed that adding a few lines of code to the end of your wp-config.php can solve most issues. As from <a href="http://www.firdouss.com/2009/10/guide-solving-wordpress-update-issue-unable-to-locate-wordpress-plugin-directory/">Firdouss.com guide</a>, try this solution first. Open up your production wp-config.php, find the end of the file and add the following lines at the end. Then save the file, upload to your server and try the process again.</p>
<blockquote>
<pre>if(is_admin()) {
	add_filter('filesystem_method', create_function('$a', 'return "direct";' ));
	define( 'FS_CHMOD_DIR', 0751 );
}</pre>
</blockquote>
<p>If that does not solve your problem, you can use WordPress constants to solve your problem. It turns out (<a href="http://www.firdouss.com/2009/10/guide-solving-wordpress-update-issue-unable-to-locate-wordpress-plugin-directory/#comment-3374">thanks to a comment on the Firdouss.com guide</a>) that there are a <a href="http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants">host of constants</a> that can be added to wp-config that can fix broken upload and install/upgrade problems among other things. That link to the Codex contains a detailed explanation of the constants and what they should be set to. Please refer to that link since it will continue to be updated. In my case, I had to add the following to the end of my wp-config.php file. I could also have modified the above code to return ftpext instead.</p>
<blockquote>
<pre>define('FS_METHOD', 'ftpext');</pre>
</blockquote>
<p>Now in my case, there were other permission issues that had to be resolved. Our Plesk install had a borked permission system and in order for uploads to be deleted after they are unzipped and copied (WP need to switch to a move), I had to also CHMOD the files. So I ended up with the following code at the end of wp-config.</p>
<blockquote>
<pre>if(is_admin()) {
	add_filter('filesystem_method', create_function('$a', 'return "ftpext";' ));
	define( 'FS_CHMOD_DIR', 0755 );
}</pre>
</blockquote>
<p>Now the uploads/upgrades/installs work fine. YMMV.</p>
<p>As for the weird installation issue, it turns out that when I uploaded the WordPress install files on the server and visited the URI, I got redirected to the following along with a white screen of death with no errors.</p>
<p>http://example.com/index.php/wp-admin/install.php</p>
<p>I needed to change that URI manually to the following for the install to continue. That was all.</p>
<p>http://example.com/wp-admin/install.php</p>
<p>Do you have any other suggestions? Are there any tricks that have helped you get similar issues resolved?</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2011/11/23/wordpress-iis-and-plesk-unable-to-find-wp-content-woes-and-solution/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 2.9 Feature Focus Batch Plug-in Updates</title>
		<link>http://weblogtoolscollection.com/archives/2009/12/20/wordpress-2-9-feature-focus-batch-plug-in-updates/</link>
		<comments>http://weblogtoolscollection.com/archives/2009/12/20/wordpress-2-9-feature-focus-batch-plug-in-updates/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 15:24:01 +0000</pubDate>
		<dc:creator>Richard Hay</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[WordPress Tips]]></category>
		<category><![CDATA[WordPress WishList]]></category>
		<category><![CDATA[wordpress upgrade]]></category>
		<category><![CDATA[wordpress-plugin]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2009/12/20/wordpress-2-9-feature-focus-batch-plug-in-updates/</guid>
		<description><![CDATA[WordPress 2.9 (Carmen) has been officially released and has quite a few new features.&#160; Some are visible and right on the page while many others are under the hood.&#160; One of the features that I really like is the ability to bulk update my plug-ins.&#160; In previous versions of WordPress you had to update each plug-in individually by clicking on the automatic upgrade link in the WordPress plug-in, entering your FTP credentials and then waiting for the update to happen. If you had a lot of plug-ins this process could take a while to do. To utilize the new bulk update process go to the Tools&#62;Upgrade menu in the admin panel:&#160; &#160; There you will find a screen that looks something like this&#34;: Select the check boxes for all the plug-ins you want to update and then press the Upgrade Plug-in button at the bottom and you will then be [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.9 (Carmen) has been officially released and has quite a few new features.&#160; Some are visible and right on the page while many others are under the hood.&#160; </p>
<p>One of the features that I really like is the ability to bulk update my plug-ins.&#160; In previous versions of WordPress you had to update each plug-in individually by clicking on the automatic upgrade link in the WordPress plug-in, entering your FTP credentials and then waiting for the update to happen. If you had a lot of plug-ins this process could take a while to do.</p>
<p>To utilize the new bulk update process go to the Tools&gt;Upgrade menu in the admin panel:&#160; </p>
<p><a href="http://weblogtoolscollection.com/wp-content/uploads/2009/12/wordpress29toolsupgrademenuitem.png" rel="thumbnail"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="wordpress29toolsupgrademenuitem" border="0" alt="wordpress29toolsupgrademenuitem" src="http://weblogtoolscollection.com/wp-content/uploads/2009/12/wordpress29toolsupgrademenuitem_thumb.png" width="151" height="244" /></a>&#160;</p>
<p>There you will find a screen that looks something like this&quot;:</p>
<p><a href="http://weblogtoolscollection.com/wp-content/uploads/2009/12/wordpress29bulkupgradeplugins.png" rel="thumbnail"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="wordpress29bulkupgradeplugins" border="0" alt="wordpress29bulkupgradeplugins" src="http://weblogtoolscollection.com/wp-content/uploads/2009/12/wordpress29bulkupgradeplugins_thumb.png" width="280" height="145" /></a> </p>
<p>Select the check boxes for all the plug-ins you want to update and then press the Upgrade Plug-in button at the bottom and you will then be taken to a dialog box your familiar with to provide your FTP credentials. Once you have plugged those in the upgrade process will happen and once it is done you will be presented with this results page:</p>
<p><a href="http://weblogtoolscollection.com/wp-content/uploads/2009/12/wordpress29bulkupgradepluginsresults.png" rel="thumbnail"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="wordpress29bulkupgradepluginsresults" border="0" alt="wordpress29bulkupgradepluginsresults" src="http://weblogtoolscollection.com/wp-content/uploads/2009/12/wordpress29bulkupgradepluginsresults_thumb.png" width="244" height="163" /></a> </p>
<p>That is it for the process.&#160; The only change I would recommend in a future update to WordPress is to place a link for this functionality on the actual plug-in admin page – maybe in the bulk action drop down menu.&#160; From what I could see this bulk update option is only available on the main upgrade page.</p>
<p>So what is your favorite new feature of WordPress 2.9?</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2009/12/20/wordpress-2-9-feature-focus-batch-plug-in-updates/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Fare Thee Well WordPress 2.0</title>
		<link>http://weblogtoolscollection.com/archives/2009/08/02/fare-thee-well-wordpress-2-0/</link>
		<comments>http://weblogtoolscollection.com/archives/2009/08/02/fare-thee-well-wordpress-2-0/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 12:31:40 +0000</pubDate>
		<dc:creator>Richard Hay</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Security]]></category>
		<category><![CDATA[wordpress upgrade]]></category>
		<category><![CDATA[wordpress_2_0]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2009/08/02/fare-thee-well-wordpress-2-0/</guid>
		<description><![CDATA[Mark Jaquith recently posted over at the WordPress.org blog that the&#160; WordPress 2.0.x Legacy Branch is Deprecated – in other words retired and no longer supported for the most important aspect – security updates. It had gotten a little long in the tooth as it was published back in late December 2005. However, WordPress 2.0 was revolutionary in many ways.&#160; Think back to WordPress 2.0 and how that changed WordPress as we knew it at the time. Some of those changes we now take for granted included: Completely Redesigned Backend Included Spam and Backup Plugins Inline Uploading Faster Posting Post Preview User Roles labelled Header Customization WordPress 2.0 certainly set us on the path to the WordPress we know and love today.&#160; Congratulations 2.0 on a terrific service life – rest in peace “Duke”. Time For An Upgrade? What does this mean for you as an individual blogger, website developer [...]]]></description>
			<content:encoded><![CDATA[<p>Mark Jaquith recently posted over at the WordPress.org blog that the&#160; <a title="The WordPress 2.0.x Legacy Branch is Deprecated" href="http://wordpress.org/development/2009/07/the-wordpress-2-0-x-legacy-branch-is-deprecated/">WordPress 2.0.x Legacy Branch is Deprecated</a> – in other words retired and no longer supported for the most important aspect – security updates. It had gotten a little long in the tooth as it was published back in late December 2005.</p>
<p>However, WordPress 2.0 was revolutionary in many ways.&#160; Think back to WordPress 2.0 and how that changed WordPress as we knew it at the time. Some of those changes we now take for granted included:</p>
<ul>
<li>Completely Redesigned Backend</li>
<li>Included Spam and Backup Plugins</li>
<li>Inline Uploading</li>
<li>Faster Posting</li>
<li>Post Preview</li>
<li>User Roles labelled</li>
<li>Header Customization</li>
</ul>
<p>WordPress 2.0 certainly set us on the path to the WordPress we know and love today.&#160; Congratulations 2.0 on a terrific service life – rest in peace “Duke”.</p>
<p><strong><u>Time For An Upgrade?</u></strong></p>
<p>What does this mean for you as an individual blogger, website developer or site admin?&#160; Well the first thing it means in my opinion is that you should get upgraded to the latest and greatest version of WordPress which is version 2.8.2 and was mentioned on this site about two weeks ago by Keith &#8211; <a title="Permanent Link to WordPress 2.8.2 Security Update" href="http://weblogtoolscollection.com/archives/2009/07/20/wordpress-2-8-2-security-update/">WordPress 2.8.2 Security Update</a>.</p>
<p>Although it was published to fix a XSS vulnerability it has been out in the blogosphere for long enough to reveal any issues with the fix.&#160; In fact for me it fixed an issue of posts not being published when they are scheduled ahead of time.&#160; Plus I am a geek and like all my stuff to be the most up to date they can be <img src='http://weblogtoolscollection.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>What about you though? Have you updated to the latest version of WordPress? Have you made the jump to version 2.8 at least?&#160; What keeps you from making that leap to the latest version of WordPress?</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2009/08/02/fare-thee-well-wordpress-2-0/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8.1 now available</title>
		<link>http://weblogtoolscollection.com/archives/2009/07/09/wordpress-281-now-available/</link>
		<comments>http://weblogtoolscollection.com/archives/2009/07/09/wordpress-281-now-available/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 22:38:01 +0000</pubDate>
		<dc:creator>Mark Ghosh</dc:creator>
				<category><![CDATA[Blogging News]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress 2.8.1]]></category>
		<category><![CDATA[wordpress upgrade]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=6206</guid>
		<description><![CDATA[WordPress 2.8.1 is now available for download or upgrade according to the WordPress Development Blog. This release includes a bunch of bug fixes and security updates, including an important one that affects a few plugins (details here). The update highlights are listed on the dev blog post and all the changes since 2.8 are on the Trac. I don&#8217;t see the upgrade bar on this blog yet, but it should be soon. Since 2.8.1 is now released, I wish Dev4Press would redo their benchmarks.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2009/07/wordpress-2-8-1/">WordPress 2.8.1 is now available for download or upgrade according to the WordPress Development Blog</a>. This release includes a bunch of <a href="http://core.trac.wordpress.org/query?status=closed&amp;group=resolution&amp;order=priority&amp;milestone=2.8.1&amp;resolution=fixed">bug fixes</a> and security updates, including an important one that affects <em>a few</em> plugins (details <a href="http://corelabs.coresecurity.com/index.php?module=FrontEndMod&amp;action=list&amp;type=advisory">here</a>). The update highlights are listed on the dev blog post and <a href="http://core.trac.wordpress.org/log/branches/2.8/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=11699&amp;stop_rev=11553&amp;limit=500">all the changes since 2.8 are on the Trac</a>. I don&#8217;t see the upgrade bar on this blog yet, but it should be soon. Since 2.8.1 is now released, I wish Dev4Press would redo <a href="http://www.dev4press.com/2009/06/29/benchmarking-wordpress/">their benchmarks</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2009/07/09/wordpress-281-now-available/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6.2 Released</title>
		<link>http://weblogtoolscollection.com/archives/2008/09/09/wordpress-262-released/</link>
		<comments>http://weblogtoolscollection.com/archives/2008/09/09/wordpress-262-released/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 04:03:00 +0000</pubDate>
		<dc:creator>Mark Ghosh</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Security]]></category>
		<category><![CDATA[mt_rand]]></category>
		<category><![CDATA[sql column truncation]]></category>
		<category><![CDATA[wordpress 2.6.2]]></category>
		<category><![CDATA[wordpress upgrade]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=4115</guid>
		<description><![CDATA[WordPress 2.6.2.: This release is in response to a recent warning to developers from Stefan Esser about the dangers of SQL Column Truncation and weaknesses of mt_rand(). The issue at hand that forced the release is discussed in detail on the WordPress.org blog post linked above. Basically the attack is complex, is dependent on open registration being turned on in your blog, but can be executed in theory and turns out to be more of an annoyance than an actual exploit. If you have open registration on your blog, the WordPress.org team recommends that you upgrade your install to WordPress 2.6.2 A handful of other fixes are also included in this upgrade. Here is a list of changed files.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2008/09/wordpress-262/">WordPress 2.6.2</a>.: This release is in response to a <a href="http://blogs.zdnet.com/security/?p=1868">recent warning to developers</a> from <a href="http://www.suspekt.org/">Stefan Esser</a> about the dangers of <a href="http://www.suspekt.org/2008/08/18/mysql-and-sql-column-truncation-vulnerabilities/">SQL Column Truncation</a> and <a href="http://www.suspekt.org/2008/08/17/mt_srand-and-not-so-random-numbers/">weaknesses of mt_rand()</a>. The issue at hand that forced the release is discussed in detail on the WordPress.org blog post linked above. Basically the attack is complex, is dependent on open registration being turned on in your blog, but can be executed in theory and turns out to be more of an annoyance than an actual exploit.</p>
<p>If you have open registration on your blog, the WordPress.org team recommends that you upgrade your install to <a href="http://wordpress.org/download/">WordPress 2.6.2</a> A <a href="http://trac.wordpress.org/query?status=closed&amp;milestone=2.6.2&amp;resolution=fixed&amp;order=priority">handful of other fixes</a> are also included in this upgrade. Here is a list of <a href="http://trac.wordpress.org/changeset?old_path=tags%2F2.6.1&amp;old=8849&amp;new_path=tags%2F2.6.2&amp;new=8849">changed files</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2008/09/09/wordpress-262-released/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  weblogtoolscollection.com/archives/tag/wordpress-upgrade/feed/ ) in 1.12023 seconds, on Feb 14th, 2012 at 10:37 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 14th, 2012 at 11:37 am UTC -->
