Magento 2 files onwer should be set to your system (SSH/FTP) user and have the following permissions:
files - 644
folders - 755
You can reset the permissions by running command below via SSH:
find . -type f -print -exec chmod 644 {} \;find . -type d -print -exec chmod 755 {} \;
Comments
0 comments
Please sign in to leave a comment.