• Resolved niclasto

    (@niclasto)


    Hello,

    the first time users a visiting my website the loading time is still very long and has not changed noticeably. Once they are on my site and click on different subpages, I would say the plugin has reduced the loading time. However, the loading time for the first entry has not changed. Is there anything I can do or adjust to make it load faster for first time users visiting my page?

    Many thanks in advance,

    Niclas

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @niclasto,

    How are you tracking this first visit loading times? Are you checking by yourself, or are users reporting this?

    It is expected for the initial loading time for a page to be longer than upon consequent visits, as this would mean that this page has not been cached yet.

    Kind regards.

    Thread Starter niclasto

    (@niclasto)

    Hey,

    I am checking it by myself but I have used different devices. For all of them, the initial loading time is partly much longer than the consequent loading times. Is there still anything I can do to reduce the initial loading time?

    Kind regards.

    Plugin Contributor Mark (a11n)

    (@thingalon)

    Hi @niclasto,

    I’ve examined your site, and have noticed a few things which are slowing down your first-use experience.

    Super Cache is great at making WordPress itself run fast (by bypassing most of its internals) while rendering your page. However, it appears the slow-down is in the way that your site serves static resources. These are things like JavaScript files and CSS Files, which are loaded directly after WordPress has finished running.

    First, I have noticed that your site does not support gzip compression. When loading static assets on your website (such as JavaScript files), they are not being served compressed.

    Here are some example resources which are not compressed:

    – wp-includes/css/dist/block-library/style.min.css?ver=6.1.1
    – wp-content/plugins/stackable-ultimate-gutenberg-blocks/dist/deprecated/frontend_blocks_deprecated_v2.css?ver=3.6.2
    – wp-content/plugins/tabs-responsive/assets/css/animate.css?ver=6.1.1

    It appears your site is running on an Apache web server. I recommend that you contact your hosting provider, and ask them to set up mod_deflate on your server to enable compression for your static resources.

    Second, I have noticed that your site appears to take a long time to serve static resources when multiple are requested simultaneously. For example, during a normal page-load:

    – wp-content/plugins/wpglobus/includes/js/wpglobus.min.js takes 1.5 seconds to load,
    – wp-content/plugins/q2w3-fixed-widget/js/frontend.min.js takes 1.09 seconds to load, and
    – wp-content/plugins/ajax-search-lite/js/min/plugin/optimized/asl-wrapper.js takes 1.49 seconds to load

    However, when I load any of these URLs individually, they load rapidly. To illustrate what I mean, I will focus on “wp-includes/js/utils.min.js”:

    – During a regular page-load, this resource takes 1.57 seconds to load; 961ms of which are spent “waiting for server response”.
    – When I load this resource individually, it only takes 457 milliseconds to complete.

    This suggests that your web server may be either mis-configured, or running on a system which does not have enough resources to properly support its operation.

    I recommend that you also ask your web hosting provider about your web server setup, and why it is taking a long time to serve static resources during a normal page load.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Still long loading time for first entry’ is closed to new replies.