mystifier
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: eShop] Shipping RatesThanks for a fast response Elfin, but the shipping page simply calls the module: [eshop_show_shipping]
I can’t find a way to manage the values.
Is it possible to set a shop to show simply three prices and two zones (UK/International).
Thanks again.
Forum: Installing WordPress
In reply to: WordPress 3.0 Multi-sitesIncidentally, I use a managed server so I don’t have access to apache/php so I can’t for example, see httpd.conf etc.,
My ‘root’ looks like:
-site1
–wp-content
–wp-includes
-site2
–wp-content
–wp-includes
…
-siteX
–wp-content
–wp-includesForum: Fixing WordPress
In reply to: .htaccess redirectionThanks samboll, I think I have figured it out now.
Forum: Fixing WordPress
In reply to: Deleting and/or Limiting Post Revisions in 2.6?You will have to delete revisions in the database; there is, strangely, no current provision from WordPress.
i.e. Delete from wp_posts where post_status=’revision’ and ….You can restrict the number of revisions by adding
define (‘WP_POST_REVISIONS’, X);
to wp-config (where X is the number of desired revisions, default=until your database falls over with the burden).Forum: Fixing WordPress
In reply to: Disabling Post RevisionsYo! Now I am happy.
By running clean-up SQL:
> Delete from wp-posts where post-status=’revision’
and adding to wp-config:
> define (‘WP_POST_REVISIONS’, 0);
> define(‘AUTOSAVE_INTERVAL’, 600); // One hour should be long enough!I don’t get masses of large unwanted duplication and I can simply click Save whenever I want to without having everything duplicated with unwanted auto-saves every minute.
It was BAD judgement that the majority of users would love this extra database content.
Forum: Alpha/Beta/RC
In reply to: Turn off “Post Revision”-featureYo! Now I am happy.
By running clean-up SQL:
> Delete from wp-posts where post-status=’revision’
and adding to wp-config:
> define (‘WP_POST_REVISIONS’, 0);
> define(‘AUTOSAVE_INTERVAL’, 600); // One hour should be long enough!I don’t get masses of large unwanted duplication and I can simply click Save whenever I want to without having everything duplicated with unwanted auto-saves every minute.
It was BAD judgement that the majority of users would love this extra database content.
Forum: Fixing WordPress
In reply to: Delete Revisions (or better still, prevent them)My apologies, define(‘WP_POST_REVISIONS’, false); DOES work!
I was confused by the new auto_save which happens regardless as a single ‘revision’. I would rather not have this either because it will double my database but I can live with it. My main problem was that because of the nature of my site, large posts get many revisions.
I don’t like code hacks because they have to be re-made every update but I may hack auto_save to kill it.
Forum: Alpha/Beta/RC
In reply to: Turn off “Post Revision”-featureMy apologies, define (‘WP_POST_REVISIONS’, 0); DOES work.
When I tested, I was confused by the new auto_save which happens as a single ‘revision’. I would rather not have this either but I can live with it; my main problem is that because of the nature of my site, large posts receive many minor revisions.
Forum: Alpha/Beta/RC
In reply to: Turn off “Post Revision”-featureAfter every session, I run clean-up SQL:
Delete from wp_posts where post_type=’revision’;It is hopefully a temporary inconvenience until some control is given to revisions; at the moment, it is an abortion.
Forum: Plugins
In reply to: Blicki – Can I Empty wp_post_revisions Table in Database?Simplest way now is to run SQL:
Delete from wp_posts where post_type=’revision’;
Forum: Alpha/Beta/RC
In reply to: Turn off “Post Revision”-featuredefine(‘WP_POST_REVISIONS’, false);
Doesn’t work. Large unwanted posts are simply added following every minor revision. My database has grown massively.
“I bet you’re the kind of person who actually goes through and deletes old email too, right?” – Well, surprisingly yes; since I receive tens a day that makes very good sense.
This is a very blase approach that has resulted in the worst ever WordPress version change. The number of stored Revisions (0 in my case) should at very least be controllable. Quadrupling the size of my database with unwanted posts makes 2.6 unusable and already, my phpadmin imports (controlled by my host not me) have to be split into sections.
Bloody infuriating mess up of a blog tool I have always revered. I will try to revert to 2.5 until it is ‘fixed’.
Forum: Plugins
In reply to: Blicki – Can I Empty wp_post_revisions Table in Database?I wish!! In the current 2.6, there is no wp_post_revisions table; revisions and simply included in wp_posts and not so easy to get rid of.
My table has grown massively with unwanted large posts that are unconditionally added. I am seriously contemplating reverting to 2.5.
Forum: Fixing WordPress
In reply to: Delete Revisions (or better still, prevent them)define(‘WP_POST_REVISIONS’, false);
Does not have the desired effect. I correct one character and it unconditionally saves a whole new version of a several hundred word post.
At the moment, I am bitterly regretting upgrading 🙁
Forum: Fixing WordPress
In reply to: Delete Revisions (or better still, prevent them)My site has over 300, sometimes long posts – the last thing I want is five or six versions of them; this would certainly exceed the phpadmin import filesize on my hosting package requiring that I split it.
Thanks for the wp-config entry, I will try it after I have hand deleted tens of unwanted posts 😉
Forum: Alpha/Beta/RC
In reply to: Turn off “Post Revision”-featureStrongly agree. I can see its use for multiple authors but for me, it simply generates annoying unwanted database entries.
I can’t even see yet how to delete unwanted revisions.