Redis and Formidable Pro not working together
-
Good morning,
I wanted to share a bit of info with you regarding Redis and a WordPress form plug in that is widely used called Formidable Pro. I had been experiencing an issues with Formidable not accepting changes so I worked with their support to resolve it and apparently there is a issue with the WP_Object_Cache::set() function?The issue was.
– The expected index in the $wp_object_cache is [ $group ] but it was
actually [ $group . $key ] on this site.
– Expected index: frm_actions
– Actual index:
frm_actions:a:7:{s:9:”post_type”;s:16:”frm_form_actions”;s:11:”post_status”;s:3:”any”;s:11:”numberposts”;i:99;s:7:”orderby”;s:5:”title”;s:5:”order”;s:3:”ASC”;s:10:”menu_order”;i:49;s:16:”suppress_filters”;b:0;}_type_email
– This modification of the typical format prevents the clear_cache
function from working as expected. Also, this will still retrieve the
incorrectly formatted cached data:
$results = wp_cache_get( $key, $group);
It’s possible that wp_cache_get is being modified as well.When I deactivated Pantheon’s Redis and the WordPress plugin and deleted the additional file that the Pantheon instructions guided me to do, Formidable now is working but now I can’t use Redis. Is there a work around?
My site is: https://grad.udel.edu/
- The topic ‘Redis and Formidable Pro not working together’ is closed to new replies.