Plugin Directory

Changeset 1408544


Ignore:
Timestamp:
05/02/2016 12:51:10 AM (10 years ago)
Author:
computermagic
Message:

tagging version 0.0.6

Location:
wpdelaycron
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • wpdelaycron/tags/0.0.6/readme.txt

    r1170656 r1408544  
    44Tags: cron, delay, high, traffic
    55Requires at least: 3.0.1
    6 Tested up to: 4.2
    7 Stable tag: 0.0.5
     6Tested up to: 4.5.1
     7Stable tag: 0.0.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4545== Changelog ==
    4646
     47= 0.0.6 =
     48Tested on latest wordpress - 4.5.1
     49
    4750= 0.0.5 =
    4851Fix multi site bug
  • wpdelaycron/tags/0.0.6/wpdelaycron.php

    r1170656 r1408544  
    77 * Plugin URI: http://www.cmagic.biz/wordpress/wpdelaycron/
    88 * Description: Prevent wordpress from running cron on each page view.
    9  * Version: 0.0.5
    10  * Author: Ray Pulsipher
     9 * Version: 0.0.6
     10 * Author: Ray Pulsip=== WP Delay Cron ===
     11Contributors: computermagic
     12Donate link: http://www.cmagic.biz/wordpress/wpdelaycron/
     13Tags: cron, delay, high, traffic
     14Requires at least: 3.0.1
     15Tested up to: 4.5.2
     16Stable tag: 0.0.6
     17License: GPLv2 or later
     18License URI: http://www.gnu.org/licenses/gpl-2.0.html
     19
     20Prevent cron from running every time a page is viewed. Good for high traffic sites.
     21
     22== Description ==
     23
     24The WP Delay Cron plugin will prevent wordpress from running its cron tool for every page view.
     25For high traffic sites, this can result in a considerable drop in server load.
     26
     27== Installation ==
     28
     29This section describes how to install the plugin and get it working.
     30
     31e.g.
     32
     331. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
     341. Activate the plugin through the 'Plugins' menu in WordPress
     35
     36== Frequently Asked Questions ==
     37
     38= Why wouldn't you want to run the cron every page it? =
     39
     40Wordpress makes a seperate web request to run the cron. For every page hit the server
     41has to process 2 web requests. This is wastefull and adds up on a high traffic site.
     42
     43= How long does it delay for?  =
     44
     45Pick a number in the settings page. This will wait to run the cron until that many
     46page views occur. If you pick 10, then you will run the cron every 10 page views.
     47
     48== Screenshots ==
     49
     50== Changelog ==
     51
     52= 0.0.6 =
     53Tested on latest wordpress - 4.5.1
     54
     55= 0.0.5 =
     56Fix for multisite installs
     57
     58= 0.0.4 =
     59Minor code refactoring
     60
     61= 0.0.3 =
     62Misc Changes
     63
     64= 0.0.2 =
     65Store counter in wp options instead of a file
     66
     67= 0.0.1 =
     68Initial Release.
     69
     70== Upgrade Notice ==
     71
     72
     73
    1174 * Author URI: http://cmagic.biz
    1275 * License: GPL2
  • wpdelaycron/trunk/readme.txt

    r1170656 r1408544  
    44Tags: cron, delay, high, traffic
    55Requires at least: 3.0.1
    6 Tested up to: 4.2
    7 Stable tag: 0.0.5
     6Tested up to: 4.5.1
     7Stable tag: 0.0.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4545== Changelog ==
    4646
     47= 0.0.6 =
     48Tested on latest wordpress - 4.5.1
     49
    4750= 0.0.5 =
    4851Fix multi site bug
  • wpdelaycron/trunk/wpdelaycron.php

    r1170656 r1408544  
    77 * Plugin URI: http://www.cmagic.biz/wordpress/wpdelaycron/
    88 * Description: Prevent wordpress from running cron on each page view.
    9  * Version: 0.0.5
    10  * Author: Ray Pulsipher
     9 * Version: 0.0.6
     10 * Author: Ray Pulsip=== WP Delay Cron ===
     11Contributors: computermagic
     12Donate link: http://www.cmagic.biz/wordpress/wpdelaycron/
     13Tags: cron, delay, high, traffic
     14Requires at least: 3.0.1
     15Tested up to: 4.5.2
     16Stable tag: 0.0.6
     17License: GPLv2 or later
     18License URI: http://www.gnu.org/licenses/gpl-2.0.html
     19
     20Prevent cron from running every time a page is viewed. Good for high traffic sites.
     21
     22== Description ==
     23
     24The WP Delay Cron plugin will prevent wordpress from running its cron tool for every page view.
     25For high traffic sites, this can result in a considerable drop in server load.
     26
     27== Installation ==
     28
     29This section describes how to install the plugin and get it working.
     30
     31e.g.
     32
     331. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
     341. Activate the plugin through the 'Plugins' menu in WordPress
     35
     36== Frequently Asked Questions ==
     37
     38= Why wouldn't you want to run the cron every page it? =
     39
     40Wordpress makes a seperate web request to run the cron. For every page hit the server
     41has to process 2 web requests. This is wastefull and adds up on a high traffic site.
     42
     43= How long does it delay for?  =
     44
     45Pick a number in the settings page. This will wait to run the cron until that many
     46page views occur. If you pick 10, then you will run the cron every 10 page views.
     47
     48== Screenshots ==
     49
     50== Changelog ==
     51
     52= 0.0.6 =
     53Tested on latest wordpress - 4.5.1
     54
     55= 0.0.5 =
     56Fix for multisite installs
     57
     58= 0.0.4 =
     59Minor code refactoring
     60
     61= 0.0.3 =
     62Misc Changes
     63
     64= 0.0.2 =
     65Store counter in wp options instead of a file
     66
     67= 0.0.1 =
     68Initial Release.
     69
     70== Upgrade Notice ==
     71
     72
     73
    1174 * Author URI: http://cmagic.biz
    1275 * License: GPL2
Note: See TracChangeset for help on using the changeset viewer.