Agence Larsen
Forum Replies Created
-
Forum: Reviews
In reply to: [HelloAsso] Impossible de renseigner les informations de paiementJe 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é ^^
Forum: Plugins
In reply to: [Contact Form 7] “Unsafe email config” when using selectable recipientHi,
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 ?
Forum: Plugins
In reply to: [WooCommerce] Unable to import historical dataThe 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
WHEREstatus
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.
Forum: Plugins
In reply to: [WooCommerce] Unable to import historical dataJust 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:30I hope that it will help you seeing what is happening to me ??
- This reply was modified 1 year, 4 months ago by Agence Larsen.
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