| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/really-simple-ssl/ |
Upload File : |
<?php
defined('ABSPATH') or die("you do not have access to this page!");
// add custom time to cron
add_filter('cron_schedules', 'rsssl_filter_cron_schedules');
function rsssl_filter_cron_schedules($schedules)
{
$schedules['oneminute'] = array(
'interval' => 60, // seconds
'display' => __('Once every minute')
);
return $schedules;
}
add_action('plugins_loaded', 'rsssl_schedule_cron', 15);
function rsssl_schedule_cron()
{
if (get_site_option('rsssl_ssl_activation_active') || get_site_option('rsssl_ssl_deactivation_active')) {
if (!wp_next_scheduled('rsssl_ssl_process_hook')) {
wp_schedule_event(time(), 'oneminute', 'rsssl_ssl_process_hook');
}
} else {
wp_clear_scheduled_hook('rsssl_ssl_process_hook');
}
/*
* On some sites rsssl_ssl_process_hook will prevent conversion from happening (stuck on 0%).
* If that happens, user can click a link (in class-multisite.php) to fire ssl process on admin_init hook
*
*/
if (get_site_option('run_ssl_process_hook_switched') !== false) {
add_action('admin_init', array(RSSSL()->rsssl_multisite, 'run_ssl_process'));
} else {
add_action('rsssl_ssl_process_hook', array(RSSSL()->rsssl_multisite, 'run_ssl_process'));
}
}