dominichostettler
Forum Replies Created
-
Forum: Plugins
In reply to: [ManageWP Worker] sites disconnecting@andydog66 Yep, I am using a Litespeed Server too for the sites which had the issue.
Forum: Plugins
In reply to: [ManageWP Worker] sites disconnecting@eleonoraanzini, i personally wrote an own plugin for that, so I can manage this function over many sites in the ManageWP Dashboard. But you can also add it to your finctions.php if you use a child theme, or otherwise you add it as a snippet with the snippet plugin.
Forum: Plugins
In reply to: [ManageWP Worker] sites disconnectingYou need to add this to every site.
I tried MainWP but was not happy. Maybe WPumbrella is better.
Forum: Plugins
In reply to: [ManageWP Worker] sites disconnectingI had the same Problem ans SOLVED it with a custom function, that checks and activates my ManageWP Worker Plugin every hour:
<?php /* Keep ManageWP Worker activated */ function activate_managewp_worker() { $plugin_file_path = WP_PLUGIN_DIR . '/worker/init.php'; // überprüfen, ob das Plugin bereits aktiviert ist if (!is_plugin_active($plugin_file_path)) { activate_plugin($plugin_file_path); } } function schedule_activation_cron() { if (!wp_next_scheduled('activate_managewp_worker_event')) { wp_schedule_event(current_time('timestamp'), 'custom_interval', 'activate_managewp_worker_event'); } } add_action('init', 'schedule_activation_cron'); // Funktion zum Aktivieren des Plugins, die vom Cron-Job aufgerufen wird function activate_managewp_worker_callback() { activate_managewp_worker(); } add_action('activate_managewp_worker_event', 'activate_managewp_worker_callback'); function custom_cron_intervals($schedules) { $schedules['custom_interval'] = array( 'interval' => 3600, 'display' => __('Regularly', 'textdomain') ); return $schedules; } add_filter('cron_schedules', 'custom_cron_intervals');
Cheers!
Forum: Plugins
In reply to: [Sync Post With Other Site] Just one site getting syncedI have the same Problem. And it seems that other users too.
@kp4coder: Please help with this problem.
I think it’s working now, because I turned OFF “Can Access Unrestricted Content” in the level Options.
Forum: Plugins
In reply to: [Sync Post With Other Site] Duplicate PostsYou mean the Content Match Mode? There is only “post slug” to choose. But what I realized is, that it only makes duplicates with custom post types. Maybe, because they have an extended slug (domain.com/type/post)?
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Output Yes/No meta valueThat works! Great – Thanks a lot.
- This reply was modified 3 years, 7 months ago by dominichostettler.