Plugin Directory

Changeset 1236116


Ignore:
Timestamp:
09/02/2015 08:27:37 AM (10 years ago)
Author:
hinnerk
Message:

Update to version 1.3.1

Location:
improved-cron/trunk
Files:
8 added
4 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • improved-cron/trunk/imcron.php

    r1236080 r1236116  
    44Plugin URI: https://wordpress.org/plugins/improved-cron/
    55Description: WP Cron requires a user to visit the site to trigger your job.  With Improved Cron, your WP Cron jobs will run when you want them to.
    6 Version: 1.3
     6Version: 1.3.1
    77Author: CPK Web Solutions + Hinnerk Altenburg
    88Author URI: http://cpkwebsolutions.com/
     
    2929
    3030            // delete old config file < v1.3
    31             $imcron_settings = get_option( 'imcron_settings' );
    32             if ( empty( $imcron_settings ) && file_exists( dirname( __FILE__ ) . '/bgp.cfg' ) ) {
     31            $settings = get_option( 'imcron_settings', array() );
     32            if ( empty( $settings ) && file_exists( dirname( __FILE__ ) . '/bgp.cfg' ) ) {
    3333                unlink( dirname( __FILE__ ) . '/bgp.cfg' );
    3434                $this->bgp->set_settings();
  • improved-cron/trunk/readme.txt

    r1236080 r1236116  
    66Tested up to: 4.3
    77Stable tag: 1.3.0
     8License: GPLv2 or later
    89
    910Keep WP-Cron running every minute for scheduled tasks without actually using Cron.
     
    6869I haven’t done any testing with WordPress multisite yet. I created it for a project I was working on and spun it off into a standalone plugin. Unfortunately, I haven’t made anywhere near enough sales to justify much extra development effort at this stage, however I’m open to sponsorship to test and/or extend it.
    6970
    70 = I received the following error: PHP Warning: file_get_contents(1320997139.lck) [function.file-get-contents]: failed to open stream: No such file or directory =
    71 Your web user needs permission to create files in ‘../plugins/improved-cron/bgp’. It uses the files to ensure only one copy of the background job runs at any one time.
    72 
    7371== Screenshots ==
    7472
     
    7674
    7775== Changelog ==
     76
     77= 1.3.1 =
     78* Fixed readme.txt
     79* Cleanup SVN
    7880
    7981= 1.3.0 =
     
    8890
    8991== Upgrade Notice ==
     92
     93= 1.3 =
     94Improved Cron has been updated to run with current WP versions (4.3), properly. The interval can now be changed via filter hook.
Note: See TracChangeset for help on using the changeset viewer.