Viewing 10 replies - 1 through 10 (of 10 total)
  • 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.

    Plugin Author plugin.builders

    (@pluginbuilders)

    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?

    Thread Starter eagleye101

    (@eagleye101)

    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.

    Thread Starter eagleye101

    (@eagleye101)

    Any updates?

    Plugin Author plugin.builders

    (@pluginbuilders)

    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.

    Thread Starter eagleye101

    (@eagleye101)

    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…

    Plugin Author plugin.builders

    (@pluginbuilders)

    Hi, I’ve found the issue, and fixed it. I’ll release new version within an hour. Very sorry for the delay.

    Thread Starter eagleye101

    (@eagleye101)

    Thanks a lot for your support. It is very much appreciated.

    Plugin Author plugin.builders

    (@pluginbuilders)

    Hi, new version ( 0.3.1 ) has been released. Please update from your Plugins page.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘0.3 update mess-up’ is closed to new replies.