Changeset 2517881
- Timestamp:
- 04/19/2021 09:03:43 PM (5 years ago)
- Location:
- speedien
- Files:
-
- 4 edited
- 9 copied
-
tags/1.0.3 (copied) (copied from speedien/trunk)
-
tags/1.0.3/advanced-cache.php (copied) (copied from speedien/trunk/advanced-cache.php)
-
tags/1.0.3/readme.txt (copied) (copied from speedien/trunk/readme.txt) (2 diffs)
-
tags/1.0.3/speedien.php (copied) (copied from speedien/trunk/speedien.php) (1 diff)
-
tags/1.0.3/speedien_admin_bar.php (copied) (copied from speedien/trunk/speedien_admin_bar.php)
-
tags/1.0.3/speedien_admin_notice.php (copied) (copied from speedien/trunk/speedien_admin_notice.php)
-
tags/1.0.3/speedien_cache.php (copied) (copied from speedien/trunk/speedien_cache.php) (1 diff)
-
tags/1.0.3/speedien_purge_hooks.php (copied) (copied from speedien/trunk/speedien_purge_hooks.php) (1 diff)
-
tags/1.0.3/speedien_ui.php (copied) (copied from speedien/trunk/speedien_ui.php)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/speedien.php (modified) (1 diff)
-
trunk/speedien_cache.php (modified) (1 diff)
-
trunk/speedien_purge_hooks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
speedien/tags/1.0.3/readme.txt
r2517880 r2517881 5 5 Tested up to: 5.7 6 6 Requires PHP: 5.6 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 108 108 == Changelog == 109 109 110 = 1.0.3 - 19 Apr, 2021 = 111 - Added support for preloading cache via Speedien console 112 - Improved error handling for empty cache directory 113 110 114 = 1.0.2 - 30 Mar, 2021 = 111 115 - Improved cache preloading -
speedien/tags/1.0.3/speedien.php
r2517880 r2517881 7 7 * Text Domain: speedien 8 8 * Domain Path: / 9 * Version: 1.0. 29 * Version: 1.0.3 10 10 */ 11 11 -
speedien/tags/1.0.3/speedien_cache.php
r2517880 r2517881 158 158 update_option('speedien_preload_status','Complete'); 159 159 } 160 if($action == 'startpreload') 161 { 162 speedien_preload_content_handler(); 163 } 160 164 } 161 165 else -
speedien/tags/1.0.3/speedien_purge_hooks.php
r2517880 r2517881 38 38 { 39 39 $cachedir = WP_CONTENT_DIR . "/cache/speedien"; 40 mkdir(WP_CONTENT_DIR . "/cache/speedien",0755,true); 41 40 42 $subdiretories = new RecursiveDirectoryIterator($cachedir, RecursiveDirectoryIterator::SKIP_DOTS); 43 if(!empty($subdiretories)) 41 44 $files = new RecursiveIteratorIterator($subdiretories, RecursiveIteratorIterator::CHILD_FIRST); 45 46 if(!empty($files)) 42 47 foreach($files as $file) { 43 48 if ($file->isDir()){ -
speedien/trunk/readme.txt
r2505608 r2517881 5 5 Tested up to: 5.7 6 6 Requires PHP: 5.6 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 108 108 == Changelog == 109 109 110 = 1.0.3 - 19 Apr, 2021 = 111 - Added support for preloading cache via Speedien console 112 - Improved error handling for empty cache directory 113 110 114 = 1.0.2 - 30 Mar, 2021 = 111 115 - Improved cache preloading -
speedien/trunk/speedien.php
r2510236 r2517881 7 7 * Text Domain: speedien 8 8 * Domain Path: / 9 * Version: 1.0. 29 * Version: 1.0.3 10 10 */ 11 11 -
speedien/trunk/speedien_cache.php
r2505608 r2517881 158 158 update_option('speedien_preload_status','Complete'); 159 159 } 160 if($action == 'startpreload') 161 { 162 speedien_preload_content_handler(); 163 } 160 164 } 161 165 else -
speedien/trunk/speedien_purge_hooks.php
r2505608 r2517881 38 38 { 39 39 $cachedir = WP_CONTENT_DIR . "/cache/speedien"; 40 mkdir(WP_CONTENT_DIR . "/cache/speedien",0755,true); 41 40 42 $subdiretories = new RecursiveDirectoryIterator($cachedir, RecursiveDirectoryIterator::SKIP_DOTS); 43 if(!empty($subdiretories)) 41 44 $files = new RecursiveIteratorIterator($subdiretories, RecursiveIteratorIterator::CHILD_FIRST); 45 46 if(!empty($files)) 42 47 foreach($files as $file) { 43 48 if ($file->isDir()){
Note: See TracChangeset
for help on using the changeset viewer.