natostanco
Forum Replies Created
-
Yes they should.
wp redis cache caches web pages (html), redis object cache instead caches “php objects” used by wordpress when generating the web pages (that will then be cached by wp redis cache after the first load).just wait for an hotfix
Forum: Plugins
In reply to: [Ajaxify Wordpress Site(AWS)] AWS is showing codes on my siteyou need to use the right container selector
Forum: Plugins
In reply to: [Comments - wpDiscuz] Load WpDiscuz CSS and JS on home pageThe option text states:
Load WpDiscuz CSS and JS on home page
Which I suppose it means, when it is checked, it should load CSS and JS on the homepage. If you want that option to like enforce the disable of the resources on the homepage when is_singular() does not work (when websites use a static page as homepage i guess?) then the option should state something like “don’t load” or “make sure resources are not loaded”..Forum: Plugins
In reply to: [SEO Smart Links] 3.0 (and 3.0.1) update destroys performance and kills siteyes it is written in the reply, to update old posts with new ones you have to setup a cron job or something like that.
anyway page caching is always the first optionForum: Plugins
In reply to: [Autoptimize] Defer CSS Cloudflare Rocket LoaderI don’t think, it is supposed to emulate window events normally but apparently it has a lot of quirks
Forum: Plugins
In reply to: [WWM Social Share On Image Hover] Misaligned on some imagesThat’s because the item which has the class
wwm_socialshare_imagewrapper
which holds the ul list has no heightyes unlimited max pages is the problem, thank you for the quick fix
same problem here, tried also on local install problem persists
Forum: Plugins
In reply to: [Autoptimize] minify manual selected scripts?currently all the js scripts are recognized and some are minified, whereas some are just moved to the footer, indeed no .js scripts appear in the head or body except adsense ones. I would like to try to combine all the scripts moved into the footer, I guess the ismergeable function is forbidding the combine? Maybe I would like to try and bypass it.
Forum: Plugins
In reply to: [Autoptimize] minify manual selected scripts?yeah, but to how remove them from the page
Forum: Plugins
In reply to: [Auto-tags] New version with no APIsThere is still a fundamental problem I think with requests length, $content that exceeds ~5840 characters results in a api call which seems yahoo servers can’t handle.
– easiest solution: chop the content at ~5840 char every time and just get the tags of that content
– complex solution: split the content and do an api call for each sub string, than merge tags results and filter out duplicates.Forum: Plugins
In reply to: [Transposh WordPress Translation] geo redirect not workingYes, I tried modifying the accept languages and it was redirecting ok, sorry for the trouble
Forum: Plugins
In reply to: [Plugin Organizer] multisite grouping?I think it would make sense to have it work on superadmin dashboard too, you have groups there, and choose default plugins orders, then settings gets overridden by subsites preferences if any.
Forum: Plugins
In reply to: [SEO Smart Links] 3.0 (and 3.0.1) update destroys performance and kills siteadd this code to your functions
function smart_links($data, $postarr){ $seolinks = new SEOLinks(); $data['post_content'] = $seolinks->SEOLinks_the_content_filter($data['post_content']); return $data; } add_filter( 'wp_insert_post_data', 'smart_links', '99', 2 );
and comment out lines 182-187 of the plugin, in the function SEOLinks_process_text
and lines 33-40This way the links are generated upon post publish and not every time a page loads so only once.
Of course the downside is that pages/posts/tags generated after the publishing won’t be linked to articles already published. What you can do is schedule a cron to run your 20k posts through the seo smart links process once or twice per month to update the links. Make sure you add a class to the links so that when you go to update your links you know which ones to update.
This plugin hooks easily in the_content, so every time a query is displayed it needs to understand where the f* it is in the site, doing a lot of checks, if it linked each option to its relative wp hook it could be a little lighter, but the bulk of the overload is most likely caused by the content processing that you do upon all the articles which you should solve with what i suggested.