Server Configuration
Problem
I am trying to install Wordpress on my server running Sierra and I am running into a problem upon installation that continues post installation.
When I navigate to .php to begin the installation, I get the following, plain-text install screen rather than the "standard one" highlighted in all of the install documentation I could find:
After install, I get the following non-functioning site that is essentially useless. I just don't see where the problem(s) may be. It's a relatively painless install procedure.
For what it's worth, I have other, non-wordpress sites being successfully served by the configuration above. I welcome any and all assistance/ideas on where I can turn to remedy this problem.
Server Configuration
Problem
I am trying to install Wordpress on my server running Sierra and I am running into a problem upon installation that continues post installation.
When I navigate to https://www.my.server/wp-install/index.php to begin the installation, I get the following, plain-text install screen rather than the "standard one" highlighted in all of the install documentation I could find:
After install, I get the following non-functioning site that is essentially useless. I just don't see where the problem(s) may be. It's a relatively painless install procedure.
For what it's worth, I have other, non-wordpress sites being successfully served by the configuration above. I welcome any and all assistance/ideas on where I can turn to remedy this problem.
Thanks to Jacob P. for pointing me in the right direction.
The fix was simple once I saw that the site was not serving CSS resources. Since my site was indeed using https (and not http), simply changing the following in wp-config.php:
To (note the https):
solved the problem for me.
https://www.my.server/
, you're usinghttps
, but if you don't have a certificate, or it's misconfigured, the browser will probably refuse to load assets from that URL. – Jacob Peattie Commented Oct 24, 2018 at 10:58