Hey guys…I just checked my website this morning and release everything is messed up I think the Bricks update came with so much irregularities… please how can I get my website back to how it’s before?
www.phaxsam.space
That’s the web’s.
Hey guys…I just checked my website this morning and release everything is messed up I think the Bricks update came with so much irregularities… please how can I get my website back to how it’s before?
www.phaxsam.space
That’s the web’s.
Have you cleared your cache? It looks like the CSS has been disconnected which is fairly common when updating.
Clearing your cache will force it to re-generate styles with the updated version of Bricks.
I used CloudFlare to clear the cache but it didn’t work and I am not having any plugin there to do it directly on WordPress…know any plugin I can use to that?
I just used litespeed to clear the cache now and it’s still same thing.
You have a valid SSL certificate attached to your domain.
ref: SSL Checker
At the same time, your website was being flagged as not being secure.
Looking at your source code, a lot of your links are http:// not https://.
As your site has an SSL certificate, it will be expecting all links to be secure (https) and will likely block insecure (http) links. In this case, your stylesheets are http which may explain why all of your styles are not showing.
Consider checking your Wordpress Settings > General and make sure that both web addresses have https:// not http:// at the start of the web addresses.
If you do change these, next go down under Settings to Permalinks and make sure your Permalink settings are set to Post name and then click ‘Save changes’ down the bottom to refresh your .htaccess file.
I’m not sure why it has happened out of the blue but hopefully this gives you some success
Seems this suggestion made it worse .lol
Okay I changed it to https and now it’s loading the non SSL certificate page…
The domain I bought isn’t having SSL so that’s why it’s showing that …
How can I remove the https to http now because I can’t access even the login page now again
The page you are describing is the page that I saw initially before I suggested the changes.
I looked at your code and it is still showing as http:// not https://
Do you hve access to your cPanel? If so, check your SSL/TLS Status as your SSL may need to be re-genrated. From what I can see, I believe it has to do wit ha conflict with your SSL.
Hopefully your host is offering you a free Let’s Encrypt digital certificate
Ah. I should have fully read your message.
you can login as there is a link down the bottom of the error page for you to get to the non secure version. What you will need to do is sign in and try and navigate it.
What I do not understand is why it said you ahd an SSL but you are telling me now that you don’t have one. Ideally you need one for your site to be viewed in search results as Google is now blocking insecure sites (http://).
Feel free to direct message me and. I can try and walk you through it and apologies for suggesting the https:// as I believed that you have an SSL.
Your server forbids access to the necessary CSS files, Javascript files, and images:
The call of http://www.phaxsam.space/wp-content/uploads/2024/09/cropped-Dark-and-White-Simple-Personal-Name-Initial-Logo-1-192x192.png
yields in:
Forbidden
You don’t have permission to access this resource.
There can be many reasons for this, you would need Google to finde some strategies against it (did you do something on the server with access rights?). Try also to ask the support of your hosting provider.
But first I would enable SSL for your website (you do that in the backend of your hosting space, not in WordPress), to eliminate SSL problems.
Then try to access again the image, using https now instead of http
If that works, try to access now the homepage with https
If that works you should enter the WordPress backend, and set https: instead of http: in the general settings (Do a backup before you do any administrative work in WordPress) - if there are problems, set it back following one of the variants in How to Change Your WordPress Site URLs (Step by Step)
I’m using a free hosting so I think that’s why the issue is happening
Could you move your website to a chep host like Go Daddy, Hostgator or Bluehost? All of thse will give you a free SSL which should fix the issue.
Then forget the free stuff. Move everthing to a good provider, where you can swith on “Let’s Encrypt” SSL.
If it’s free, it usually does not provide sufficient value.
Hello,
for me, it does not even open (unless I refresh again, then it’s SSL error). Please check with your hosting and also check your redirects. Something seems to be misconfigured.
–
Matej
The page contains mixed content. https and http.
If you cannot change to https and you can get to the .htaccess file, try adding
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
This will stop https calls and force to http. While the site will be insecure, the protocol calls will all be consistent which will at least rule out mixed content.
At least if it goes wrong, you can jump into the .htaccess and remove the three lines.