<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: WordPress Versioning Plugin v1.0 Beta</title>
	<atom:link href="http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/feed/" rel="self" type="application/rss+xml" />
	<link>http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/</link>
	<description></description>
	<lastBuildDate>Thu, 10 Nov 2011 23:20:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Scott CArle</title>
		<link>http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-108</link>
		<dc:creator>Scott CArle</dc:creator>
		<pubDate>Tue, 27 Feb 2007 14:11:29 +0000</pubDate>
		<guid isPermaLink="false">http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-108</guid>
		<description>found an update to your plugin that works with 2.1 at this website here
This would be a nice plugin for someone to maintain and extend.

http://benjismith.net/index.php/2006/08/04/wordpress-plugin-versioning/</description>
		<content:encoded><![CDATA[<p>found an update to your plugin that works with 2.1 at this website here<br />
This would be a nice plugin for someone to maintain and extend.</p>
<p><a href="http://benjismith.net/index.php/2006/08/04/wordpress-plugin-versioning/" rel="nofollow">http://benjismith.net/index.php/2006/08/04/wordpress-plugin-versioning/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: felixm</title>
		<link>http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-106</link>
		<dc:creator>felixm</dc:creator>
		<pubDate>Wed, 21 Jun 2006 02:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-106</guid>
		<description>i had to edit the following lines to make it work:

file: block_roll_back.php
line: 31
should be:
&lt;code&gt;$sql .= &quot;FROM $wpdb-&gt;versions, $wpdb-&gt;version_ids WHERE $wpdb-&gt;versions.post_ID = &#039;$_GET[post_ID]&#039; &quot;;&lt;/code&gt;

line: 32
should be:
&lt;code&gt;$sql .= &quot;AND $wpdb-&gt;versions.post_version = &#039;$_GET[post_version]&#039; &quot;;&lt;/code&gt;

file: block_roll_back_select.php
line: 2
should be:
&lt;code&gt;$sql = &quot;SELECT * FROM $wpdb-&gt;versions WHERE post_ID = $_GET[post_ID] ORDER BY post_version DESC &quot;;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>i had to edit the following lines to make it work:</p>
<p>file: block_roll_back.php<br />
line: 31<br />
should be:<br />
<code>$sql .= "FROM $wpdb-&gt;versions, $wpdb-&gt;version_ids WHERE $wpdb-&gt;versions.post_ID = '$_GET[post_ID]' ";</code></p>
<p>line: 32<br />
should be:<br />
<code>$sql .= "AND $wpdb-&gt;versions.post_version = '$_GET[post_version]' ";</code></p>
<p>file: block_roll_back_select.php<br />
line: 2<br />
should be:<br />
<code>$sql = "SELECT * FROM $wpdb-&gt;versions WHERE post_ID = $_GET[post_ID] ORDER BY post_version DESC ";</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Hyde-Moyer</title>
		<link>http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-107</link>
		<dc:creator>Sean Hyde-Moyer</dc:creator>
		<pubDate>Fri, 16 Jun 2006 19:59:52 +0000</pubDate>
		<guid isPermaLink="false">http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-107</guid>
		<description>Sorry, the above comment was supposed to display the mySQL error I was getting.

The way security is handled with PHP5 breaks the plugin.

I&#039;ll try to display the code I had to change:

Old:
&lt;code&gt;$sql = &quot;SELECT * FROM $wpdb-&gt;versions WHERE post_ID = $post_ID ORDER BY post_version DESC &quot;;&lt;/code&gt;

New
&lt;code&gt;$sql = &quot;SELECT * FROM $wpdb-&gt;versions WHERE post_ID = $_GET[post_ID] ORDER BY post_version DESC &quot;;&lt;/code&gt;

There were a few places where this kind of change had to be made, FYI.

I&#039;m told the plugin would probably work in PHP5 if the .ini file was changed to allow PHP5 to use the old, less secure method of shuttling variables around.</description>
		<content:encoded><![CDATA[<p>Sorry, the above comment was supposed to display the mySQL error I was getting.</p>
<p>The way security is handled with PHP5 breaks the plugin.</p>
<p>I&#8217;ll try to display the code I had to change:</p>
<p>Old:<br />
<code>$sql = "SELECT * FROM $wpdb-&gt;versions WHERE post_ID = $post_ID ORDER BY post_version DESC ";</code></p>
<p>New<br />
<code>$sql = "SELECT * FROM $wpdb-&gt;versions WHERE post_ID = $_GET[post_ID] ORDER BY post_version DESC ";</code></p>
<p>There were a few places where this kind of change had to be made, FYI.</p>
<p>I&#8217;m told the plugin would probably work in PHP5 if the .ini file was changed to allow PHP5 to use the old, less secure method of shuttling variables around.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Hyde-Moyer</title>
		<link>http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-105</link>
		<dc:creator>Sean Hyde-Moyer</dc:creator>
		<pubDate>Mon, 17 Apr 2006 19:33:25 +0000</pubDate>
		<guid isPermaLink="false">http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-105</guid>
		<description>HiBrian.
When I try to access an older version it get this:
&lt;blockquote cite=&quot;Could not successfully run query (SELECT * FROM wp_versions WHERE post_ID = ORDER BY post_version DESC ) from DB: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;ORDER BY post_version DESC&#039; at line 1&quot;&gt;

I&#039;m guessing this is an incompatibility with the newest version of PHP?&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>HiBrian.<br />
When I try to access an older version it get this:</p>
<blockquote cite="Could not successfully run query (SELECT * FROM wp_versions WHERE post_ID = ORDER BY post_version DESC ) from DB: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY post_version DESC' at line 1">
<p>I&#8217;m guessing this is an incompatibility with the newest version of PHP?</p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris J. Davis</title>
		<link>http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-104</link>
		<dc:creator>Chris J. Davis</dc:creator>
		<pubDate>Fri, 03 Jun 2005 14:55:45 +0000</pubDate>
		<guid isPermaLink="false">http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-104</guid>
		<description>Hey Brian,

Just wondering if you wanted to incorporate some changes I have made to your plugin.  Nothing drastic really, I just adding some UI formatting so that it matches the rest of the WP UI and moved it to the Manage area, which seems a bit more intuitive to me.

If you want to look at the changes email me and I will shoot you the source.</description>
		<content:encoded><![CDATA[<p>Hey Brian,</p>
<p>Just wondering if you wanted to incorporate some changes I have made to your plugin.  Nothing drastic really, I just adding some UI formatting so that it matches the rest of the WP UI and moved it to the Manage area, which seems a bit more intuitive to me.</p>
<p>If you want to look at the changes email me and I will shoot you the source.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pete</title>
		<link>http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-103</link>
		<dc:creator>pete</dc:creator>
		<pubDate>Sat, 14 May 2005 16:23:02 +0000</pubDate>
		<guid isPermaLink="false">http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-103</guid>
		<description>Hello, I was just surfing around and there&#039;s also some development going on in here: http://rephrase.net/days/05/04/post-versioning
You could join the efforts! :) (sorry if you know already)</description>
		<content:encoded><![CDATA[<p>Hello, I was just surfing around and there&#8217;s also some development going on in here: <a href="http://rephrase.net/days/05/04/post-versioning" rel="nofollow">http://rephrase.net/days/05/04/post-versioning</a><br />
You could join the efforts! <img src='http://watershedstudio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (sorry if you know already)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Groce</title>
		<link>http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-102</link>
		<dc:creator>Brian Groce</dc:creator>
		<pubDate>Sat, 23 Apr 2005 02:52:12 +0000</pubDate>
		<guid isPermaLink="false">http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-102</guid>
		<description>Chris,

The file is named wp_versioning_v1.0_beta.zip...there is no such folder &quot;wp_versioning_v1.0_beta&quot;.

You need to create a directory called wp-versioning in your plugin directory...it would look like &quot;wp-content/plugins/wp-versioning&quot; with all of the plugin files being in that directory.

The menu link should look something like:

/wp-admin/admin.php?page=wp-versioning/index.php

1. What version of WP are you using?

2. What is your server setup? (Linux/Apache?)

3. Is PHP setup to allow you to pass variables?</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>The file is named wp_versioning_v1.0_beta.zip&#8230;there is no such folder &#8220;wp_versioning_v1.0_beta&#8221;.</p>
<p>You need to create a directory called wp-versioning in your plugin directory&#8230;it would look like &#8220;wp-content/plugins/wp-versioning&#8221; with all of the plugin files being in that directory.</p>
<p>The menu link should look something like:</p>
<p>/wp-admin/admin.php?page=wp-versioning/index.php</p>
<p>1. What version of WP are you using?</p>
<p>2. What is your server setup? (Linux/Apache?)</p>
<p>3. Is PHP setup to allow you to pass variables?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris J. Davis</title>
		<link>http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-101</link>
		<dc:creator>Chris J. Davis</dc:creator>
		<pubDate>Sat, 23 Apr 2005 02:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://watershedstudio.com/blog/2005/04/wordpress-versioning-plugin-v10-beta/#comment-101</guid>
		<description>This plugin is broken out of the box.  There are a number of problems:

1. The folder you download is named &lt;code&gt;wp_versioning_v1.0_beta&lt;/code&gt; - the plugin has the path &lt;code&gt;wp-versioning&lt;/code&gt; hard-coded.

2. When things are up and running, when you select the Versioning sub-menu item it is looking for &lt;code&gt;wp-admin/wp-versioning/index.php&lt;/code&gt;, which of course is invalid since your directions told us to upload the entire directory to /plugins/

I am going to fix the bugs in my local copy, and hope to see what all the hub bub is about!

Chris</description>
		<content:encoded><![CDATA[<p>This plugin is broken out of the box.  There are a number of problems:</p>
<p>1. The folder you download is named <code>wp_versioning_v1.0_beta</code> &#8211; the plugin has the path <code>wp-versioning</code> hard-coded.</p>
<p>2. When things are up and running, when you select the Versioning sub-menu item it is looking for <code>wp-admin/wp-versioning/index.php</code>, which of course is invalid since your directions told us to upload the entire directory to /plugins/</p>
<p>I am going to fix the bugs in my local copy, and hope to see what all the hub bub is about!</p>
<p>Chris</p>
]]></content:encoded>
	</item>
</channel>
</rss>

