Publish button not working
-
Hi folks,
I’ve been working on settings up my own wordpress site, self hosted. I’ve hit an issue which I can’t seem to solve, so need some help:
I tried to create a few test posts for my blog but when I hit the Publish button I get taken back to the list of posts and my new post is still in Draft status – not published. I’ve also noticed another issues – that when I try to change the permalink format settings my settings won’t save and keep going back to “Plain”.
I’m running wordpress with nginx and accessing it from the outside world via an nginx reverse proxy (also used for a number of other web apps I run):
internet -> nginx reverse proxy -> wordpress (nginx).
I know I could run wordpress directly on the nginx server currently acting as the reverse proxy, but I’d really like to get by current configuration to work.
One work-around I’ve had to impliment already is to get the nginx rev. proxy to rewrite the urls. On the wordpress server the site is accessible (within my LAN) at https://wordpress.home/ but via the rev. proxy I want it to be accessible at https://myhost/blog/
On the rev.proxy server I have the following two location blocks defined:
location /blog/ { proxy_pass https://wordpress.home/; } location ~ ^/wp-.*$ { rewrite ^/wp-(.*)$ /blog/wp-$1 permanent; proxy_pass https://wordpress.home; }
If anybody thinks they can help – please let me know what information you need.
Thanks!
- The topic ‘Publish button not working’ is closed to new replies.