Changeset 3390578
- Timestamp:
- 11/05/2025 04:04:45 PM (6 weeks ago)
- Location:
- http-requests-manager
- Files:
-
- 2 edited
- 7 copied
-
tags/1.3.9 (copied) (copied from http-requests-manager/trunk)
-
tags/1.3.9/a-http-requests-manager.php (copied) (copied from http-requests-manager/trunk/a-http-requests-manager.php)
-
tags/1.3.9/assets/css/admin.css (copied) (copied from http-requests-manager/trunk/assets/css/admin.css)
-
tags/1.3.9/assets/js/admin.js (copied) (copied from http-requests-manager/trunk/assets/js/admin.js)
-
tags/1.3.9/http-requests-manager.php (copied) (copied from http-requests-manager/trunk/http-requests-manager.php) (6 diffs)
-
tags/1.3.9/readme.txt (copied) (copied from http-requests-manager/trunk/readme.txt) (2 diffs)
-
tags/1.3.9/templates/page-settings.php (copied) (copied from http-requests-manager/trunk/templates/page-settings.php)
-
trunk/http-requests-manager.php (modified) (6 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
http-requests-manager/tags/1.3.9/http-requests-manager.php
r3298961 r3390578 5 5 Plugin URI: https://veppa.com/http-requests-manager/ 6 6 Description: Limit, Debug, Optimize WP_HTTP requests. Limit by request count, page load time, reduce timeout for each request. Speed up login and admin pages. 7 Version: 1.3. 87 Version: 1.3.9 8 8 Author: veppa 9 9 Author URI: https://veppa.com/ … … 32 32 * 33 33 * TODO: 34 * 35 * - when allow everywhere do not log allowed cron jobs. because it will overload reports. 36 * - add easier blocking 37 * - need to do something with smart block. eather add manual or 38 * 39 * 40 * 34 41 - add blocking by theme 35 42 - add blocking by core function … … 76 83 { 77 84 78 const VERSION = '1.3. 8';85 const VERSION = '1.3.9'; 79 86 const ID = 'http-requests-manager'; 80 87 const TIMEOUT = 2; … … 1183 1190 } 1184 1191 1185 function request_log($url, $ stream = null)1192 function request_log($url, $args = array()) 1186 1193 { 1187 1194 $row = array( … … 1191 1198 ); 1192 1199 1193 if ( $stream)1194 { 1195 $row['stream'] = $ stream;1200 if (!empty($args['stream'])) 1201 { 1202 $row['stream'] = $args['stream']; 1196 1203 } 1197 1204 … … 1448 1455 // count current request 1449 1456 // capture request to apply request limits even if not logging. 1450 $this->request_log($url, $args ['stream']);1457 $this->request_log($url, $args); 1451 1458 1452 1459 // show nonempty url for checkpoint. if url empty use original url. -
http-requests-manager/tags/1.3.9/readme.txt
r3298961 r3390578 5 5 Requires at least: 4.7 6 6 Tested up to: 6.8 7 Stable tag: 1.3. 87 Stable tag: 1.3.9 8 8 License: GPLv2 9 9 … … 201 201 202 202 203 = 1.3.9 - 5 November 2025 = 204 205 * Fixed: calling $args['stream'] array value without checking existence. 206 207 203 208 = 1.3.8 - 22 May 2025 = 204 209 -
http-requests-manager/trunk/http-requests-manager.php
r3298961 r3390578 5 5 Plugin URI: https://veppa.com/http-requests-manager/ 6 6 Description: Limit, Debug, Optimize WP_HTTP requests. Limit by request count, page load time, reduce timeout for each request. Speed up login and admin pages. 7 Version: 1.3. 87 Version: 1.3.9 8 8 Author: veppa 9 9 Author URI: https://veppa.com/ … … 32 32 * 33 33 * TODO: 34 * 35 * - when allow everywhere do not log allowed cron jobs. because it will overload reports. 36 * - add easier blocking 37 * - need to do something with smart block. eather add manual or 38 * 39 * 40 * 34 41 - add blocking by theme 35 42 - add blocking by core function … … 76 83 { 77 84 78 const VERSION = '1.3. 8';85 const VERSION = '1.3.9'; 79 86 const ID = 'http-requests-manager'; 80 87 const TIMEOUT = 2; … … 1183 1190 } 1184 1191 1185 function request_log($url, $ stream = null)1192 function request_log($url, $args = array()) 1186 1193 { 1187 1194 $row = array( … … 1191 1198 ); 1192 1199 1193 if ( $stream)1194 { 1195 $row['stream'] = $ stream;1200 if (!empty($args['stream'])) 1201 { 1202 $row['stream'] = $args['stream']; 1196 1203 } 1197 1204 … … 1448 1455 // count current request 1449 1456 // capture request to apply request limits even if not logging. 1450 $this->request_log($url, $args ['stream']);1457 $this->request_log($url, $args); 1451 1458 1452 1459 // show nonempty url for checkpoint. if url empty use original url. -
http-requests-manager/trunk/readme.txt
r3298961 r3390578 5 5 Requires at least: 4.7 6 6 Tested up to: 6.8 7 Stable tag: 1.3. 87 Stable tag: 1.3.9 8 8 License: GPLv2 9 9 … … 201 201 202 202 203 = 1.3.9 - 5 November 2025 = 204 205 * Fixed: calling $args['stream'] array value without checking existence. 206 207 203 208 = 1.3.8 - 22 May 2025 = 204 209
Note: See TracChangeset
for help on using the changeset viewer.