I’ve attempted to publish my site 15–20 times using RapidWeaver Elements, but each time it only takes me to the Index page of my site: https://beyondlimits.media.
I’ve already coordinated with Chillidog Hosting and confirmed I’m using the correct login information and settings. A couple of times I also received an error message (I’ll include an image in this post).
I’d appreciate any help or suggestions to get this resolved.
Thank you in advance!
Here’s one of the error messages I received during publishing (screenshot attached). Hoping this helps clarify the issue.
My gut feeling is that issue is due to the location you are publishing your site to or the setup of your server (this doesn’t look or sound like an Elements issue).
You can always try to export your website locally and upload with a third-party FPT client like Transmit to confirm the files are on the server.
A 421 Misdirected request is a hosting issue. See the Apache docs:
Many sites use the same TLS certificate for multiple virtual hosts.
The certificate either has a wildcard name, such as '*.example.org' or carries several
alternate names. Browsers using HTTP/2 will recognize that and reuse an already opened
connection for such hosts.
While this is great for performance, it comes at a price: such vhosts need more care
in their configuration. The problem is that you will have multiple requests for
multiple hosts on the same TLS connection. And that makes renegotiation impossible,
in face the HTTP/2 standard forbids it.
So, if you have several virtual hosts using the same certificate and want to use
HTTP/2 for them, you need to make sure that all vhosts have exactly the same SSL
configuration. You need the same protocol, ciphers and settings for client
verification.
If you mix things, Apache httpd will detect it and return a special response code,
421 Misdirected Request, to the client.
Apache’s recommended fix is to remove the wild card certificate and install a new SSL for the domain, or remove http2.