• This site has been having intermittent loading/layout problems for several weeks now. Everything is up-to-date back end wise, and I’ve excluded the problem being any theme or plugin (be renaming plugins folder, trying a default theme – problem still exists).

    Sometimes the site is fine in Chrome and Firefox, but then I’ll see that it doesn’t work in IE or Edge. Sometimes it’s not working in Chrome or Firefox. Meantime it will be working on a mobile device. So the problem is quite random really.

    I’ve asked the hosting company for help and they can’t see any server side problems. This is the only site on the server that seems to be experiencing these problems.

    I’ve also reinstalled WordPress, but no change. Today the site is working in Chrome and FF, but intermittently not in Edge or IE. Here is a screenshot of what it looks like in IE this morning. When it’s not working in Chrome and FF it looks similar.

    https://woodlandtreasures.co.uk/screenshot1.jpg

    I asked a developer for help and they said…

    ======

    I’d guess at something to do with permissions or a dodgy htaccess file.

    Particularly weird is if i try to access a single file that should be no problem to view such as a css file i end up with the WordPress 404 page.

    Actually something to check might be case sensitivity – not sure why it would be intermittent though.But when you build on Windows filename case doesn’t matter.

    If you link to style.css in your html, the actual file could be saved as Style.css, STYLE.CSS, sTyLe.CsS and Windows will work fine.

    But Linux filenames are case sensitive, so Style.css, STYLE.CSS, sTyLe.CsS would be treated as 3 different files.

    ===

    Does anybody have any ideas please as to what I can check? .htaccess appears to be okay, but what permissions can I check? Short of rebuilding the site I don’t know what else to do.

    Thanks.

    • This topic was modified 4 years, 5 months ago by Tig2021.

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    I see a LOT of 404 errors. For example, the logo is missing:

    https://woodlandtreasures.co.uk/wp-content/uploads/2015/09/logo-woodland-treasures.png returns a 404. Is that file actually on your server? It seems so, because if I try to get just that file, I get it:

    curl -i -v https://woodlandtreasures.co.uk/wp-content/uploads/2015/09/logo-woodland-treasures.png > test.png
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0*   Trying 176.56.56.102:443...
    * Connected to woodlandtreasures.co.uk (176.56.56.102) port 443 (#0)
    * ALPN, offering h2
    * ALPN, offering http/1.1
    * successfully set certificate verify locations:
    *   CAfile: /etc/pki/tls/certs/ca-bundle.crt
      CApath: none
    } [5 bytes data]
    * TLSv1.3 (OUT), TLS handshake, Client hello (1):
    } [512 bytes data]
    * TLSv1.3 (IN), TLS handshake, Server hello (2):
    { [122 bytes data]
    * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
    { [25 bytes data]
    * TLSv1.3 (IN), TLS handshake, Certificate (11):
    { [4707 bytes data]
    * TLSv1.3 (IN), TLS handshake, CERT verify (15):
    { [264 bytes data]
    * TLSv1.3 (IN), TLS handshake, Finished (20):
    { [52 bytes data]
    * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
    } [1 bytes data]
    * TLSv1.3 (OUT), TLS handshake, Finished (20):
    } [52 bytes data]
    * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
    * ALPN, server accepted to use http/1.1
    * Server certificate:
    *  subject: CN=woodlandtreasures.co.uk
    *  start date: Oct 17 00:00:00 2020 GMT
    *  expire date: Jan 15 23:59:59 2021 GMT
    *  subjectAltName: host "woodlandtreasures.co.uk" matched cert's "woodlandtreasures.co.uk"
    *  issuer: C=US; ST=TX; L=Houston; O=cPanel, Inc.; CN=cPanel, Inc. Certification Authority
    *  SSL certificate verify ok.
    } [5 bytes data]
    > GET /wp-content/uploads/2015/09/logo-woodland-treasures.png HTTP/1.1
    > Host: woodlandtreasures.co.uk
    > User-Agent: curl/7.69.1
    > Accept: */*
    > 
    { [5 bytes data]
    * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
    { [297 bytes data]
    * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
    { [297 bytes data]
    * old SSL session ID is stale, removing
    { [5 bytes data]
    * Mark bundle as not supporting multiuse
    < HTTP/1.1 200 OK
    < Date: Sat, 17 Oct 2020 14:50:43 GMT
    < Server: Apache
    < Last-Modified: Fri, 17 Mar 2017 12:15:45 GMT
    < Accept-Ranges: bytes
    < Content-Length: 74007
    < Cache-Control: max-age=31536000
    < Expires: Sun, 17 Oct 2021 14:50:43 GMT
    < Content-Type: image/png
    < 
    { [5 bytes data]
    100 74007  100 74007    0     0  83435      0 --:--:-- --:--:-- --:--:-- 83341
    * Connection #0 to host woodlandtreasures.co.uk left intact
    

    I think there’s an issue with your server — either it’s overloaded or misconfigured.

    Thread Starter Tig2021

    (@tig1960)

    Thanks, @sterndata.

    Yes, the logo is here:

    https://woodlandtreasures.co.uk/wp-content/uploads/2015/09/logo-woodland-treasures.png

    I need to talk to the hosting company again then… but it shouldn’t be overloaded, so must be misconfigured. Do you have any idea in what way that could be? If so, why wouldn’t it affect other sites on the same server?

    • This reply was modified 4 years, 5 months ago by Tig2021.
    Thread Starter Tig2021

    (@tig1960)

    @sterndata the hosting co say the server is not stressed in any way and they have advised me to set up an account with nodequuery.com, which I’ve just done.

    They also said to make sure that I have the PHP settings set correctly. I think they mean the version of PHP, but the site misbehaves in any versions (it’s now on 7.4).

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    Your site loaded quickly and completely for me just now.

    It does not look like you’re using any caching or optimization plugins. I like the combination of Autoptimize and Comet Cache. Give them a try.

    Thread Starter Tig2021

    (@tig1960)

    @sterndata so think installing these two plugins will help with the loading problems?

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    I think they’ll speed up your site a bit.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Intermittent site loading problems’ is closed to new replies.