Home > Article > Backend Development > Centos dedeCMS directory permissions
1. First set the owner of the website directory to the user cd Directory chown -R User root directory find root directory -type d -exec chmod 750 {} ; find root directory -not -type d -exec chmod 640 {} ; 2. Data, templets, uploads, and a images directories Set read and write permissions: cd root directory chmod -R 770 data templets uploads a images
|