Jon Dingman
Forum Replies Created
-
Rolling back to version 1.3.0 fixes the issue above that I mentioned, so I think it’s something in the 1.4.0 release.
Looking at their status page, I don’t see any API outages and it would seem odd that this could be the case. https://status.algolia.com/
Maybe it’s something related to my local host hostname that’s causing an issue since it can’t actually be reached from the interwebs?
Forum: Plugins
In reply to: [Bulk Block Converter] Custom post types, please!For those who may still be looking at this, this is very easy to accomplish.
NOTICE: I am not recommending this as standard practice
I edited the plugin (since I’m only going to use it one time) and added my own Custom Post Types to the code.
define( 'BBCONV_TYPES', serialize( array( 'post', 'page' , 'cpt1', 'cpt2','cpt3') ) );
And done! It now searches my custom post types.
Secondly, I had 150+ posts, and there weren’t any options to adjust the number of posts per page, so I edited that as well.
$per_page = $this->get_items_per_page( 'posts_per_page', 200 );
Now I get all my CPTs that I want, and a maximum of 200 per page.
Again, under normal circumstances, I would not ever recommend editing a plugin. But for this one particular use case, it made sense to do it.
Absolutely I am! It’s been a joy to use.
Forum: Plugins
In reply to: [W3 Total Cache] Ideal settings for keeping all pages, always cached@vmarko thanks. I have a cronjob running every minute already, how would I create a custom cronjob that hooks into pgcache_prime?
I have a cluster of servers, so I don’t want the same cronjob running on all of them to run wp cli
Forum: Plugins
In reply to: [W3 Total Cache] Ideal settings for keeping all pages, always cached@vmarko any suggestions?
Forum: Plugins
In reply to: [W3 Total Cache] Ideal settings for keeping all pages, always cachedCircling back on this.
@vmarko we have a distributed system for cron jobs, where we use Lambda to manage WordPress cron jobs, instead of the host machine.
Is there a way to call pgcache_prime via GET instead of wp-cli only?
Forum: Plugins
In reply to: [Autoclear Autoptimize Cache] php noticeRunning on 7.4 latest
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Custom directory not workingThis is how I setup my config, do the constants for your plugin need to be at the bottom maybe?
/** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', dirname( __FILE__ ) . '/' ); } define('MMR_CACHE_DIR', WP_CONTENT_DIR . '/uploads/mmrcache'); define('MMR_CACHE_URL', WP_CONTENT_URL . '/uploads/mmrcache'); /** Sets up WordPress vars and included files. */ require_once ABSPATH . 'wp-settings.php';
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Custom directory not workingstring(31) “WP_CONTENT_DIR/uploads/mmrcache”
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Custom directory not workingUnfortunately I cannot. First site is a cluster of servers and second is localhost
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Custom directory not workingYes it does. I can upload files without issue
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Custom directory not workingYes, PHP has write access
running www-data:www-data
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Custom directory not workingon a fresh install of WordPress, no symlinks
Warning: mkdir(): No such file or directory in /var/www/fresh.localpi/htdocs/wp-content/plugins/merge-minify-refresh/merge-minify-refresh.php on line 115
I get that error immediately upon activating and can’t get it to disappear
Also, same result, it doesn’t process when the custom directory is defined.
Forum: Everything else WordPress
In reply to: 2 step auth/verification for www.remarpro.com@fattymattybrewing I was asking for www.remarpro.com itself, not my site. I already have multiple layers of security setup for my personal site.