<?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>Commenti per Facile come dire 1 e 2 .it</title>
	<atom:link href="http://www.1e2.it/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.1e2.it</link>
	<description>Articoli, Opinioni, Guide alla portata di tutti</description>
	<lastBuildDate>Tue, 21 Feb 2012 20:17:18 +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>Commenti su Better Delete Revision v1.2 WordPress Plugin di Padrone di casa</title>
		<link>http://www.1e2.it/better-delete-revision-v1-2-wordpress-plugin/#comment-3456</link>
		<dc:creator>Padrone di casa</dc:creator>
		<pubDate>Tue, 21 Feb 2012 20:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.1e2.it/?p=1997#comment-3456</guid>
		<description>Just use this link:
&lt;b&gt;http://www.1e2.it/forum/register.php?langid=1&lt;/b&gt;
and the language of the forum will be in English. (You can change the language  when you want, just check the bottom of every page, there is a select tab for the language).</description>
		<content:encoded><![CDATA[<p>Just use this link:<br />
<b><a href="http://www.1e2.it/forum/register.php?langid=1" rel="nofollow">http://www.1e2.it/forum/register.php?langid=1</a></b><br />
and the language of the forum will be in English. (You can change the language  when you want, just check the bottom of every page, there is a select tab for the language).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su Better Delete Revision v1.2 WordPress Plugin di Mark Coles</title>
		<link>http://www.1e2.it/better-delete-revision-v1-2-wordpress-plugin/#comment-3455</link>
		<dc:creator>Mark Coles</dc:creator>
		<pubDate>Tue, 21 Feb 2012 20:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.1e2.it/?p=1997#comment-3455</guid>
		<description>Hi,

I recorded each step as I tried various solutions. Here&#039;s what happened.
(I used WP-Optimized plug-in to check DB; pageMash plug-in to show leftover items)

&lt;code&gt;
/** REPORT: Ran BDR Removed 1 revision
 *Ran this. Found and removed 145 rows
 **/
DELETE a,b,c FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_name REGEXP &#039;^[0-9]{1,}-autosave$&#039; AND  (post_status=&#039;inherit&#039;) AND ( post_type= &#039;page&#039; OR post_type=&#039;post&#039; )

/*RESTLT*/
/*WP-Optimize Plugin shows this after running script.
*wp_postmeta 	73.5 Kb 	Need to Optimize 	1.719 Kb
*wp_posts 	2675.527 Kb 	Need to Optimize 	682.074 Kb
*
**
*pageMash still shows VERY long list of duplicates 
*Will now run this*/

DELETE a,b,c FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_name LIKE &#039;%revision%&#039; AND  (post_status=&#039;inherit&#039;) AND ( post_type= &#039;page&#039; OR post_type=&#039;post&#039; )

/*RESULT*/
/* 298 rows deleted
*
*WP-Optimize shows
*wp_postmeta 	68.781 Kb 	Need to Optimize 	3.609 Kb
*wp_posts 	1985.453 Kb 	Need to Optimize 	1811.711 Kb
*pageMash only shows one pagem per entry
*end REPORT */ 
&lt;/code&gt;

Thoughts?

Mark</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I recorded each step as I tried various solutions. Here&#8217;s what happened.<br />
(I used WP-Optimized plug-in to check DB; pageMash plug-in to show leftover items)</p>
<p><code><br />
/** REPORT: Ran BDR Removed 1 revision<br />
 *Ran this. Found and removed 145 rows<br />
 **/<br />
DELETE a,b,c FROM wp_posts a<br />
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)<br />
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)<br />
WHERE a.post_name REGEXP '^[0-9]{1,}-autosave$' AND  (post_status='inherit') AND ( post_type= 'page' OR post_type='post' )</p>
<p>/*RESTLT*/<br />
/*WP-Optimize Plugin shows this after running script.<br />
*wp_postmeta 	73.5 Kb 	Need to Optimize 	1.719 Kb<br />
*wp_posts 	2675.527 Kb 	Need to Optimize 	682.074 Kb<br />
*<br />
**<br />
*pageMash still shows VERY long list of duplicates<br />
*Will now run this*/</p>
<p>DELETE a,b,c FROM wp_posts a<br />
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)<br />
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)<br />
WHERE a.post_name LIKE '%revision%' AND  (post_status='inherit') AND ( post_type= 'page' OR post_type='post' )</p>
<p>/*RESULT*/<br />
/* 298 rows deleted<br />
*<br />
*WP-Optimize shows<br />
*wp_postmeta 	68.781 Kb 	Need to Optimize 	3.609 Kb<br />
*wp_posts 	1985.453 Kb 	Need to Optimize 	1811.711 Kb<br />
*pageMash only shows one pagem per entry<br />
*end REPORT */<br />
</code></p>
<p>Thoughts?</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su Better Delete Revision v1.2 WordPress Plugin di Mark Coles</title>
		<link>http://www.1e2.it/better-delete-revision-v1-2-wordpress-plugin/#comment-3454</link>
		<dc:creator>Mark Coles</dc:creator>
		<pubDate>Tue, 21 Feb 2012 20:03:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.1e2.it/?p=1997#comment-3454</guid>
		<description>Caro Padrone,

