Forum Replies Created

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

    (@arsenelesueur)

    Je précise que les 5 étoiles sont méritées car ce plugin est la promesse d’un rêve qui deviendra bient?t réalité ^^

    Hi,

    As I have an invalid email syntax error trying to use a select field (with pipes) to redirect the email to a specific service’s recipient, I can’t use the method mentioned above anymore.

    Is there a safer work-around that allow us to keep allowing selectable recipients with CF7 ?

    Thread Starter Agence Larsen

    (@arsenelesueur)

    The problem has been solved !

    All entries in the wp_actionscheduler_actions table had “0” as “action_id“… and all entries in the wp_actionscheduler_logs had a value of “0” for log_id and action_id so we did the following steps :

    1)emptying the ****_actionscheduler_logs table (which kept growing fast but a bit lighter)

    TRUNCATE wp_actionscheduler_logs

    2) cleaning all complete, failed and canceld actions from the wp_actionscheduler_actions table

    DELETE FROM wp_actionscheduler_actions WHERE status IN ('complete','failed','canceled')

    3) renaming the table to ****_actionscheduler_actions2 and applied a “fix schema”.

    ==> Then the table was regenerated with correct action_id values, which launched the list of pending planned actions that were blocked, and enabled the import of historical data from WooCommerce to be launched correctly.

    Thread Starter Agence Larsen

    (@arsenelesueur)

    Just a quick update, I’ve seen that the table “prefix_action_scheduler_logs” is growing incredibly fast on my database.

    I have an incredibly long list of the same entry (about 30M) :
    log_id ==> 0
    action_id ==> 0
    message ==> action ignorée via WP Cron
    log_date_local ==> 2023-10-17 21:01:30 (I have about 15 entries per second)
    log_date_gmt ==> 2023-10-17 23:01:30

    I hope that it will help you seeing what is happening to me ??

    Thread Starter Agence Larsen

    (@arsenelesueur)

    Hello, my developer found a workaround by adding the filter below :

    add_filter( 'template_include', 'override_wplauncher_options', -1000000000000000000000);
    
    function override_wplauncher_options($template)
        {
            global $wp_launcher;
    
            return $wp_launcher->launch($template);
        }

    I guess this is not a permanent fix but I hope it’ll help improving your product.

    Regards,
    Arsène

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