• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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