Server :
Apache
System :
Linux webd003.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User :
atwiofrxug (73666)
PHP Version :
8.4.10
Disable Functions :
_dyuweyrj4,_dyuweyrj4r,dl
Current Directory :
/home/atwiofrxug/mylittletelaviv/wp-content/plugins/really-simple-ssl/
Directory Status:
Writeable | Document Root:
Writeable
Upload File
Viewing: /home/atwiofrxug/mylittletelaviv/wp-content/plugins/really-simple-ssl/multisite-cron.php
<?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');
}
add_action('rsssl_ssl_process_hook', array(RSSSL()->rsssl_multisite, 'run_ssl_process'));
}
Cyb3r Drag0nz Team • Google Edition