tsitsibau
Forum Replies Created
-
Forum: Plugins
In reply to: [Related Posts for WordPress] Caching is stuck on 5%Hello, i had the same problem!
After a few hours of debugging… in my case the problem was that the save words query was returning an error, because of greek characters.
1. They were not changed to lower case
2. mysql seemed not to care about accents in the primary fieldTo fix this i made some changes in function get_words_of_post at classes/class-related-word-manager.php (line 287)
$word = strtolower( trim( $word ) ); to
$word = mb_strtolower( trim( $word ) );
(this will fix most cases)and insert something like this afterwards
$unwanted_array = array(‘?’=>’α’, ‘?’=>’ε’, ‘?’=>’η’, ‘?’=>’ι’, ‘?’=>’ο’, ‘?’=>’?’, ‘?’=>’?’, ‘?’=>’σ’);
$word = strtr( $word, $unwanted_array );
to skip accentsI hope that the developers will include a fix in a future update.
Forum: Plugins
In reply to: [The Events Calendar] New organizers are stored as eventsok, figured out what the problem was…
some incompatibility with Post Type Switcher pluginForum: Plugins
In reply to: [Simple Share Buttons Adder] Facebook Count Reset to 0??!!i guess everyone is having the same problem….
even the plugin’s website says 0 likes..
is there any news from the devoloppers if they are going to solve it soon or we should search for alternatives?Forum: Plugins
In reply to: [Simple Ads Manager] rotation in multiple adsthanks for your reply.
this is right, but i can’t put an ad in 2 ads places, or accomplish this kind of rotation?Forum: Plugins
In reply to: [Mega Menu by WooRockets.com] conflict with wpalchemyit appears that the problem was at the shortcode image.
when i removed it, it workedForum: Plugins
In reply to: [Popups - WordPress Popup] subcategory posts….
maybe one of the million levels of caching confused me…
i’ll check it again.
thanks again!Forum: Plugins
In reply to: [Yoast SEO] Post Sitemap is not updatedi believe i figured out what the problem is…
wpseo_invalidate_sitemap_cache callsdelete_transient( 'wpseo_sitemap_cache_1' ); delete_transient( 'wpseo_sitemap_cache_' . $type );
but not
delete_transient( 'wpseo_sitemap_cache_' . $type .'_1'); delete_transient( 'wpseo_sitemap_cache_' . $type .'_2'); delete_transient( 'wpseo_sitemap_cache_' . $type .'_3');
etc..
if no author answers i’ll try to find how to get current partitions to fix it.if i am not wrong it happens to everyone that has more than 1000 posts and it’s a very serious problem as it doesn’t update in time sitemaps… it doesn’t notify search engines for new articles
[ No bumping please. ]
Forum: Plugins
In reply to: [Yoast SEO] Post Sitemap is not updatedMore debugging! and i’m close to a solution…
i had another local version of my website with versio 1.5.3.3 and it works fine…
when i updated it stoppedDoes anyone knows if i can downgrade?
Forum: Plugins
In reply to: [Yoast SEO] Post Sitemap is not updatedi did some more tests in a test environment without w3tc.
The problem still occurs.
It happens only when more than one post-sitemaps is created.
When i increased the limit base post-sitemap.xml was normally updated.
When i decreased it post-sitemap3.xml was not even affected by the limit change.
i even tried with a default wp theme and all the plugins (except seo by yoast) disabled but still post-sitemap3.xml was not updated
I also tested it in another website (with version 1.5.3.3), and the problem did not appear…
i don’t know if this means that is website specific problem… or version specificDoes this feature work to anyone else?