• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

File Permission

S

Solhaug

Guest
Hi all

I have Plesk 8.1.1 running on a CentOS.

when i add a new domain in plesk and then ftp the new domain the file permisson's are not good. i have uploaded Joomla and under the installation is says no write rights to all the dir and files.

how do i changes it so when i add a domain the user also have read and write rights.

hope someone can help.
 
If you uploaded the files via the ftp user for that domain, then you should have access to them. You didn't really provide much information about what the permissions currently are.
 
the Chmod is 755, thínk i need 777.

maybe it is the apache that don't have access to the files ???
 
If you


Code:
cd /path/to/vhosts/domain.com/httpdocs/
Code:
wget [url]http://joomlacode.org/gf/download/frsrelease/111/263/Joomla_1.0.12-Stable-Full_Package.tar.gz[/url]
Code:
tar -xzvf Joomla*
your files will have the correct permissions for you.to install Joomla.

Just point your browser at http://yoursite.tld and the installer should continue for you.

If still have trouble then post back the results of ls -al /path/to/joomla
 
Originally posted by DCoats
If you


Code:
cd /path/to/vhosts/domain.com/httpdocs/
Code:
wget [url]http://joomlacode.org/gf/download/frsrelease/111/263/Joomla_1.0.12-Stable-Full_Package.tar.gz[/url]
Code:
tar -xzvf Joomla*
your files will have the correct permissions for you.to install Joomla.

Just point your browser at http://yoursite.tld and the installer should continue for you.

If still have trouble then post back the results of ls -al /path/to/joomla

If you follow the above instructions as root you WONT be able to run the CMS as all the files and folders will be with different user and group.

if you done it already you can change it with this command via ssh:

chown -R user:group $DOMAIN_ROOT$/Joomla

as user:group must be the same as these for the domain where you are installing joomla
 
Back
Top