webtecky
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordpress Webinar Plugin - WebinarPress] Ajax call failsMuch appreciated!
Forum: Plugins
In reply to: [Wordpress Webinar Plugin - WebinarPress] Ajax call failsThe 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.
Forum: Plugins
In reply to: [Wordpress Webinar Plugin - WebinarPress] Database MigrationYes, 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 workingI 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!
Forum: Plugins
In reply to: [Postie] fetchMessageSource on pImapMailServer.phpThanks 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.