It would be nice if you could start the discussion in the forum. My Italian is not good and you could do a better job at summerizing how we got to the discussion.
Then we could join in.

Thanks,
Mark,</description>
		<content:encoded><![CDATA[<p>Caro Padrone,</p>
<p>It would be nice if you could start the discussion in the forum. My Italian is not good and you could do a better job at summerizing how we got to the discussion.<br />
Then we could join in.</p>
<p>Thanks,<br />
Mark,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su Better Delete Revision v1.2 WordPress Plugin di Padrone di casa</title>
		<link>http://www.1e2.it/better-delete-revision-v1-2-wordpress-plugin/#comment-3453</link>
		<dc:creator>Padrone di casa</dc:creator>
		<pubDate>Tue, 21 Feb 2012 17:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.1e2.it/?p=1997#comment-3453</guid>
		<description>To ALL:
I think it is better to continue on the forum this discussion, it will be much clearer and this page will not become too long:
http://www.1e2.it/forum/html-php-blog-forum-cms-22/better-delete-revision-wordpress-plugin-1e2-3544.html</description>
		<content:encoded><![CDATA[<p>To ALL:<br />
I think it is better to continue on the forum this discussion, it will be much clearer and this page will not become too long:<br />
<a href="http://www.1e2.it/forum/html-php-blog-forum-cms-22/better-delete-revision-wordpress-plugin-1e2-3544.html" rel="nofollow">http://www.1e2.it/forum/html-php-blog-forum-cms-22/better-delete-revision-wordpress-plugin-1e2-3544.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su Better Delete Revision v1.2 WordPress Plugin di Andy from Workshopshed</title>
		<link>http://www.1e2.it/better-delete-revision-v1-2-wordpress-plugin/#comment-3452</link>
		<dc:creator>Andy from Workshopshed</dc:creator>
		<pubDate>Tue, 21 Feb 2012 17:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.1e2.it/?p=1997#comment-3452</guid>
		<description>There are quite a lot of comments in the wordpress forums about the auto drafts, some suggest themes are at fault, some core wordpress. It might be worth seeing if you can reproduce the issue then switch to the twenty eleven theme and repeat the experiment

http://wordpress.org/support/topic/auto-draft-1

http://forum.bytesforall.com/showthread.php?t=7100&amp;highlight=Auto+Draft

My &quot;problem&quot; record has

post_status : &quot;auto-draft&quot; 
post_parent :0
post_type : &quot;post&quot;
post_name : &quot;&quot;  (empty string)

Nothing much else that distinguishes it from the other records. The auto saving and revisions seem to be working fine with no problems.</description>
		<content:encoded><![CDATA[<p>There are quite a lot of comments in the wordpress forums about the auto drafts, some suggest themes are at fault, some core wordpress. It might be worth seeing if you can reproduce the issue then switch to the twenty eleven theme and repeat the experiment</p>
<p><a href="http://wordpress.org/support/topic/auto-draft-1" rel="nofollow">http://wordpress.org/support/topic/auto-draft-1</a></p>
<p><a href="http://forum.bytesforall.com/showthread.php?t=7100&#038;highlight=Auto+Draft" rel="nofollow">http://forum.bytesforall.com/showthread.php?t=7100&#038;highlight=Auto+Draft</a></p>
<p>My &#8220;problem&#8221; record has</p>
<p>post_status : &#8220;auto-draft&#8221;<br />
post_parent :0<br />
post_type : &#8220;post&#8221;<br />
post_name : &#8220;&#8221;  (empty string)</p>
<p>Nothing much else that distinguishes it from the other records. The auto saving and revisions seem to be working fine with no problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su Better Delete Revision v1.2 WordPress Plugin di Mark Coles</title>
		<link>http://www.1e2.it/better-delete-revision-v1-2-wordpress-plugin/#comment-3451</link>
		<dc:creator>Mark Coles</dc:creator>
		<pubDate>Tue, 21 Feb 2012 17:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.1e2.it/?p=1997#comment-3451</guid>
		<description>Hi,

I&#039;m using 3.3.1.
Since my client and I are both new to WP (I was a joomla user for a long time) and she is an author, there are updates, revisions, corrections  made to pages several times a day by both of us.

I didn&#039;t notice anything until I installed the WP pageMash
http://wordpress.org/extend/plugins/pagemash/
 (and/or) the CMS Tree-Page-View 
http://wordpress.org/extend/plugins/cms-tree-page-view/
plug-ins.

Both plug-ins show pages/posts plus their revisions and autosaves. Even after running BRD I had a long list so that&#039;s why I came here and started discussing autosaves too.

Mark</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m using 3.3.1.<br />
Since my client and I are both new to WP (I was a joomla user for a long time) and she is an author, there are updates, revisions, corrections  made to pages several times a day by both of us.</p>
<p>I didn&#8217;t notice anything until I installed the WP pageMash<br />
<a href="http://wordpress.org/extend/plugins/pagemash/" rel="nofollow">http://wordpress.org/extend/plugins/pagemash/</a><br />
 (and/or) the CMS Tree-Page-View<br />
<a href="http://wordpress.org/extend/plugins/cms-tree-page-view/" rel="nofollow">http://wordpress.org/extend/plugins/cms-tree-page-view/</a><br />
plug-ins.</p>
<p>Both plug-ins show pages/posts plus their revisions and autosaves. Even after running BRD I had a long list so that&#8217;s why I came here and started discussing autosaves too.</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su Better Delete Revision v1.2 WordPress Plugin di Andy from Workshopshed</title>
		<link>http://www.1e2.it/better-delete-revision-v1-2-wordpress-plugin/#comment-3450</link>
		<dc:creator>Andy from Workshopshed</dc:creator>
		<pubDate>Tue, 21 Feb 2012 17:19:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.1e2.it/?p=1997#comment-3450</guid>
		<description>What version are you on, I&#039;m on 3.3.1</description>
		<content:encoded><![CDATA[<p>What version are you on, I&#8217;m on 3.3.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su Better Delete Revision v1.2 WordPress Plugin di Andy from Workshopshed</title>
		<link>http://www.1e2.it/better-delete-revision-v1-2-wordpress-plugin/#comment-3449</link>
		<dc:creator>Andy from Workshopshed</dc:creator>
		<pubDate>Tue, 21 Feb 2012 17:17:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.1e2.it/?p=1997#comment-3449</guid>
		<description>Mark, I&#039;m seeing the database getting updated with my latest content but I&#039;m not seeing multiple copies as you describe.
Are you using anything funky like an editor plugin, after the deadline or the jetpack (which also contains after the deadline)</description>
		<content:encoded><![CDATA[<p>Mark, I&#8217;m seeing the database getting updated with my latest content but I&#8217;m not seeing multiple copies as you describe.<br />
Are you using anything funky like an editor plugin, after the deadline or the jetpack (which also contains after the deadline)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su Better Delete Revision v1.2 WordPress Plugin di Mark Coles</title>
		<link>http://www.1e2.it/better-delete-revision-v1-2-wordpress-plugin/#comment-3448</link>
		<dc:creator>Mark Coles</dc:creator>
		<pubDate>Tue, 21 Feb 2012 16:27:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.1e2.it/?p=1997#comment-3448</guid>
		<description>Hi,

It is the autosaves that&#039;s driving me nuts. I use tha pagemash plug-in to organise pages and it shows all pages PLUS their autosaves.

Aparently autosave is not directly related to revision. If editing a page&#039;s revision for longer than xx seconds/minutes WP creates an autosave of that revision.

In just creating a page or post, WP autosaves every xx seconds/minutes so if you spend a long time WP has created several copies of the post without deleting the previous ones.

There is a way to a) limit the number of revisions and b) the interval WP creates an autosave. Add these 2 define statements in wp-config.php above the line &#039;That&#039;s all, stop editing! Happy blogging&#039;. Like this
&lt;code&gt;
define(&#039;WP_POST_REVISIONS&#039;, 3); // max number of post revisions.

define(&#039;AUTOSAVE_INTERVAL&#039;, 300); // in seconds

/* That&#039;s all, stop editing! Happy blogging. */
&lt;/code&gt;

What I&#039;d like BRD to be able to do is delete autosaves and revisions. If it could also add the fix to wp-config that would be nice. It would then be a &#039;run once and delete&#039; type plug-in though:-) 

Mark</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>It is the autosaves that&#8217;s driving me nuts. I use tha pagemash plug-in to organise pages and it shows all pages PLUS their autosaves.</p>
<p>Aparently autosave is not directly related to revision. If editing a page&#8217;s revision for longer than xx seconds/minutes WP creates an autosave of that revision.</p>
<p>In just creating a page or post, WP autosaves every xx seconds/minutes so if you spend a long time WP has created several copies of the post without deleting the previous ones.</p>
<p>There is a way to a) limit the number of revisions and b) the interval WP creates an autosave. Add these 2 define statements in wp-config.php above the line &#8216;That&#8217;s all, stop editing! Happy blogging&#8217;. Like this<br />
<code><br />
define('WP_POST_REVISIONS', 3); // max number of post revisions.</p>
<p>define('AUTOSAVE_INTERVAL', 300); // in seconds</p>
<p>/* That's all, stop editing! Happy blogging. */<br />
</code></p>
<p>What I&#8217;d like BRD to be able to do is delete autosaves and revisions. If it could also add the fix to wp-config that would be nice. It would then be a &#8216;run once and delete&#8217; type plug-in though:-) </p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su Better Delete Revision v1.2 WordPress Plugin di Andy from Workshopshed</title>
		<link>http://www.1e2.it/better-delete-revision-v1-2-wordpress-plugin/#comment-3447</link>
		<dc:creator>Andy from Workshopshed</dc:creator>
		<pubDate>Tue, 21 Feb 2012 13:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.1e2.it/?p=1997#comment-3447</guid>
		<description>It&#039;s been deleting post and page revisions just nicely on my test blog.</description>
		<content:encoded><![CDATA[<p>It&#8217;s been deleting post and page revisions just nicely on my test blog.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Content Delivery Network via cdn5.12n3.net

Served from: www.1e2.it @ 2012-02-22 12:21:21 -->
