Closed (duplicate)
Project:
Drupal core
Version:
6.x-dev
Component:
documentation
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Sep 2007 at 23:04 UTC
Updated:
2 Jan 2014 at 19:04 UTC
Jump to comment: Most recent
Comments
Comment #1
ChrisKennedy commentedLet's be positive here - that notice is more useful than nothing (Drupal used to not display any notice), but I agree with you that it could be better.
Comment #2
webchickActually, the initial notice of requiring write permissions is similarly non-specific:
"The Drupal installer requires write permissions to ./sites/default during the installation process."
Note that these same types of messages are also in admin/logs/status and need to be changed there as well.
Can I get confirmation that the write permissions is 777 and the read permissions is 755? Anyone feel up to writing a "for dummies" guide on how to chmod files for the handbook, to which we can refer? Or is there one already?
Comment #3
julien commentedif you do a chmod 755 file, the first number 7 means write, read, execute rights for the owner, the second is for the group, the third for others.
the read right have a value of 4, the write value of 2, and the execute value 1, so for the owner the first number, is 7 so it have write, read and execute.
if the second number, the group of the file, here 5, it means that it have the read right and the execute right, because 4+1 = 5
it's the same operation for the last ones for the right attribute to others..
Comment #4
Anonymous (not verified) commentedI thought the installer already set the settings.php file to 444. Setting the directory containing settings.php to 755 makes sense. I say "containing settings.php" for those multi-site installs. For the documentation we could state it more like this.
We have different operating systems to support so the mention of chmod isn't correct except to give UNIX examples.
Comment #5
keith.smith commentedDuplicate of http://drupal.org/node/145335