grisu741
Forum Replies Created
-
Forum: Plugins
In reply to: [Redis Object Cache] Wp Rocket + Redis Object CacheHow do I figure out which of the two is the problem? Thank you
Forum: Plugins
In reply to: [Redis Object Cache] Wp Rocket + Redis Object CacheI have this problem in the Site Health, how can I solve it please?
thank you
Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:
cache-control,expires,age,last-modified,etag,x-cache-enabled,x-cache-disabled,x-srcache-store-status,x-srcache-fetch-status,x-aruba-cache.Forum: Plugins
In reply to: [Redis Object Cache] Wp Rocket + Redis Object Cacheok thank you so much Till
- This reply was modified 1 year, 2 months ago by grisu741.
Forum: Everything else WordPress
In reply to: Restore from backup and no emojisI solved it, to save the emojis in the database just add, at the end of the formatting.php file, in wp-includes/formatting.php the filter indicated below. It converts the emoji characters into the equivalent HTML entity. It worked for me, I also checked that they were saved in the database. I’m telling you so maybe it can help someone. Greetings
add_filter( 'wp_insert_post_data', function( $data, $postarr ) {
if ( ! empty( $data['post_content'] ) ) {
$data['post_content'] = wp_encode_emoji( $data['post_content'] );
}
return $data;
}, 99, 2 );Forum: Everything else WordPress
In reply to: Restore from backup and no emojisah ok. So the best idea is that I can make a backup of my mysql database. How should I export the tables so as not to lose the special characters and text? (emoji + text)
Thank you
Forum: Everything else WordPress
In reply to: Restore from backup and no emojisHi I contacted hosting support but they can’t help me solve this problem. Is there a guide to check by yourself which string in the database needs to be changed? Thanks again
- This reply was modified 1 year, 2 months ago by grisu741.
Forum: Everything else WordPress
In reply to: Restore from backup and no emojisBackup has been restored from Hosting. Thank you<font _mstmutation=”1″></font>