What are some ways to speed up a WordPress site that most people don’t know? [closed]
What are some ways to speed up a WordPress site that most people don’t know? [closed]
What are some ways to speed up a WordPress site that most people don’t know? [closed]
Maybe your PHP is running per CGI or FastCGI in a separate process that shuts down after a while of inactivity. Does it change if you register at an uptime monitoring service? A cache plugin like W3 Total Cache may help too.
After many attempts, I found this plugin that implente the Google Minify solution to work fine. I guess this is the best way to go other than reinveinting the wheel. I’ve choosen this one because it allows to change the Minify script bahvior from the WP panel.
Number of queries in wordpress
Please optimize all images and use W3 Total Cache plugin, here is link Minify CSS Minify JS If you are using any theme then there might be chances to have an option to optimize CSS and JS. Otherwise, use this plugin
How to prevent Vimeo duplicate requests?
I’m getting a Content-Encoding:gzip header when I visit your site… Cache-Control:max-age=300, must-revalidate Connection:Keep-Alive Content-Encoding:gzip Content-Type:text/html; charset=UTF-8 Date:Sat, 23 Apr 2011 15:27:48 GMT Keep-Alive:timeout=15, max=100 Server:Apache Transfer-Encoding:Identity Vary:Accept-Encoding,Cookie Also, you have a jQuery reference error in the wp-minify plugin 🙂
Disabling garbage collection only means that what ever memory is being leaked will reamain leaked and there will be no effort to reclaim it. To fix 500 problems you need to check the actual errors reported at the php error log.
I will post my findings here as they will likely be useful to anyone else facing a similar situation. I had considered whether the issue was with the CDN redirection implemented on the site (a plug-in). But the fact that every (3 of the most popular) CDN plug-ins I tried, and every cache plug-in with … Read more
Use a tool like Gulp to minify using NodeJS packages. Gulp Uglify for JS, Gulp CSS Min for CSS. As for GZip, you’ll need to enable that on your server config – Apache using mod_deflate in .htaccess and In IIS, you can set it up in “website properties” (Tab Services), and then allow “compress application … Read more