Jon Dingman
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: 2 step auth/verification for www.ads-software.comAlright, thanks!
Yes I use LastPass already. A valid point of who manages 2FA resets at that point.
Cheers
Forum: Everything else WordPress
In reply to: 2 step auth/verification for www.ads-software.com@jdembowski Thanks. Bummer. Any plans on the roadmap to add it?
Forum: Plugins
In reply to: [W3 Total Cache] Minify breaks siteI find I have the same issue frequently, so I have to use another plugin to do minification, unfortunately. I’d love to be able to use only W3TC for everythign.
I was able to get it working, but it’s a bit of a hack
... /* That's all, stop editing! Happy publishing. */ /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', dirname( __FILE__ ) . '/' ); } define( 'BREEZE_CACHE_CHILD_DIR', '/uploads/mincache/' ); define( 'BREEZE_MINIFICATION_CACHE', ABSPATH . '/wp-content/uploads/mincache/' );
I’ll be using this until there’s official support for it.
To note, my /wp-content/uploads folder is a symlink to a shared EFS drive so I can share the cache in real-time across clustered servers handling the frontend.
I tried modifying BREEZE_CACHE_CHILD_DIR as shown below in wp-config.php, and the plugin does output in the HTML the correct path, but the files aren’t getting written to the directory, so the references result in a 404.
define( 'BREEZE_CACHE_CHILD_DIR', '/uploads/mincache/' );
Based on what I saw here, https://plugins.trac.www.ads-software.com/browser/breeze/trunk/inc/minification/breeze-minify-main.php
- This reply was modified 4 years, 10 months ago by Jon Dingman.
- This reply was modified 4 years, 10 months ago by Jon Dingman.
- This reply was modified 4 years, 10 months ago by Jon Dingman.
@adeelkhan any suggestions?
Forum: Plugins
In reply to: [Breeze - WordPress Cache Plugin] multi-serverI personally am using Breeze for its minification capabilities in a multi-server environment, and using W3TC for its Redis caching abilities, so I can do full page caching across multiple servers and use Redis as the central hub.
Forum: Plugins
In reply to: [Breeze - WordPress Cache Plugin] PHP 7.3 Compatibility?I’m running it on php 7.4 and haven’t had any issues yet
Forum: Plugins
In reply to: [Breeze - WordPress Cache Plugin] Disable EmojisWhat does that have to do with Caching though? you can do this through a few functions
function disable_emojis() { remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); remove_action( 'admin_print_styles', 'print_emoji_styles' ); remove_filter( 'the_content_feed', 'wp_staticize_emoji' ); remove_filter( 'comment_text_rss', 'wp_staticize_emoji' ); remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' ); // Remove from TinyMCE add_filter( 'tiny_mce_plugins', 'disable_emojis_tinymce' ); } add_action( 'init', 'disable_emojis' ); /** * Filter out the tinymce emoji plugin. */ function disable_emojis_tinymce( $plugins ) { if ( is_array( $plugins ) ) { return array_diff( $plugins, array( 'wpemoji' ) ); } else { return array(); } }
Forum: Plugins
In reply to: [Yoast SEO] Slow load times when filesystem is EFSThanks!
For others, I found EFS for PHP files had too high of latency, so I moved all PHP files to local EBS and symlinked wp-content/uploads to a shared EFS folder.
This has already improved the speed, so I don’t know if Yoast SEO was truly being that slow, or if it was a combination of so many files trying to be loaded from EFS; which could have caused the same from any plugin.
Forum: Plugins
In reply to: [W3 Total Cache] Ideal settings for keeping all pages, always cachedI’m still testing different settings, no silver bullet yet.
Forum: Plugins
In reply to: [W3 Total Cache] Ideal settings for keeping all pages, always cachedI’m finding that pages are not always cached when I visit them in a fresh browser.
So I’m trying to pin point why and how to fix it.
Should I be increasing the cache lifetime?
Forum: Plugins
In reply to: [W3 Total Cache] Ideal settings for keeping all pages, always cachedThat is helpful, thank you!
What I’m still wondering though, is what the preload and garbage collection and lifetime cache, should be set to
if I have 2000 Posts…
500 pages per Prime? every 300 seconds?
Ideally I want to make the servers work as little as possible, and have the longest cache possible. Please advise what you think is ideal for the settings to reduce server load, and keep the cache primed
Forum: Plugins
In reply to: [Yoast SEO] Slow load times when filesystem is EFSAfter further testing, I am finding my original statement to be true in the first post. Activating Yoast SEO does significantly increase load time.
Actually, it was Yoast SEO causing the slow down. I reached out to them to see if they can help find a viable solution for the slowdown.