This topic has 5 replies, 4 voices, and was last updated 9 years by sandervm86.
-
Author
-
August 6, 2015 at 10:28 #71824TopherParticipant
The site load time using this theme and plugins is very slow. I am on a dedicated server 4 cores and 8 gigs of physical ram. Optimized data base etc. I need to know what I have to do to optimize the performance and speed of this theme.
Thanks
August 6, 2015 at 11:18 #71827RaduModeratorHi,
Try use W3 Total Cache with page cache feature activated https://wordpress.org/plugins/w3-total-cache/ here it s a little guide how to enable page caching http://code.tutsplus.com/articles/configuring-w3-total-cache-advance-page-cache-i–cms-21148 and http://code.tutsplus.com/tutorials/configuring-w3-total-cache-general-settings-i–cms-20920
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 7, 2015 at 04:07 #72111RogerParticipanti am doing the same.. 4 cores, 8 gigs and have w3 cache…
August 9, 2015 at 15:50 #72332RaduModeratorHi,
Google it shows what conditions must meet and how to fix the problems.
Should Fix:
- Enable compression
- Optimize images
- Minify JavaScript
- Eliminate render-blocking JavaScript and CSS in above-the-fold content
-
Consider Fixing:
- Leverage browser caching
- Minify CSS
- Minify HTML
Doesn’t matter if you have a shared hosting, or a vds with 2,4 or 8 cores and 2,4,8,16,32 or 64GB of RAM if the setup is not correctly.
I’ve searched on google for your and i found this guide, http://www.wpseotricks.com/w3-total-cache-best-settings/ i recommend you to follow that steps.
Another important thing is to remove query strings from static resources than that resources can be cached, here it’s a plugin that do that https://wordpress.org/plugins/remove-query-strings-from-static-resources/ test it, or add this function to your kleo-child/functions.php via FTP the path is wp-content/themes/kleo-child/functions.php
COPY CODE//Remove query strings from static resources function _remove_script_version( $src ){ $getMyUrl = site_url(); $check = strpos($src, $getMyUrl); if ($check !== false) { $parts = explode( '?', $src ); return $parts[0]; }else{ return $src; } } add_filter( 'script_loader_src', '_remove_script_version', 15, 1 ); add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );
If you are not satisfied use something like cloudflare / CDN, or you can install directly google pagespeed apache module it optimize automatically majority part of issues. https://github.com/pagespeed/mod_pagespeed
I hope that these informations helped you.
Best regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 10, 2015 at 14:26 #72426sandervm86ParticipantHey Radu,
You sended me to this topic, i already had the w3 plugin with the same settings as above, also installed the remove-query-strings-from-static-resources/ but no changes for me..
maybe you can have a look inside of it?
-
AuthorPosts
The forum ‘KLEO’ is closed to new topics and replies.