https://bugzilla.wikimedia.org/show_bug.cgi?id=68760

--- Comment #7 from Bryan Davis <[email protected]> ---
Beta uses the NFS shared directory /data/project/upload7 to store images. 

I just did a permissions check on this directory for sub-directories that are
not world writable and found a bunch. This is a likely cause of at least some
of the failures.

To check: 

  $ cd /data/project/upload7
  $ find . -type d ! -perm -o=w
    ... lots of dirs output here ...

To fix:

  $ cd /data/project/upload7
  $ sudo find . -type d ! -perm -o=w -exec chmod 0777 {} +

A hack fix would be to cron this fix somewhere in beta. A better fix would be
to kill NFS and use swift for image storage.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to