Plugin Directory

Changeset 3142585


Ignore:
Timestamp:
08/28/2024 04:40:47 AM (19 months ago)
Author:
fastcron
Message:

Update name

Location:
fastcron
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • fastcron/tags/1.0.0/fastcron.php

    r3142128 r3142585  
    11<?php
    22/*
    3 Plugin Name: FastCron
     3Plugin Name: FastCron - Run WP Cron for free
    44Plugin URI: https://wordpress.org/plugins/fastcron/
    55Description: 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.
     
    3434
    3535function 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()
    3738        . '&remove=' . get_option('fastcron_secret');
    3839
    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    }
    4143
    4244    delete_option('fastcron_id');
  • fastcron/tags/1.0.0/readme.txt

    r3142128 r3142585  
    1 === FastCron ===
    2 Contributors: fastcron
     1=== FastCron - Run WP Cron for free ===
     2Contributors: FastCron
    33Tags: wp-cron, cronjob, cron job, online cronjob, web cron
    44Requires at least: 2.9
  • fastcron/trunk/fastcron.php

    r3142113 r3142585  
    11<?php
    22/*
    3 Plugin Name: FastCron
     3Plugin Name: FastCron - Run WP Cron for free
    44Plugin URI: https://wordpress.org/plugins/fastcron/
    55Description: 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.
     
    3434
    3535function 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()
    3738        . '&remove=' . get_option('fastcron_secret');
    3839
    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    }
    4143
    4244    delete_option('fastcron_id');
  • fastcron/trunk/readme.txt

    r3142113 r3142585  
    1 === FastCron ===
    2 Contributors: fastcron
     1=== FastCron - Run WP Cron for free ===
     2Contributors: FastCron
    33Tags: wp-cron, cronjob, cron job, online cronjob, web cron
    44Requires at least: 2.9
Note: See TracChangeset for help on using the changeset viewer.