Changeset 1236116
- Timestamp:
- 09/02/2015 08:27:37 AM (10 years ago)
- Location:
- improved-cron/trunk
- Files:
-
- 8 added
- 4 deleted
- 2 edited
-
bgp (added)
-
bgp.cfg (deleted)
-
bgp/.gitkeep (added)
-
bgp/bgp.log (added)
-
bgp/index.php (added)
-
bgp/logfile.log (added)
-
css (deleted)
-
documentation/index.php (added)
-
imcron.php (modified) (2 diffs)
-
img (deleted)
-
readme.txt (modified) (4 diffs)
-
screenshot-1.png (added)
-
view/index.php (added)
-
view/manage.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
improved-cron/trunk/imcron.php
r1236080 r1236116 4 4 Plugin URI: https://wordpress.org/plugins/improved-cron/ 5 5 Description: 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 6 Version: 1.3.1 7 7 Author: CPK Web Solutions + Hinnerk Altenburg 8 8 Author URI: http://cpkwebsolutions.com/ … … 29 29 30 30 // 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' ) ) { 33 33 unlink( dirname( __FILE__ ) . '/bgp.cfg' ); 34 34 $this->bgp->set_settings(); -
improved-cron/trunk/readme.txt
r1236080 r1236116 6 6 Tested up to: 4.3 7 7 Stable tag: 1.3.0 8 License: GPLv2 or later 8 9 9 10 Keep WP-Cron running every minute for scheduled tasks without actually using Cron. … … 68 69 I 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. 69 70 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 73 71 == Screenshots == 74 72 … … 76 74 77 75 == Changelog == 76 77 = 1.3.1 = 78 * Fixed readme.txt 79 * Cleanup SVN 78 80 79 81 = 1.3.0 = … … 88 90 89 91 == Upgrade Notice == 92 93 = 1.3 = 94 Improved 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.