• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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