0

I have just uploaded a new website, but I keep showing the following error:

Internal Server Error

File "/home/mirahcom/public_html/pay/cdash/login.php" is writeable by others

Does anyone know why this issue occurs?

Community
  • 1
  • 1
  • 1
    Possible duplicate of [suppress apache 500 error for "writable by others"](http://stackoverflow.com/questions/13130197/suppress-apache-500-error-for-writable-by-others) – osowskit Dec 28 '16 at 23:48

1 Answers1

1

Whatever software you used to upload the files likely allows you to set permissions on files and folder. For FTP clients like Filezilla, right click the remote file or directory and select "File permission"

For OWNER, check all boxes, for the other 2 groups, check READ and EXECUTE

Is Linux land, that equates to chmod 755 ./* ... full permissions for you (7) and read (4) + write (1)=(5) for everyone else

Duane Lortie
  • 1,285
  • 1
  • 12
  • 16