<?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>WP Engineer &#187; update</title>
	<atom:link href="http://wpengineer.com/tag/update/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpengineer.com</link>
	<description>WordPress News, Hacks, Tips, Tutorials, Plugins and Themes</description>
	<lastBuildDate>Mon, 21 May 2012 22:48:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Publish Your Posts Later On Your Website</title>
		<link>http://wpengineer.com/2235/publish-your-posts-later-on-your-website/</link>
		<comments>http://wpengineer.com/2235/publish-your-posts-later-on-your-website/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 10:37:57 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://wpengineer.com/?p=2235</guid>
		<description><![CDATA[I explained quite a while ago about publishing a feed with a certain delay. Of course you can do this also for your frontend. Thus, the content will be published to the reader only after a certain period of time. A little script as an example will show you how. The function can be expanded, [...]]]></description>
			<content:encoded><![CDATA[<p>I <a title="Publish The Feed Later" href="http://wpengineer.com/320/publish-the-feed-later/">explained</a> quite a while ago about publishing a feed with a certain delay. Of course you can do this also for your frontend. Thus, the content will be published to the reader only after a certain period of time. A little script as an example will show you how.<br />
<span id="more-2235"></span></p>
<p>The function can be expanded, for example, with queries on rights of the logged users or various other requirements.</p>
<p>In the first snippet the output on the frontend is always filtered, only your backend <code>is_admin()</code> and your feed <code>is_feed()</code> keeps untouched. The filter is placed in the example at 15 minutes and these are aligned with the setting of WordPress, so that the time zone will be considered. The 15 minutes will be converted into seconds and subtracted from the value.</p>
<pre>&lt;code&gt;
function publish_later_on_frontend( $where ) {

	if ( is_admin() || is_preview() || is_feed() )
		return $where;

	$offset =  15; // minutes
	$offset = ( get_option( &#039;gmt_offset&#039; ) * 3600 ) - ( $offset * 60 ); // gmt offset of WP options minus custom time
	$where .= &quot; AND post_date &lt; &#039;&quot; . gmdate( &#039;Y-m-d H:i:s&#039;, ( time() + $offset ) ) . &quot;&#039;&quot;;

	return $where;
}
add_filter( &#039;posts_where&#039;, &#039;publish_later_on_frontend&#039; );
&lt;/code&gt;</pre>
<p>Another brief example will allow all users logged, with minimum rights to read  <code>current_user_can('read')</code> - so subscribers, to read the contents. All other visitors will get the content presented 10 days later.</p>
<pre>&lt;code&gt;
function publish_later_on_frontend( $where ) {

	if ( is_admin() || is_preview() || is_feed() || current_user_can(&#039;read&#039;) )
		return $where;

	$offset =  10; // days
	$offset = ( get_option( &#039;gmt_offset&#039; ) * 3600 ) - ( $offset * 24 * 60 * 60 ); // gmt offset of WP options minus custom time
	$where .= &quot; AND post_date &lt; &#039;&quot; . gmdate( &#039;Y-m-d H:i:s&#039;, ( time() + $offset ) ) . &quot;&#039;&quot;;

	return $where;
}
add_filter( &#039;posts_where&#039;, &#039;publish_later_on_frontend&#039; );
&lt;/code&gt;</pre>
<p>Alternatives with SQL-Statement:</p>
<pre>
// with INTERVAL
$where .= &quot; AND post_date &lt; NOW() - INTERVAL 5 MINUTE&quot;; // DAY, HOUR

// with strtotime()
$where .= &quot; AND post_date &lt; FROM_UNIXTIME(&quot; . strtotime(&quot;-5 day&quot;). &quot;)&quot;;
</pre>
<p>Well - any other ideas? Then let us know in our comment area. I'm happy to see any improvements to the code, especially in the area of calculation with time.<br />
<hr /><a href="http://wpplugins.com/plugin/281/snippets" title="More informations about this plugin for WordPress"><img src="http://wpengineer.com/wp-content/themes/wpe-3/images/snippets-125-125.png" height="90" alt="WordPress Snippet Plugin" /></a> <a href="http://xtreme-theme.com"><img src="http://wpengineer.com/wp-content/uploads/feed-banner-2.jpg" alt="Xtreme One WordPress Framework"/></a><br />
&copy; <a href="http://wpengineer.com/">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpengineer.com/2235/publish-your-posts-later-on-your-website/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Batch Plugin-Update in WordPress 2.9</title>
		<link>http://wpengineer.com/1766/batch-plugin-update-in-wordpress-2-9/</link>
		<comments>http://wpengineer.com/1766/batch-plugin-update-in-wordpress-2-9/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 10:58:37 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp2.9]]></category>

		<guid isPermaLink="false">http://wpengineer.com/?p=1766</guid>
		<description><![CDATA[In the past we have already informed you a little bit about the new features of the upcoming 2.9 version of WordPress - the development does not stop and the next version has many minor changes. Improvements in security, administration. WordPress 2.9 will have the possibility to update all your Plugins, which have an update [...]]]></description>
			<content:encoded><![CDATA[<p>In the past we have already informed you a little bit about the new features of the upcoming 2.9 version of WordPress - the development does not stop and the next version has many minor changes. Improvements in security, administration.</p>
<p>WordPress 2.9 will have the possibility to update all your Plugins, which have an update available, in one step.<br />
That makes maintenance work with customer's and on your own blog more simple and faster. As a little insight, here is a screenshot of the current beta.</p>
<p><a href="http://wpengineer.com/wp-content/uploads/plugin-update-29.png"><img src="http://wpengineer.com/wp-content/uploads/plugin-update-29-300x291.png" alt="plugin-update-29" title="plugin-update-29" width="300" height="291" class="aligncenter size-medium wp-image-1767" /></a><br />
<hr /><a href="http://wpplugins.com/plugin/281/snippets" title="More informations about this plugin for WordPress"><img src="http://wpengineer.com/wp-content/themes/wpe-3/images/snippets-125-125.png" height="90" alt="WordPress Snippet Plugin" /></a> <a href="http://xtreme-theme.com"><img src="http://wpengineer.com/wp-content/uploads/feed-banner-2.jpg" alt="Xtreme One WordPress Framework"/></a><br />
&copy; <a href="http://wpengineer.com/">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpengineer.com/1766/batch-plugin-update-in-wordpress-2-9/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Caution When Updating To WordPress 2.8</title>
		<link>http://wpengineer.com/1330/caution-when-updating-to-wordpress-2-8/</link>
		<comments>http://wpengineer.com/1330/caution-when-updating-to-wordpress-2-8/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 14:35:16 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[Installation Problem]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpengineer.com/?p=1330</guid>
		<description><![CDATA[Thanks to Heiko of WordPress Deutschland and Code Styling Project who brought up the problem on WordPress Deutschland: Users reporting me, that they are missing files, after they automatically updated to WordPress version 2.8 and there were a problem while updating. I checked out the WordPress Trac and found a brand new record, which confirms [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to Heiko of <a href="http://blog.wordpress-deutschland.org">WordPress Deutschland</a> and <a href="http://www.code-styling.de/english">Code Styling Project</a> who brought up the problem on <a href="http://blog.wordpress-deutschland.org/2009/06/15/warnhinweise-zum-update-auf-wordpress-28.html">WordPress Deutschland</a>:</p>
<p>Users reporting me, that they are missing files, after they automatically updated to WordPress version 2.8 and there were a problem while updating. I checked out the WordPress Trac and found a brand new record, which confirms this: <a href="http://core.trac.wordpress.org/ticket/10140">Trac ticket # 10140</a> </p>
<h4>What happened and what are the conditions? </h4>
<p>On one hand, the upgrade process has to be so far that the files were downloaded and unpacked. If anything goes wrong after these steps (wrong write permissions, etc.), the upgrade process makes a rollback and usually clears the downloaded files without any problems. </p>
<p>So much for theory. The practice shows, however, in exactly this case, because of a bug, previous existing installation files accidentally get deleted too, so the blog will no longer work! </p>
<h4>What to do if already happened? </h4>
<p>The best thing to do is to upload the old version completely via FTP. If the files are no longer available, you may download the old version from the <a href="http://wordpress.org/download/release-archive/">archives of WordPress.org</a>.<br />
You should also verify if the wp-config.php needs to be adjusted, because this may also be deleted. </p>
<h4>What lesson did we learn? </h4>
<p>It’s not just a phrase, when we repeatedly emphasize, before you upgrade: </p>
<p>    1. Create a current backup of the database<br />
    2. Create a current backup of all files on your web server. </p>
<p>As convenient as an automatic update can be, there is always a risk. If the web server is configured properly and is maintained well, there shouldn’t a problem arise. But the most users do not know or want to know if that’s the case. Therefore, the safest way is still to upload the new version via FTP.<br />
Anyone who knows how everything has to be configured, I mean the pros among you, will surely continue to use the automatic upgrade. </p>
<h4>What’s next? </h4>
<p>This problem will be fixed, according to WordPress Trac entry, with version 2.8.1, and automatic upgrade will work again without any problems. But we think it is very important that the WordPress-Team let the users know about the problem and not just fix it in version 2.8.1 and be quiet about it. It will avoid a lot frustration!</p>
<p> But please don’t forget about your backups again, when you use 2.8.1 or future versions. It’s better “I have” than “if I would have”.</p>
<p>We still hope that you all continue to enjoy WordPress as we do, and we will continue to do our best to contribute you as quickly as possible with new information.<br />
<hr /><a href="http://wpplugins.com/plugin/281/snippets" title="More informations about this plugin for WordPress"><img src="http://wpengineer.com/wp-content/themes/wpe-3/images/snippets-125-125.png" height="90" alt="WordPress Snippet Plugin" /></a> <a href="http://xtreme-theme.com"><img src="http://wpengineer.com/wp-content/uploads/feed-banner-2.jpg" alt="Xtreme One WordPress Framework"/></a><br />
&copy; <a href="http://wpengineer.com/">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpengineer.com/1330/caution-when-updating-to-wordpress-2-8/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Update Informations Only for Admins</title>
		<link>http://wpengineer.com/516/update-informations-only-for-admins/</link>
		<comments>http://wpengineer.com/516/update-informations-only-for-admins/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 13:00:52 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>

		<guid isPermaLink="false">http://wpengineer.com/?p=516</guid>
		<description><![CDATA[If you only want to let users, who are privileged to receive information about updates and plugins, you should copy the following code to your functions.php of your theme. These users have to have the right "edit plugin" (edit_plugins) to receive updates. Alternative: use the plugin Secure WordPress, the plugin has inside the function to [...]]]></description>
			<content:encoded><![CDATA[<p>If you only want to let users, who are privileged to receive information about updates and plugins, you should copy the following code to your <code>functions.php</code> of your theme. These users have to have the right "edit plugin" (<code>edit_plugins</code>) to receive updates.</p>
<p><em>Alternative:</em> use the plugin <a href="http://bueltge.de/wordpress-login-sicherheit-plugin/652/">Secure WordPress</a>, the plugin has inside the function to active this possibility.</p>
<pre lang="php">
/**
 * remove core-Update-Information
 * @rights: http://codex.wordpress.org/Roles_and_Capabilities
 */
if ( !current_user_can( &#039;edit_plugins&#039; ) ) {
	// core update
	add_action( &#039;init&#039;, create_function( &#039;$a&#039;, &quot;remove_action( &#039;init&#039;, &#039;wp_version_check&#039; );&quot; ) );
	add_filter( &#039;pre_option_update_core&#039;, create_function( &#039;$a&#039;, &quot;return null;&quot; ) );
	// plugin update
	add_action( &#039;admin_menu&#039;, create_function( &#039;$a&#039;, &quot;remove_action( &#039;load-plugins.php&#039;, &#039;wp_update_plugins&#039; );&quot; ) );
	add_action( &#039;admin_init&#039;, create_function( &#039;$a&#039;, &quot;remove_action( &#039;admin_init&#039;, &#039;wp_update_plugins&#039; );&quot; ), 2 );
	add_action( &#039;init&#039;, create_function( &#039;$a&#039;, &quot;remove_action( &#039;init&#039;, &#039;wp_update_plugins&#039; );&quot; ), 2 );
	add_filter( &#039;pre_option_update_plugins&#039;, create_function( &#039;$a&#039;, &quot;return null;&quot; ) );
}
</pre>
<hr /><a href="http://wpplugins.com/plugin/281/snippets" title="More informations about this plugin for WordPress"><img src="http://wpengineer.com/wp-content/themes/wpe-3/images/snippets-125-125.png" height="90" alt="WordPress Snippet Plugin" /></a> <a href="http://xtreme-theme.com"><img src="http://wpengineer.com/wp-content/uploads/feed-banner-2.jpg" alt="Xtreme One WordPress Framework"/></a><br />
&copy; <a href="http://wpengineer.com/">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpengineer.com/516/update-informations-only-for-admins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress FTP Data With Constant</title>
		<link>http://wpengineer.com/289/wordpress-ftp-data-with-constant/</link>
		<comments>http://wpengineer.com/289/wordpress-ftp-data-with-constant/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 10:04:25 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>

		<guid isPermaLink="false">http://wpengineer.com/?p=289</guid>
		<description><![CDATA[Since version 2.5 it's possible to update your Plugins automatically. It's necessary to input your FTP information before you update your Plugin. It is very popular and an easy process, but I like to upload the newest version via my FTP client. How sure is the use of your FTP login information in your WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>Since version 2.5 it's possible to update your Plugins automatically. It's necessary to input your FTP information before you update your Plugin.</p>
<p>It is very popular and an easy process, but I like to upload the newest version via my FTP client. How sure is the use of your FTP login information in your WordPress Admin? If you like to use another way, you can just put a definition of constants in your <code>wp-config.php</code>.<span id="more-289"></span></p>
<pre lang="php">
define(&#039;FTP_HOST&#039;, &#039;ftp://example.de/&#039;);
define(&#039;FTP_USER&#039;, &#039;example_username&#039;);
define(&#039;FTP_PASS&#039;, &#039;example_passwort&#039;);
define(&#039;FTP_SSL&#039;, false); //TRUE for SLL-connection
</pre>
<p>Otherwise you will have the data after the first use in table <code>options</code>, in field <code>ftp_credentials</code>. If you don't want to use them, you can delete them directly. That's possible either via mySQL-Tool, like phpMyAdmin, or in WordPress, if you open the preferences in table <code>options</code>, just use the admin address of your blog and add <code>options.php</code> (Bsp.: <code>http://example.com/wp-admin/options.php</code>).<br />
<hr /><a href="http://wpplugins.com/plugin/281/snippets" title="More informations about this plugin for WordPress"><img src="http://wpengineer.com/wp-content/themes/wpe-3/images/snippets-125-125.png" height="90" alt="WordPress Snippet Plugin" /></a> <a href="http://xtreme-theme.com"><img src="http://wpengineer.com/wp-content/uploads/feed-banner-2.jpg" alt="Xtreme One WordPress Framework"/></a><br />
&copy; <a href="http://wpengineer.com/">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpengineer.com/289/wordpress-ftp-data-with-constant/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How Core Update in WordPress 2.7 Works?</title>
		<link>http://wpengineer.com/227/how-core-update-in-wordpress-27-works/</link>
		<comments>http://wpengineer.com/227/how-core-update-in-wordpress-27-works/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 17:57:27 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp2.7]]></category>

		<guid isPermaLink="false">http://wpengineer.com/?p=227</guid>
		<description><![CDATA[In recent days, there are more and more information about WordPress version 2.7 coming up. Especially about the automatic upgrade of WordPress. You already know the update function for Plugins, which is very convenient. Now the same for your WordPress installation, one click and you are up to date. Such a powerful and important function [...]]]></description>
			<content:encoded><![CDATA[<p>In recent days, there are more and more information about WordPress version 2.7 coming up. Especially about the automatic upgrade of WordPress.</p>
<p>You already know the update function for Plugins, which is very convenient. Now the same for your WordPress installation, one click and you are up to date.</p>
<p>Such a powerful and important function comes along with some questions and doubts of course.</p>
<p><div id="attachment_221" class="wp-caption aligncenter" style="width: 460px"><img src="http://wpengineer.com/wp-content/uploads/wp27_core_update.png" alt="WordPress 2.7 Core Update" title="wp27_core_update" width="450" height="260" class="size-full wp-image-221" /><p class="wp-caption-text">WordPress 2.7 Core Update</p></div></p>
<p>It's your own decision if you want to trust this function, but it's more secure than the automatic update for Plugins, since the Plugins are provided by different authors without control by the WordPress team. The process of the automatic WordPress update is well thought out, which I will explain, so you can get a better picture of it and it makes your decision easier for you if you want to use it or you still update manually.<br />
<span id="more-227"></span></p>
<ul>
<li>Your installation sends version and localization to <a href="http://api.wordpress.org/core/version-check/1.2/">http://api.wordpress.org/core/version-check/1.2/</a> and proofs if there is a newer version available. If there is a newer version, it sends back an address to the new available version. It also sends it in the correct language of your current installation. But right now, there is only the English version.</li>
<li>If there is a newer version, the files will be downloaded in system-temp.</li>
<li>Afterwards it creates a folder <code>wp-content/upgrade/core</code></li>
<li>Now the file <code>wp-admin/includes/update-core.php</code> will be copied from the new download package into the current installation.</li>
<li>This new file will be used to start the function <code>update_core()</code>.</li>
<li>The new version will be proved.</li>
<li>A file will be created in root for the maintain modus (<code>.maintenance</code> file). The file <code>wp-settings.php</code> checks that and avoid any access if this file exists. The visitor will just see a simple HTML page with a short message:<br />
<blockquote><p>Briefly unavailable for scheduled maintenance. Check back in a minute.</p></blockquote>
</li>
<li>Because of this maintain modus no one can access any files and now all files are getting copied from the installation package to the current installation.</li>
<li>All unneeded files are going to be deleted.</li>
<li><code>ugrade.php</code> contains the information, that the database can be upgraded now. You have to confirm the database update, so it is only possible after all new files are copied to the current installation.</li>
<li><code>wp-content/upgrade/core</code> will be deleted after a successful update.</li>
<li>The same with <code>.maintenance</code>.</li>
<li>After that the frontend is available again and all upgrade steps are listed in your admin area. Where you can see where a problem occurred if your upgrade wasn't successful.</li>
</ul>
<hr /><a href="http://wpplugins.com/plugin/281/snippets" title="More informations about this plugin for WordPress"><img src="http://wpengineer.com/wp-content/themes/wpe-3/images/snippets-125-125.png" height="90" alt="WordPress Snippet Plugin" /></a> <a href="http://xtreme-theme.com"><img src="http://wpengineer.com/wp-content/uploads/feed-banner-2.jpg" alt="Xtreme One WordPress Framework"/></a><br />
&copy; <a href="http://wpengineer.com/">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpengineer.com/227/how-core-update-in-wordpress-27-works/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 Update Core</title>
		<link>http://wpengineer.com/220/wordpress-27-update-core/</link>
		<comments>http://wpengineer.com/220/wordpress-27-update-core/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 23:51:34 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[core]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[wp2.7]]></category>

		<guid isPermaLink="false">http://wpengineer.com/?p=220</guid>
		<description><![CDATA[The current development version with the core update is available now. Everybody can test it, the development team ask for your feedback. Everybody who doesn't want to check the SVN might be interested in this screenshot. This function amazed by it's simplicity, click, lean back and relax - done! It's still in Beta and I'm [...]]]></description>
			<content:encoded><![CDATA[<p>The current development version with the core update is available now. Everybody can test it, the development team ask for your feedback. Everybody who doesn't want to check the SVN might be interested in this screenshot.</p>
<p><div id="attachment_221" class="wp-caption aligncenter" style="width: 460px"><img src="http://wpengineer.com/wp-content/uploads/wp27_core_update.png" alt="WordPress 2.7 Core Update" title="wp27_core_update" width="450" height="260" class="size-full wp-image-221" /><p class="wp-caption-text">WordPress 2.7 Core Update</p></div></p>
<p>This function amazed by it's simplicity, click, lean back and relax - done! <span id="more-220"></span><br />
It's still in Beta and I'm sure many people will talk about the functionality, but that was a popular desire of the WordPress community. Will see if the endless discussion about the upgrade cycles will end or still continue.</p>
<p>Alternative you can still download the current version and install manually like always . Additional WordPress has to offer an own backup system. This saves the use of other Plugins and an upgrade including a backup is fast and simple. The backup creates a XML-File in WordPress format (WordPress WXR), which you can easily import again. It was greatly appreciated in WP-Hacker forum that you can find this function under tools.<br />
<hr /><a href="http://wpplugins.com/plugin/281/snippets" title="More informations about this plugin for WordPress"><img src="http://wpengineer.com/wp-content/themes/wpe-3/images/snippets-125-125.png" height="90" alt="WordPress Snippet Plugin" /></a> <a href="http://xtreme-theme.com"><img src="http://wpengineer.com/wp-content/uploads/feed-banner-2.jpg" alt="Xtreme One WordPress Framework"/></a><br />
&copy; <a href="http://wpengineer.com/">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpengineer.com/220/wordpress-27-update-core/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

