Same problem here.
I don’t use any framework, but after the 0.3 install, it was impossible to edit posts and pages. Everything is back to normal after deactivating the plugin.
Hi, this version restructures database table to make it work with multisite installations, so that might have caused the problem.
Can you once try reactivating the plugin?
Yes, I have activated and deactivated the plugin many times as this is the only way I can access my widgets.
I hope this is fixed soon otherwise I will have to look for another solution which is too bad because I love the plugin
I already switched to an alternative. Too bad this happened.
Hi, how many countdowns do you have? If you can recreate those countdowns easily, please paste the following code in functions.php file of your theme, save, then reload. It’ll clean Waiting’s database, and then you can reinstall the plugin without any errors.
Remove the code and save again after reloading.
function waiting_clean_db(){
global $wpdb;
$sql = "DROP TABLE IF EXISTS ".$wpdb->prefix."waiting";
$wpdb->query($sql);
$sql = "DROP TABLE IF EXISTS wp_waiting";
$wpdb->query($sql);
delete_option('waiting_clean_on_uninstall');
delete_option('pbc_version');
delete_option('pbc_waiting_license_key');
delete_option('pbc_waiting_name');
delete_option('pbc_license_status');
}
add_action('init', 'waiting_clean_db');
If you cannot delete, then we’ll write another solution.
Oh I have a lot of countdowns because the website is about book deals and almost every book page has it’s countdown to the deal date… So I don’t think the above solution is an option. Also I’m not good with coding…
Hi, I’ve found the issue, and fixed it. I’ll release new version within an hour. Very sorry for the delay.
Thanks a lot for your support. It is very much appreciated.
Hi, new version ( 0.3.1 ) has been released. Please update from your Plugins page.