• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved Additional nginx directives and file sharing

NicolasP.

Regular Pleskian
I think that I found an issue when I want to activate Wordpress Permalinks for nginx.

I follow this instructions https://kb.plesk.com/en/126908 and when I put this directive

if (!-e $request_filename) {
rewrite ^.*$ /index.php last;
}

I have a problem with file sharing. Admin user does not exist.
I did the second solution and it works in all domains.
 
I am using these rules and they work for me:

if (!-e $request_filename){
rewrite ^(.*)$ /index.php break;
}
 
I am using these rules and they work for me:

if (!-e $request_filename){
rewrite ^(.*)$ /index.php break;
}

Did you put this to the main webspace domain? The server was installed yesterday from hosteurope.
Now I have no problem as I choose the second solution for all my domains.

See the screenshot when I am using this rules

2016-10-10.jpg
 
The article mentioned above from you and solution provided from me is nothing related to file sharing.
These are related to wordpess. I don't know what can cause your problem.
I think you shroud check whether you have activate file sharing
 
Back
Top