Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up`lando pull` set files directories with the wrong permissions #1325
Comments
This comment has been minimized.
This comment has been minimized.
If you already downloaded public files through
|
pirog
added this to the 3.0.0-rc.3 milestone
Feb 1, 2019
pirog
self-assigned this
Feb 3, 2019
added a commit
that referenced
this issue
Feb 4, 2019
This comment has been minimized.
This comment has been minimized.
@shaal was finally able to get to this. Can replicate and confirm. Fix will be in next release! |
Feb 4, 2019
This was referenced
pirog
closed this
Feb 4, 2019
pirog
referenced this issue
Feb 5, 2019
Closed
[3.0.0-rc.5] lando composer --version shows lando version not composer version... #1407
added a commit
that referenced
this issue
Feb 5, 2019
added a commit
that referenced
this issue
Feb 5, 2019
added a commit
that referenced
this issue
Feb 6, 2019
added a commit
that referenced
this issue
Feb 6, 2019
added a commit
that referenced
this issue
Feb 7, 2019
added a commit
that referenced
this issue
Feb 7, 2019
added a commit
that referenced
this issue
Feb 8, 2019
added a commit
that referenced
this issue
Feb 8, 2019
added a commit
that referenced
this issue
Feb 8, 2019
added a commit
that referenced
this issue
Feb 8, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
shaal commentedDec 6, 2018
Bug Report
Tell us about your setup
v3.0.0-rc.1 on Ubuntu 18.10
Tell us about your
.lando.yml
After running
lando pull
and choose only files fromdev
.Any image from sites/default/files cannot be opened
(The requested URL "[...]/sites/default/files/2018-05/S2912_0.jpg" was not found on this server.)
Unless it's an image that using image_style, and then it opens correctly.
This is what fixed it (need to be done for each directory under /sites/default/files)
lando ssh
cd /app/web/sites/default/files/2018-05
ls -lat
and I see that2018-05
directory is set to750
(drwxr-x---)chmod 755 .
fixes the issue (drwxr-xr-x)This issue does not happen when I manually download the files from pantheon's backup, and open it with
tar xzvf
, in that case all permissions are set correctly.