Plugin Directory

Changeset 2514963


Ignore:
Timestamp:
04/14/2021 03:10:41 PM (5 years ago)
Author:
esselinknu
Message:

2.67

  • Added LiteSpeed cache support
Location:
esselinknu-settings/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • esselinknu-settings/trunk/esselink-nu-settings.php

    r2477788 r2514963  
    44 * Plugin URI: http://www.esselink.nu
    55 * Description: Settings plugin for custom WP configuration for Esselink.nu WP websites
    6  * Version: 2.66
     6 * Version: 2.67
    77 * Author: Esselink.nu
    88 * Author URI: http://www.esselink.nu
    99**/
    10 $esselink_nu_settings_verson = 2.66;
     10$esselink_nu_settings_verson = 2.67;
    1111
    1212// Block  access to this file
  • esselinknu-settings/trunk/includes/basic-settings.php

    r2391647 r2514963  
    149149    add_filter( 'auto_update_theme', '__return_true' );
    150150}
    151 
    152151
    153152// Set auto update Plugins
     
    176175}
    177176
     177// Litespeed custom config
     178if(get_option('litespeed.conf.esi') == false)
     179{
     180    update_option( 'litespeed.conf.esi', 1 );
     181   
     182    $esinonce = unserialize('a:4:{i:0;s:11:"stats_nonce";i:1;s:15:"subscribe_nonce";i:2;s:7:"wp_rest";i:3;s:6:"wpcf7*";}');
     183    update_option('litespeed.conf.esi-nonce', $esinonce);   
     184}
     185
     186
    178187// Remove WP Default favicon
    179188add_action( 'do_faviconico', function() {
  • esselinknu-settings/trunk/readme.txt

    r2477788 r2514963  
    33Tags: esselink.nu,esselink
    44Requires at least: 4.0
    5 Tested up to: 5.6
     5Tested up to: 5.7
    66Stable tag: trunk
    77License: GPLv2 or later
     
    162162= 2.66 =
    163163* Minor bugfix for redirects function
     164= 2.67 =
     165* Added LiteSpeed cache support
    164166
    165167== Upgrade Notice ==
Note: See TracChangeset for help on using the changeset viewer.