skip to Main Content

When I upload files through my cpanels file manager all my php file permissions are being changed to 0666 from what I read this is not secure + it is causing my WordPress to not function correctly. Normally web hosts have the permissions set to 0644 when uploading files. It would takes ages for me to change all files manually from 0666 to 0644. How can I change the permissions when I upload in cpanel? Should I try ftp and see if that makes a difference?

EDIT

When I upload the zip file it uploads as 0644 than when I extract the files inside are all turned into 0666.

Thanks

2

Answers


  1. There is no need for you to re-upload all files to simply change permission for them.

    Use your FTP client to change file permissions for files, directories and sub-directories.

    You can do this via command-line SSH (if you have access).

    Login or Signup to reply.
  2. The way that fixed my problem was this one :

    I had access to Terminal

    Consider that i have a folder named "Storage" on my public_html folder.
    i should open public_html folder on Terminal, then i just need to write this code on terminal:

    chmod 755 Storage -R
    

    That’s it!

    for some young eyes, you should see something like this on your terminal :

    [user@blahblah public_html]$ chmod 755 Storage -R
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search