Changeset 3169057
- Timestamp:
- 10/15/2024 07:41:50 AM (16 months ago)
- Location:
- fastcache-by-host-it
- Files:
-
- 48 added
- 4 edited
-
tags/1.2.17 (added)
-
tags/1.2.17/LICENSE.txt (added)
-
tags/1.2.17/README.txt (added)
-
tags/1.2.17/admin (added)
-
tags/1.2.17/admin/class-fastcache-admin.php (added)
-
tags/1.2.17/admin/css (added)
-
tags/1.2.17/admin/css/fastcache-admin.css (added)
-
tags/1.2.17/admin/index.php (added)
-
tags/1.2.17/admin/js (added)
-
tags/1.2.17/admin/js/fastcache-admin.js (added)
-
tags/1.2.17/admin/js/fastcache-generic-admin.js (added)
-
tags/1.2.17/admin/partials (added)
-
tags/1.2.17/admin/partials/faq.html (added)
-
tags/1.2.17/admin/partials/faq.php (added)
-
tags/1.2.17/admin/partials/fastcache-admin-display.php (added)
-
tags/1.2.17/cache (added)
-
tags/1.2.17/common (added)
-
tags/1.2.17/common/class-fastcache-common.php (added)
-
tags/1.2.17/fastcache.php (added)
-
tags/1.2.17/includes (added)
-
tags/1.2.17/includes/class-fastcache-activator.php (added)
-
tags/1.2.17/includes/class-fastcache-adminbar.php (added)
-
tags/1.2.17/includes/class-fastcache-deactivator.php (added)
-
tags/1.2.17/includes/class-fastcache-i18n.php (added)
-
tags/1.2.17/includes/class-fastcache-loader.php (added)
-
tags/1.2.17/includes/class-fastcache.php (added)
-
tags/1.2.17/includes/index.php (added)
-
tags/1.2.17/index.php (added)
-
tags/1.2.17/languages (added)
-
tags/1.2.17/languages/fastcache.pot (added)
-
tags/1.2.17/logs (added)
-
tags/1.2.17/logs/log.txt (added)
-
tags/1.2.17/public (added)
-
tags/1.2.17/public/class-fastcache-public.php (added)
-
tags/1.2.17/public/css (added)
-
tags/1.2.17/public/css/fastcache-public.css (added)
-
tags/1.2.17/public/index.php (added)
-
tags/1.2.17/public/js (added)
-
tags/1.2.17/public/js/fastcache-public.js (added)
-
tags/1.2.17/public/partials (added)
-
tags/1.2.17/public/partials/fastcache-public-display.php (added)
-
tags/1.2.17/public/workarounds.class.php (added)
-
tags/1.2.17/uninstall.php (added)
-
tags/1.2.17/workarounds (added)
-
tags/1.2.17/workarounds/Rey.class.php (added)
-
tags/1.2.17/workarounds/Storefront.class.php (added)
-
tags/1.2.17/workarounds/handlUtmGrabber.class.php (added)
-
tags/1.2.17/workarounds/yithwcwl.class.php (added)
-
trunk/README.txt (modified) (1 diff)
-
trunk/fastcache.php (modified) (2 diffs)
-
trunk/public/js/fastcache-public.js (modified) (1 diff)
-
trunk/public/workarounds.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fastcache-by-host-it/trunk/README.txt
r3169055 r3169057 5 5 Tested up to: 6.6.1 6 6 Requires PHP: 8.0 7 Stable Tag: 1.2.1 67 Stable Tag: 1.2.17 8 8 License: GPL-2.0+ 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.txt -
fastcache-by-host-it/trunk/fastcache.php
r3169055 r3169057 17 17 * Plugin URI: https://fastcachecdn.com/ 18 18 * Description: Abilita il tuo sito Wordpress alla prima vera CDN realizzata PER Wordpress e configurata AD-HOC per il tuo sito. Il massimo della velocità senza difficoltà di setup. 19 * Version: 1.2.1 619 * Version: 1.2.17 20 20 * Author: Host.it - Alessandro Poletto 21 21 * Author URI: https://fastcachecdn.com/ … … 137 137 * Rename this for your plugin and update it as you release new versions. 138 138 */ 139 define( 'FASTCACHEHOST_VERSION', '1.2.1 6' );139 define( 'FASTCACHEHOST_VERSION', '1.2.17' ); 140 140 141 141 /** -
fastcache-by-host-it/trunk/public/js/fastcache-public.js
r3160435 r3169057 21 21 }, function (response) { 22 22 if(jQuery("#fastcacheMessageBox").length<1) { 23 jQuery('body').append('<div id=" fastcacheMessageBox" class="">' + response + '</div>');23 jQuery('body').append('<div id="litespeed-cache" class="">' + response + '</div>'); 24 24 } else { 25 25 jQuery("#fastcacheMessageBox").html(response ); -
fastcache-by-host-it/trunk/public/workarounds.class.php
r3161311 r3169057 48 48 $cookie_expiration = time() + (365 * 24 * 60 * 60); 49 49 if (!isset($_COOKIE[$cookie_name]) || $_COOKIE[$cookie_name]!=$cookie_value) { 50 setcookie($cookie_name, $cookie_value, $cookie_expiration, "/"); 50 $dominio = $_SERVER['HTTP_HOST']; 51 $dominioArr=explode(".",$dominio); 52 if(count($dominioArr)>2) { 53 $dominio = "." . $dominioArr[count($dominioArr)-2] . "." . $dominioArr[count($dominioArr)-1]; 54 } 55 setcookie($cookie_name, $cookie_value, $cookie_expiration, "/", $dominio); 51 56 } 52 57 }
Note: See TracChangeset
for help on using the changeset viewer.