Plugin to import/export wp_options

One great challenge that i can think of is creating that your import export system dynamic in a way that if you add another option here and there in your updates that you won’t have to go back to the export function and update it to export the new options as well, basically what I’m … Read more

How can I clear memcached WordPress site options by hand?

The variable in my copy of wordpress on the line your error indicates is actually $current_site as opposed to $current_blog (I may have a newer version of WP). I believe you can clear that by changing the value of the option_name “siteurl” or “blogname” in your wp_options table on your database.

How can you store your option at the permalink settings page?

I ran into this very same issue and I have a workaround. Hopefully it will be fixed in the upcoming 3.3 release as this trac ticket suggests. The workaround basically replicates the important bits of the wp-admin/options.php file where settings registered via the settings API are processed. The reason additional permalink settings do not currently … Read more