nebadom
Forum Replies Created
-
Hey Mark,
I’ve been dealing with this issue for months, so I decided to suspend this plugin until a solution is provided. In the meantime, you can clean the scheduled events with this SQL solution:
SELECT hook, args, count(*) FROM wp_actionscheduler_actions WHERE status = 'pending' GROUP BY hook, args HAVING COUNT(*) > 5;
The script above will give you the hook(s) that is causing issues and the count of those entries. What you need to do next is anotate the args value, and based on that value, run the following next:
DELETE FROM
wp_actionscheduler_actions
WHERE status = 'pending' AND args in ('[21780]')DELETE FROM
wp_actionscheduler_actions
WHERE status = 'complete' AND args in ('[21780]')NOTE: In my case, the args value was ‘[21780]’, which is the order id value.
And to the MakeWebBetter team, I can see that an update was released a few days ago, but the release notes doesn’t give much info. Was this fixed in this version?
Looking forward to hearing from you,
AlbertoRI tried that. Tried uninstalling and reinstalling, but for some reason when I use you plugin on one specific multisite installation, the form gets emptied.
So you can have a better idea, on this system we use your plugin to store some form data, then the data gets updated LATER and only then the email is sent to the user. We somehow delayed the email to the user so it waits for some extra info to be injected to the form.
I do remember that your plugin “originally” didn’t allow “network activation”, which was ok for me. As it is now, it wouldn’t matter if we get it working “network activation” or individual activation, it would still mail an empty email and store no data in the table. I belive this has something to do with my current setup (not your plugin), because your plugin works pretty good on other sites I’ve used it.
Q: What was the major change on the DB when migrating from version v1.1.6 to v1.1.7?
Forum: Fixing WordPress
In reply to: Unwanted redirect?I have had the exact problem but it was due the “Redirection” monitoring my posts. All you have to do is 1) Disable Monitoring (go to redirection > options and you will see a drop-down menu) and 2) Go to “Groups” and delete the automatic redirection. That will do.
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Make some parts dynamicDo you know a good one for text/scroll?
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Make some parts dynamicUpdate: I want to have some “Latest Posts” in my home page, but the Wp-Super Cache prevent it to work properly (caches that too).
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Make some parts dynamicIn WP-Chache and Staticize Reloaded, there is this hack:
<!--mfunc function_name('parameter', 'another_parameter') --> <?php function_name('parameter', 'another_parameter') ?> <!--/mfunc-->
The HTML comments around the mirrored PHP allow it to be executed in the static page. To include another file try this:
<!--mclude file.php--> <?php include_once(ABSPATH . 'file.php'); ?> <!--/mclude-->
————-
I’d like to know if that would work on WP-Super Cache. Maybe that would help to those who don’t know (or don’t want) to get a java app.