Changeset 3142585
- Timestamp:
- 08/28/2024 04:40:47 AM (19 months ago)
- Location:
- fastcron
- Files:
-
- 4 edited
-
tags/1.0.0/fastcron.php (modified) (2 diffs)
-
tags/1.0.0/readme.txt (modified) (1 diff)
-
trunk/fastcron.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fastcron/tags/1.0.0/fastcron.php
r3142128 r3142585 1 1 <?php 2 2 /* 3 Plugin Name: FastCron 3 Plugin Name: FastCron - Run WP Cron for free 4 4 Plugin URI: https://wordpress.org/plugins/fastcron/ 5 5 Description: This plugin will <strong>set up a free cronjob at FastCron</strong> to run your <strong>wp-cron.php</strong> file automatically. Completely free, no registration required. … … 34 34 35 35 function fastcron_deactivate() { 36 $url = 'https://app.fastcron.com/free?site='. site_url() 36 if(get_option('fastcron_id')) { 37 $url = 'https://app.fastcron.com/free?site='. site_url() 37 38 . '&remove=' . get_option('fastcron_secret'); 38 39 39 $response = wp_remote_get($url, ['timeout' => 30]); 40 wp_remote_retrieve_body($response); 40 $response = wp_remote_get($url, ['timeout' => 30]); 41 wp_remote_retrieve_body($response); 42 } 41 43 42 44 delete_option('fastcron_id'); -
fastcron/tags/1.0.0/readme.txt
r3142128 r3142585 1 === FastCron ===2 Contributors: fastcron1 === FastCron - Run WP Cron for free === 2 Contributors: FastCron 3 3 Tags: wp-cron, cronjob, cron job, online cronjob, web cron 4 4 Requires at least: 2.9 -
fastcron/trunk/fastcron.php
r3142113 r3142585 1 1 <?php 2 2 /* 3 Plugin Name: FastCron 3 Plugin Name: FastCron - Run WP Cron for free 4 4 Plugin URI: https://wordpress.org/plugins/fastcron/ 5 5 Description: This plugin will <strong>set up a free cronjob at FastCron</strong> to run your <strong>wp-cron.php</strong> file automatically. Completely free, no registration required. … … 34 34 35 35 function fastcron_deactivate() { 36 $url = 'https://app.fastcron.com/free?site='. site_url() 36 if(get_option('fastcron_id')) { 37 $url = 'https://app.fastcron.com/free?site='. site_url() 37 38 . '&remove=' . get_option('fastcron_secret'); 38 39 39 $response = wp_remote_get($url, ['timeout' => 30]); 40 wp_remote_retrieve_body($response); 40 $response = wp_remote_get($url, ['timeout' => 30]); 41 wp_remote_retrieve_body($response); 42 } 41 43 42 44 delete_option('fastcron_id'); -
fastcron/trunk/readme.txt
r3142113 r3142585 1 === FastCron ===2 Contributors: fastcron1 === FastCron - Run WP Cron for free === 2 Contributors: FastCron 3 3 Tags: wp-cron, cronjob, cron job, online cronjob, web cron 4 4 Requires at least: 2.9
Note: See TracChangeset
for help on using the changeset viewer.