Plugin Directory

Changeset 3345330


Ignore:
Timestamp:
08/16/2025 12:29:45 AM (7 months ago)
Author:
leopardhost
Message:

v1.4.1: Supported WP to 6.8; Improve readme.txt

Location:
tnc-toolbox
Files:
22 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • tnc-toolbox/trunk/readme.txt

    r3246268 r3345330  
    66Tags: NGINX, Cache Purge, Web Performance, Automatic Purge, Freeware
    77Requires at least:
    8 Tested up to: 6.7
     8Tested up to: 6.8
    99Requires PHP:
    10 Stable tag: 1.4.0
     10Stable tag: 1.4.1
    1111License: GPLv3
    1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1313
    14 Adds functionality (cache purge, etc) to WP - designed for NGINX-powered Servers on cPanel+WHM. Made to help you fly online!
     14Made to help you fly online! Adds functionality (cache purge, etc) to WP - designed for NGINX-powered Servers on cPanel+WHM.
    1515
    1616
     
    2929- Also purges the Cache when the WP Core is successfully updated
    3030- Lets you know if the plugin is activated but not yet configured
    31 - Only allows Administrators to enable/disable caching; edit config
     31- Only allows Admins to enable/disable caching & edit configs
    3232
    3333**Eager for even more capabilities?**
     
    3737_Please let us know your ideas on [GitHub](https://github.com/The-Network-Crew/TNC-Toolbox-for-WordPress/) - we'd love to hear from you!_
    3838
    39 **FOSS by [The Network Crew Pty Ltd](https://tnc.works) for [Merlot Digital](https://merlot.digital) and the world.**
     39**FOSS by [The Network Crew Pty Ltd](https://tnc.works) (TNC) for [Merlot Digital](https://merlot.digital) & the world.** ❤️
    4040
     41== Screenshots ==
     42
     431. Top Menu Bar options for NGINX Caching.
     442. Configuration in the WP Admin GUI.
    4145
    4246== Frequently Asked Questions ==
     
    4448= Does the plugin allow me to purge the NGINX User Cache? =
    4549
    46 Yes, it does! All users can do this easily via the button in the admin top bar.
     50**Yes, it does!** All Users can do this easily via the button in the Admin top menu bar.
    4751
    4852= Does it allow me to disable or enable NGINX User Caching? =
    4953
    50 Yes! Admins can disable or enable the cache from the top admin bar.
     54**Yes!** Admins can disable or enable the cache from the Admin top menu bar.
    5155
    52 This is only visible if you are logged in as an Administrator.
     56This is only visible if you are logged in as a WP Administrator.
    5357
    5458= Can I request functionality to be added into the module? =
    5559
    56 Yes! Simply raise an Issue/PR on the [GitHub repository](https://github.com/The-Network-Crew/TNC-Toolbox-for-WordPress/issues) and we'll take a look.
     60**Yes!** Simply raise an Issue/PR on the [GitHub repository](https://github.com/The-Network-Crew/TNC-Toolbox-for-WordPress/issues) and we'll take a look.
    5761
    5862= Why am I getting a cURL Error 3 on my WP-Admin dashboard? =
    5963
    60 Most likely due to newline /n characters in your config files. Use the [script](https://github.com/The-Network-Crew/TNC-Toolbox-for-WordPress/blob/main/script-remove-conf-newlines.sh) in the GitHub Repo to remove these.
     64It's most likely due to newline /n characters in your config files.
     65
     66Use the [script](https://github.com/The-Network-Crew/TNC-Toolbox-for-WordPress/blob/main/script-remove-conf-newlines.sh) in the GitHub Repo to remove these.
    6167
    6268= Is there a way for us to deploy the plugin server-wide? =
    6369
    64 Yes! If you check the GitHub repository, you can use the bash scripts there (make sure you satisfy their pre-requisites) to deploy/update the plugin server-wide.
     70**Yes!** If you check the [GitHub repository](https://github.com/The-Network-Crew/TNC-Toolbox-for-WordPress/), you can use the bash scripts there (make sure you satisfy their pre-requisites) to deploy/update the plugin server-wide.
    6571
    66 Please note there are pre-requisites to running the scripts, so understand & prepare before usage as always.
    67 
     72Please note there are pre-requisites to running the scripts, so understand & prepare before usage as always!
    6873
    6974== Installation ==
     
    8792- You can go further with caching, and should: like browser-caching assets!
    8893
     94**3-layer Cache:**
     951. NGINX Caching Proxy (ahead of Apache)
     962. WP Super Cache, WP Rocket, etc on-site
     973. htaccess/etc rules for Browser Caching
     98
     99This way, you can ensure maximum efficiency!
     100
     101The key is to purge when stale, so properly configuring your WP Plugin Cache is critical to ensuring that you don't end up with cache misses due to stale data that could've/should've been purged by garbage collection, preloading, etc, rule-sets.
    89102
    90103== Changelog ==
     104
     105= 1.4.1: Aug 16, 2025 =
     106* Update WordPress supported version to 6.8.x (#26)
     107* Add screenshots to the WP.org plugin listing (#27)
     108* Slight improvements to the WP.org Plugin Readme (#27)
    91109
    92110= 1.4.0: Feb 21, 2025 =
  • tnc-toolbox/trunk/tnc-wp-toolbox.php

    r3246268 r3345330  
    66 * @author        The Network Crew Pty Ltd (TNC)
    77 * @license       gplv3
    8  * @version       1.4.0
     8 * @version       1.4.1
    99 *
    1010 * @wordpress-plugin
     
    1212 * Plugin URI:    https://merlot.digital
    1313 * Description:   Adds functionality to WP - designed for NGINX-powered Servers on cPanel+WHM. Made to help you fly online!
    14  * Version:       1.4.0
     14 * Version:       1.4.1
    1515 * Author:        The Network Crew Pty Ltd (TNC)
    1616 * Author URI:    https://tnc.works
     
    4747
    4848// Plugin version
    49 define( 'TNCWPTBOX_VERSION',        '1.4.0' );
     49define( 'TNCWPTBOX_VERSION',        '1.4.1' );
    5050
    5151// Plugin Root File
Note: See TracChangeset for help on using the changeset viewer.