remcovanrossum
Forum Replies Created
-
Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Newsletters not sendingSame here… I have paused and resumed several times it is progressing now, but it is extremely slow, 1 one 1 with long pauses in between. I read in the release notes that the delivery engine has been re-engineered in version 7.3.0, which is probably the cause.
If not finished by tomorrow I will downgrade the plugin version. Hopefully this will be resolved soon.
Thank you for this addon. That solved my problem.
Kind regards,
RemcoHi Angelo,
The time for a regular event is OK now with the manually adjusted offset. An all day event still appears a day too early in GCal. We’re getting there!
Regards, Remco
Forum: Plugins
In reply to: [Volunteer Sign Up Sheets] Duplicate reminders sent out last nightThanks for your assistance. I now can confirm that the issue was caused by the Postman plugin. Today I found the cause and a solution / workaround.
Some time ago I increased the size of the log from 250 to 1.000. Today I discovered that there where almost 7.000 log lines in de posts table. I then completely turned of logging and the Ajax error did not occur anymore.
After that, I used a Delete plugin to delete the 7.000 obsolete posts 500 at a time. That took some time. I assume the error was caused by the log delete routine that simply took too long…
Since I don’t need logging anymore, I won’t turn it on again. My problem is solved now.
I think I found the cause and a solution / workaround. Some time ago I increased the size of the log from 250 to 1.000. Today I discovered that there where almost 7.000 log lines in de posts table. I then completely turned of logging and the Ajax error did not occur anymore.
After that, I used a Delete plugin to delete the 7.000 obsolete posts 500 at a time. That took some time. I assume the error was caused by the log delete routine that simply took too long…
Since I don’t need logging anymore, I won’t turn it on again. My problem is solved now.
Same problem on my site. Did you make any progress yet?
Did you try to send a testmail? It generates an AJAX error, but the mail is send out succesfully. I have several plugins that show similar behavior as you describe. Some kind of retry mechanism…
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Postman SMTP Ajax Error on Test SendAny developments on this topic? I have the same problem with other plugins: PTA Volunteer Sheets, BP Group E-mail subscription and all WP core e-mails. It only occurs on my production site, not ons my dev site. Have not found a suitable alternative to Postman yet.
Forum: Plugins
In reply to: [Volunteer Sign Up Sheets] Duplicate reminders sent out last nightThank you. I am using the Postman plugin which sends mails through the GMail API. I have noticed that e-mails from another plugin are also sent out irregularly and/or several times. Some Postman testmails are send out, but also generate an error. Possibly this casuses some kind of retry in plugins that try to mail. Does your plugin contain something like a retry mechanism?
I will investigate this further.
Thanks for your tips. I managed to figure it out by customizing the ical.php template. I replaced the following filter:
$args = array_merge(array('limit'=>$page_limit, 'page'=>'1', 'owner'=>false, 'orderby'=>'event_start_date', 'scope' => get_option('dbem_ical_scope') ), $args);
By a conditional filter based on the URI:
$uri=$_SERVER['REQUEST_URI']; $params=explode('/',$uri); if ($params[1]=='groups') { $group_id = groups_get_id($params[2]); $args = array_merge(array('limit'=>$page_limit, 'page'=>'1', 'owner'=>false, 'private'=>'1', 'private_only'=>'1', 'group'=> $group_id, 'orderby'=>'event_start_date', 'scope' => get_option('dbem_ical_scope') ), $args); } else { $args = array_merge(array('limit'=>$page_limit, 'page'=>'1', 'owner'=>false, 'orderby'=>'event_start_date', 'scope' => get_option('dbem_ical_scope') ), $args); }
- This reply was modified 8 years, 1 month ago by remcovanrossum.
Thanks @caimin_nwl, I will look into that.
Still looking for some documentation on the EM_Events loop and hope to find a way to apply the current group as an event filter.
- This reply was modified 8 years, 2 months ago by remcovanrossum.