New WordPress install with very long response waiting time

My website has a long response time (3 sec).

enter image description here

Read More

I tried deactivating all plugins one-by-one and checking, but it’s waiting time is 2 sec.

I also use w3-cache and wp-cache on my live domain, but waiting time is 3 sec.

Today I downloaded the new WordPress, and configured all settings.

I did not add any themes or plugins and tested its speed; I see the WordPress waiting time is 2 sec.

enter image description here

It means my WordPress response time is long. How can I reduce it?

Related posts

Leave a Reply

4 comments

  1. Some pretty high traffic sites run WordPress.

    There are several layers in the technology stack that could be the problem. The most common bottlenecks are network speed, server resources (RAM/CPU), and database resources.

    Since your initial page is very slow and your resources seem faster, I would probably eliminate network speed as an issue. If you try loading a static HTML test page that’ll confirm your network speed is okay.

    Next, install WP Super Cache on your plain install of WordPress using the default theme. Is it fast? If so, I would suspect your host’s MySQL server is overloaded and overworked.

  2. By default most web hosts and WP aren’t setup for 100% speed efficiency but with little tweaks you can make massive improvements in speed times.

    I use GTmetrix to measure a websites speed, and implement their ideas to increase the speed including:

    Htaccess GZip

    Defer Javascript loading

    Minify JS and CSS with Autoptimize

    reduce image size with Smush.it

    They are only a couple of ways, GTmetrix will help you understand what is slowing your site down and ways to increase it.

  3. A default WordPress install should be lightning fast if it’s on an even remotely decent server. Try removing the database, recreating it, and reinstalling. Or, use phpMyAdmin to repair and optimize your tables. If this is not an option, try some janitoral DB queries like:

    DELETE FROM `user_meta` um LEFT JOIN `users` u ON (um.user_id = u.ID) WHERE u.ID IS NULL
    

    Same concept with posts & post meta, just different primary keys.

    Also, if your server is not setup properly for caching, i.e. XCache or memcache not installed, properly configured, or loaded, and you’re not running an uber high-traffic site, you probably don’t even really need to use caching at all. If it ain’t broke, don’t fix it.

    Or, if you have existing data that you cannot afford to lose, use WP Migrate DB to back up your existing install exporting to SQL file, follow steps above in regards to removing the original database, then import the database anew from phpMyAdmin after recreating.

  4. Getting desired performance from your WordPress sites can be trick, as the WordPress platform don’t seem to have had performance optimizations in mind.

    You can get the desired results by looking into performance optimization techniques- which can be done manually on your sites, but can be burdensome for the not so technical WordPress users, especially if they just what a fast performing wordpress blog.

    There are really good plugins out there that can make it easy but some still require technical knowledge. I recommend these 2 plugins and they are quite easier to configure for not so technical users.

    Speed up your website with jch optimize – this plugin makes it really easy for combining, minifying css, javascript, and html. there ton more features you can get with the paid version.

    cache your site with W3TC – one the most popular caching plugins. A must get if you want some extra speed.