Forum Replies Created

Viewing 15 replies - 46 through 60 (of 384 total)
  • Also make sure to save Permalinks:
    Admin -> Reading -> select Common Settings (Post name is the norm) -> Save Settings

    Are you seeing anything in your error logs that give information on this problem?

    Open a support ticket with your Hoster explaining the problem and that you need to help. They can help you faster, and probably better, than anyone else.

    What method did you use to select a different page as Home page?

    Suggest you disable WP Rocket and also look into your error logs to see what they can tell. At this point some details of any problems is what is needed. If not sure where they are what they are telling you, your Hoster Support might be able to help. Might be able to help anyway as I think you need some hands-on troubleshooting to resolve the problem.

    ww.wp.xz.cn does not host websites.

    wordpress.com does host websites and you can read more here:
    https://wordpress.com/support/domains/register-domain/

    bombshelterzine.com is not a wordpress site.

    bombshelterzine.com/wordpress/ is not working and you will need to look at your Hosting account error logs or contact Support, at your Hoster, for help to correct.

    In these type situations your error logs can be a valuable source of information. Have you checked them to see if any useful information?

    wpRocket could be your problem. Although I’m not sure what your purpose is in using it, have you tried disabling it?

    I can see the caching code is not being used on your site. Browser Dev Tools is how I can tell.

    Replace the previous code I mentioned with this code. It will not break anything because it only applies “if” the “mod_headers” module is enabled. Otherwise it is ignored.

    
    
    ##  Caching For Public Pages
    
    <IfModule mod_headers.c>
    
      <filesMatch ".(x?html?|php)$">
        Header always set Cache-Control "private, max-age=300, stale-while-revalidate=3600, stale-if-error=259200"
      </filesMatch>
    
    </IfModule>
    
    

    I’m not saying the above code will fix your current problem although what it will do is verify you can make changes in your .htaccess file and also help to make your pages load faster. And it always a good thing if you can alter the .htaccess file, as certain changes can help with running the site.

    Marbaque, appreciate the update. It is true that using the code I supplied will cause problems if a certain Apache module is installed although it is such a common module that I sometimes forget it may not be installed. Removing the code should have corrected any problems it created.

    Now that the module has been installed, are you using the code, is it working for you?

    Any progress on your original problem?

    Sorry to hear about your troubles although I checked your site just now and it is working fine. BTW, not sure why you feel the need to try and block Right Click and Inspect Element as it probably took you longer to set it up them for me to get around it. 😉

    If you happen to remember the Rewrite code you were trying to use then post it here with details of what you are trying to do.

    And if you are seeing a white screen then contact your Hosting Support with details of the problem. They should be able to get you back online.

    Your welcome for the help. Please make sure to this thread as Resolved and happy researching. 🙂

    Whatever Theme you are using is coded in such a way that a default Font style is applied while waiting for the desired Font style to load–and in this case is taking too long. The term used is Flash of Unstyled Text (FOUT).

    This article explains it a little bit and how to correct it.

    https://css-tricks.com/how-to-load-fonts-in-a-way-that-fights-fout-and-makes-lighthouse-happy/

    Did you ever get this problem worked out?

    I noticed that there is no caching setup for your site. I suggested the following for someone else with the same problem as yours and it seemed to have worked for them.

    Add to your .htaccess (at very top) and see if problem persists.

    #################################################
    ##  Expires Caching for Public pages
    
    <filesMatch ".(x?html?|php)$">
      Header always set Cache-Control "private, max-age=300, stale-while-revalidate=3600, stale-if-error=259200"
    </filesMatch>
    
    #################################################

    If it does solve your problem, you will need to create this file:

    public_html/wp-admin/.htaccess

    and add this at the top

    #################################################
    ##  Expires Caching for Admin pages
    
    <filesMatch ".(x?html?|php)$">
      Header always set Cache-Control "private, max-age=0, no-cache, must-revalidate""
    </filesMatch>
    
    #################################################

    On the front-end it OK to use caching but for the back-end, your Admin pages, you always want to see the freshest page.

    Please update this thread to let us know what happens after a few days.

    Tim, your site is currently using ‘https’ for all links although it is odd that some open a new Browser window to your own site. Most if not all, links beside images on the Home page do that.

    As to mod_rewrite being enabled, it is usually enabled by all Hosters using Apache because it is used so much. If fact, I doubt WordPress would work on any site where it was not enabled.

    This is the code to Rewrite from ‘http’ to ‘https’ in the .htaccess file.

    #############################
    ##  General Settings
    
    # Define the default Character Set for Browsers
    AddDefaultCharset utf-8
    
    # if an https URL is not used then redirect to use https
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://www.timhupkes.com/$1 [R=301,L]
    
    #############################
    ##  

    Place the above code at the very top of your .htaccess file.

    If you are using Plugin to do a Rewrite, view your .htaccess to see if the above code (or similar) is already in there. If Yes, disable the Plugin and test. Usually these type of Plugins will leave the code there, even if disabled or removed. If you are using a Plugin for more than just Rewriting, it’s your call to keep or remove it. You can the above code all by itself if the Plugin removes it.

Viewing 15 replies - 46 through 60 (of 384 total)