Changeset 2481527
- Timestamp:
- 02/25/2021 02:38:55 PM (5 years ago)
- Location:
- hostry-pagespeed-booster/trunk
- Files:
-
- 3 edited
-
cdn-minifier.php (modified) (1 diff)
-
includes/main/CdnMinifierPlugin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hostry-pagespeed-booster/trunk/cdn-minifier.php
r2175483 r2481527 6 6 Author URI: https://hostry.com/ 7 7 License: GPLv2 or later 8 Version: 1.2. 48 Version: 1.2.5 9 9 */ 10 10 -
hostry-pagespeed-booster/trunk/includes/main/CdnMinifierPlugin.php
r2175479 r2481527 342 342 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); 343 343 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 344 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); 344 345 curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); 345 346 $response = curl_exec($ch); … … 347 348 } else { 348 349 $ctx = stream_context_create(array( 349 'http' => 350 array( 351 'timeout' => $timeout 352 ) 350 'http' => array( 351 'timeout' => $timeout 352 ), 353 'ssl' => array( 354 'verify_peer' => false, 355 'verify_peer_name' => false, 356 ), 353 357 )); 354 358 -
hostry-pagespeed-booster/trunk/readme.txt
r2175479 r2481527 3 3 Tags: Pagespeed, Minify, Google Search Console, SEO, CDN 4 4 Requires at least: 4.7 5 Tested up to: 5. 25 Tested up to: 5.6 6 6 Requires PHP: 5.3 7 7 Stable tag: trunk … … 96 96 == Changelog == 97 97 98 = 1.2.5 = 99 * Compatibility tested with versions of Wordpress 5.6.2 100 * Follow Location allowed for CDN during verification 101 * Minor optimizing check CDN url 102 98 103 = 1.2.4 = 99 104 * CSS minification set by default as off
Note: See TracChangeset
for help on using the changeset viewer.