Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter webtecky

    (@webtecky)

    Much appreciated!

    Thread Starter webtecky

    (@webtecky)

    The problem is also in the free version. Why are you ignoring these technical details and remind everything to the the PRO support? Please, address the problem in here, please.

    Thread Starter webtecky

    (@webtecky)

    Yes, correct, I am referring to line 56 of \wp-webinarsystem\includes\class-webinarsysteem.php, add_action(‘init’, [$this, ‘run_database_migrations’]);.

    If also the ‘run_database_migrations’ callback method could run only if not AJAX, it would be perfect.

    /*
         * Run migrations
         */
        public function run_database_migrations() {
            if( ! wp_doing_ajax() ){
                $db = new WebinarsysteemDbMigrations();
    
                $force_db_upgrade = isset($_GET['force-db-migrate']);
    
                if (is_user_logged_in() && current_user_can('administrator') && $force_db_upgrade) {
                    $db->force_migrations_with_debug();
                }
    
                $db->run_migrations();
            }
        }
    Forum: Plugins
    In reply to: [Postie] gmail not working

    I was able to reactivate the fetching by doing this (suggested by @dubaidogfish):

    1) Under “Security”, activate the the “2-steps verification” on the Google account;
    2) Once it’s activated, set “App passwords”, “Select App” to “Mail”, “Select device” to “Other (custom name)”, give it a name (Postie Password) and copy the password generated at the end of the “App passwords” process;
    3) Use the generated password on Postie instead of the Google account password;

    Good luck!

    Thread Starter webtecky

    (@webtecky)

    Thanks for the explanation, but that approach interferes with a regular parenthesis in the message body. I would make the loop break when it finds a “A0006 OK” (IMAP-SSL/gmail) or “a004 OK FETCH” string (example on page 63), so the email would not be cut out. I know it’s very rare, but it happened to me (and it could happen to others).

    Kudos to the plugin though!

    Best.

Viewing 5 replies - 1 through 5 (of 5 total)