Richard Korthuis
Forum Replies Created
-
Forum: Plugins
In reply to: [WP REST Yoast Meta] Gutenberg editor crashes after updating Yoast to 14.0Hi @ple33
Thank you for using our plugin!
I’m sorry you are experiencing this issue. Unfortunately we did not yet have had the time to test our plugin with the latest version of Yoast SEO, which came out yesterday morning. We will investigate the issue today and hopefully be able to release a fix as soon as possible.
Forum: Plugins
In reply to: [WP REST Cache] Use this plugin with custom rest_url_prefixThank you for using our plugin!
I don’t see anything wrong with your example, it isn’t working?
Forum: Plugins
In reply to: [WP REST Cache] Deactivating Plugin causing Internal Server ErrorHi @arindam4u
The optimum setting is something we cannot determine for you as it greatly depends on your host server. A lightweight server will only be able to process a few requests at a time, while a more advanced server can easily manage hundreds of requests at a time. So this is something you would have to discuss with your hosting company or would have to test.
Forum: Plugins
In reply to: [WP REST Cache] Compatible with WooCommerce Rest Api?Hi @rifatspir
Correct, our plugin doesn’t cache the WooCommerce REST API until someone follows these tips. We are working on a add-on to support the WooCommerce REST API, this add-on will however be a paid version (sorry we can’t make everything for free ?? ) and at this time I do not have a timeline on when it will be available.
- This reply was modified 4 years, 10 months ago by Richard Korthuis.
Forum: Plugins
In reply to: [WP REST Yoast Meta] Home URL incorect in yoast metaHi @triloworld
Thank you for using our plugin!
All we do is output to the REST API what Yoast SEO would output to the frontend in a normal WordPress set-up. We do not change anything in this output, so if something is incorrect it most probably is due to Yoast SEO returning it incorrectly. So you would have to check if you can change this using Yoast SEO.
We do have a filter where you can change the output of our plugin
wp_rest_yoast_meta/filter_yoast_meta
, see our FAQ. But I would check Yoast SEO first, that would be a more solid solution.Forum: Plugins
In reply to: [WP REST Cache] Programmatically flush and regenerate cacheHi @brnteka
Thank you for using our plugin!
You are actually asking two different things (flushing and regenerating), so I am going to answer them seperately.
Yes it is possible to flush all caches of a specific post type programmatically. For instance if you would like to flush all caches of a post type
products
you can do so like this:
\WP_Rest_Cache_Plugin\Includes\Caching\Caching::get_instance()->delete_object_type_caches( 'products' );
But I must say: why would that be needed? If you update the post using WordPress core function the caches should be flushed automatically. Isn’t this the case in your situation? Or are you updating the posts with a direct database query?About regenerating: we don’t have the option to regenerate specific post type caches, but we do have the option to automatically regenerate flushed (or expired) caches. See our FAQ on how to set this up.
Forum: Plugins
In reply to: [WP REST Cache] Issue with using Amazon Web ServicesHi @tenderfeel
Thank you for your clear description of what you already did! You are talking about var_dump’s in sources/wp-rest-cache.php, just to be sure (I am not sure if you are aware of it): this file is copied to /wp-content/mu-plugins upon plugin activation. So if you want your var_dump’s to work you would have to put them in /wp-content/mu-plugin/wp-rest-cache.php.
You say for the other domains only 2 to 4 are displayed, this almost sounds like the must use plugin isn’t loaded, which would be very strange and something out of our control, since it is WordPress core functionality. My guess it you would have to focus on that part, the loading of the /wp-content/mu-plugin/wp-rest-cache.php.
Either that file isn’t loaded OR WordPress is at this point saying the WP REST Cache plugin isn’t active.Forum: Plugins
In reply to: [WP REST Cache] Unknown object typeHi @austyfrosty
Thank you for using our plugin!
Yes the object type is needed to correctly invalidate caches when those objects get updated. Our plugin needs at least the fields
id
andtype
to correctly identify the object type (andtaxonomy
in case of a taxonomy endpoint). So if you would change your call towp-json/wp/v2/posts/?_fields=title,id,type
it would work perfectly.If you really don’t want to add the necessary fields, you can always add your own logic to determine the correct object type, by using a filter. See our FAQ on how to do it.
Forum: Plugins
In reply to: [WP REST Cache] QuestionsHi @alriksson
In theory yes it will improve your wp-admin with Gutenberg. However since we haven’t made many Gutenberg-enabled websites yet, we haven’t tested it fully.
Forum: Plugins
In reply to: [WP REST Cache] Issue with using Amazon Web ServicesHi @tenderfeel
Thank you for using our plugin!
I just did some tests, I installed WordPress locally on example.local and also made it available on somethingelse.local. I then did some REST requests on somethingelse.local and those requests were cached as expected.
I even double checked our code and there is no reason why the requests wouldn’t be cached, we don’t look at the url, only at the request path (i.e. /wp-json/custom/v1/***).What makes you say it isn’t cached? How did you check this?
Forum: Plugins
In reply to: [WP REST Cache] Custom post not clearing cache after editHi @marija1206
Thank you for using our plugin!
First of all: custom post types are supported, we use them all the time ?? I did a test and installed the Pods plugin and create a custom post type. I then created some posts and visited the REST endpoint, everything was cached as expected. I then edited one of the posts and the correct caches were cleared, so everything seems to be working fine.
If you look up the cache for the custom post type under Settings > WP REST Cache > Endpoint API Caches, is the Object Type detected correctly?
Forum: Plugins
In reply to: [WP REST Cache] Double qoutes prevents cachingHi @mattiasf
Thank you for using our plugin!
First of all: sorry for not getting back to you any sooner. For some reason we did not get notified of your topic so I only noticed it by coincidence today.
I have investigated your issue and you are correct. The request URI isn’t parsed correctly when it contains double slashes. We will fix this in our next update (we just did a new update which unfortunately does not yet contain this fix).
Forum: Plugins
In reply to: [WP REST Cache] Deleting the recordHi @shyamla
Sorry for not getting back to you any sooner. We did some extensive testing but were unable to reproduce your situation. Unfortunately that makes it impossible for us to determine the cause and implement a fix for it.
Did you by any chance find the cause?Forum: Plugins
In reply to: [WP REST Cache] WP installed with bedrock, cache does not workThis thread has been marked as resolved due to lack of activity.
You’re always welcome to open a new topic.
Thanks for understanding!
Forum: Plugins
In reply to: [WP REST Cache] [Specified key was too long; max key length is 1000 bytes]Hi @engdahl
Thank you for using our plugin!
We just released a new version of our plugin which should solve your problem.