ericmulder
Forum Replies Created
-
We get the same error on a multisite. Main site running fine, sub sites crash.
They are different issues, as one is a typo search shows no results, and the other is that paging doesn’t work with backend search.
I’ll submit 2 github issues and maybe a pull request ??
I now fixed this with the following filter:
/** * @param $should_filter * @param WP_Query $query * * @return mixed */ function labelvier_algolia_should_filter_query($should_filter, $query) { // force filtering (bug in algolia plugin?) global $wp_current_filter; $current_filter = $wp_current_filter[count($wp_current_filter) - 2]; if($current_filter == 'found_posts') { $should_filter = true; } return $should_filter; } add_filter('algolia_should_filter_query', 'labelvier_algolia_should_filter_query', 10, 2);
Forum: Plugins
In reply to: [Check and Enable GZIP compression] Oops! Something went wrong :(Hi @martaturrado, it seems that the domain where I check the gzip compression down is. I’ll let you know if I can resolve that.
Forum: Themes and Templates
In reply to: [Chaplin] Show meta if only using custom post meta itemsThanks, that worked ??
Forum: Plugins
In reply to: [Check and Enable GZIP compression] Support Ceased Or Still AvailableI’m afraid I don’t have any plans on updating or maintaining the plugin. As it started as a hobby project, at the moment I don’t have any time for plugin. Maybe you can switch to fastest cache or other GZIP solutions? Good luck with your website!
Forum: Plugins
In reply to: [Check and Enable GZIP compression] Oops! Something went wrong :(Hi,
could you send me the debug information (the small link found on the bottom of the gzip settings page)
Eric
Thanks! I added a check with get_post_meta which fixed the issue.
Forum: Plugins
In reply to: [Check and Enable GZIP compression] GZip not working on windows serverHi pooja,
Currently the plugin has some time out issues. I’m also not sure if it’ll work on a windows server. In the meantime you can check via checkgzipcompression.com.
Eric
Thanks, I got an update from the server developer. He hopes to migrate the code next month to a faster environment. This should fix the time-outs
Forum: Plugins
In reply to: [Check and Enable GZIP compression] Have you stopped updating this plugin?Thanks, I got an update from the server developer. He hopes to migrate the code next month to a faster environment.
I’m a bit suprised that the front-end also adds a delay. Do you use the htaccess method? Or the normal (PHP) method?
Forum: Plugins
In reply to: [Check and Enable GZIP compression] Have you stopped updating this plugin?Hi!
Development on the plugin has been slow indeed. We have been struggling to find the time to update the plugin. Hopefully the new year will bring some new time.
For the Slow loading times, would that be the front end? Or the admin side?
Forum: Plugins
In reply to: [Check and Enable GZIP compression] ErrorThanks for the error, it seems to be a time-out issue. Do you get this error all the time?
Forum: Plugins
In reply to: [Check and Enable GZIP compression] Enabling plugin doesn’t workWhen you don’t check the htaccess method, the plugin tries to enable gzip via php. It might be that the htaccess rules don’t do the trick on your server.
Forum: Plugins
In reply to: [Check and Enable GZIP compression] ErrorWhat is the error? I can’t open the screenshot. I see that your site is compressed though.