Can’t get paramaters from url page of content
Can’t get paramaters from url page of content
Can’t get paramaters from url page of content
In my experience WP doesn’t like being accessed from anywhere that’s not the site url in the wp_config table. If you want to change the URL to your new(?) one this codex page should help, however it will probably prevent you from accessing by your old(?) url.
After hours of debugging, I can’t say exactly what the problem was, however disabling all the plugin solved the issue. It wasn’t one particular plugin, I then re-enabled all of them and everything was fine. Thank you for your interest!
Normally, to add rewrite rules in WordPress there is the generate_rewrite_rules filter. From there you can call the function add_external_rule ($wp_rewrite->add_external_rule($rule)) where you could add your rule which not maps to index.php. Unfortunately WordPress will try to write this rule into the .htaccess file. But maybe this could be helpful.
Can I do fragment caching with NGINX fastcgi?
There are several ways to enable https on your wordpress site. You need to update your site urls including https in it if you have access to your dashboard You can also define both the WP_SITEURL and WP_HOME in your test wp-config.php define( ‘WP_SITEURL’, ‘http://example.com.mytestdomain.com’ ); define( ‘WP_HOME’, ‘http://example.com.mytestdomain.com’ ); In relation to your nginx … Read more
Ok some wise guy deleted my last post. The answer, which the above member (@etc) gave to me on another forum, and is working quite fine, is as follows: # Rewrites for Bedrock Multi-Site Subdomain Setup rewrite /wp-admin$ $scheme://$host$uri/ last; rewrite ^/(wp-.*.php)$ /wp/$1 last; rewrite ^/(wp-(content|admin|includes).*) /wp/$1 last; He revised his answer but did not … Read more
In the end the new server lock down was a red herring. There is a plugin, somewhere, which is requiring that editors have the role ‘manage_options’ enabled.. I installed a roles plugin (User Role Editor) and just granted them that extra access and it works now. I’ll need to go through the plugins to find … Read more
Fault was with the dns of the ISP provider. It was still cached from a server migration. Where the http was configured on Apache ( old server)
Your docker container is binding port 80 to 8185 and your nginx proxy is pointing at port 8001 when it should be pointing at 8185.