• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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