• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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 Backup Warning: httpdocs/vhost-saved.conf: Cannot open: Permission denied

You can change the permissions of a file using the "File Manager" link on the "Websites & Domains" tab.
 
Thanks for the answer, but it's still not clear. Specifically, for which file the permission should be edited, Websites & Domains>Files> httpdocs is all the WP installation files?
 
According to the previously quoted backup error message, the file is "slow.log" and located in your webspace (vhost) root directory. It must be readable by the subscription user and group psacln or psaserv.
 
Ok, found it, however editing permission is disabled. Current settings for the "slow.log" are "RW- --- ---" User:root, Group:root
 
Can you access the server through SSH? You could then run chmod 0644 slow.log to change the file permissions.
 
Yes, I can access the server through SSH, I just wanted to avoid that if possible by asking you for an alternative solution. Anyway, I'll try it that way. Thank you
 
For some reason, this doesn't seem to be working for me


-I did access the server via the Plesk "SSH Terminal" extension.

-Typed the following command:

# chmod 0644 /var/www/vhosts/website.com/httpdocs/vhost-save.conf

And this is what I've received as a result:

chmod: cannot access '/var/www/vhosts/website.com/httpdocs/vhost-save.conf': No such file or directory
 
In your above description, the filename wasn't vhost-save.conf, but slow.log.
If the command below is correct, inserting "slow.log" in it doesn't give any results either.

'# chmod 0644 /var/www/vhosts/website.com/httpdocs/slow.log'
chmod: cannot access '/var/www/vhosts/website.com/httpdocs/slow.log': No such file or directory



If I try to open the "slow.log" file stored inside the httpdocs folder keep receiving the following notifications:

'Unable to display the file /var/www/vhosts/website.com/slow.log: Unsupported file format.'
 
If the command below is correct, inserting "slow.log" in it doesn't give any results either.

'# chmod 0644 /var/www/vhosts/website.com/httpdocs/slow.log'
chmod: cannot access '/var/www/vhosts/website.com/httpdocs/slow.log': No such file or directory

When slow.log is located in /var/www/vhosts/website.com, your command must be "cmod 0644 /var/www/vhosts/website.com/slow.log", not "...httpdocs/slow.log".
 
You can try to add read permissions to the group, e.g.
Code:
chmod 0640 /var/www/vhosts/glamsty.com/httpdocs/vhost-saved.conf
That should already be sufficient.
Just wanted to say thanks I had the same issue with permissions on a conf file and this solved it for me.
 
Back
Top