Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OST downloads from website: No file permissions #4703

Open
simonnzg opened this issue Feb 8, 2019 · 5 comments
Open

OST downloads from website: No file permissions #4703

simonnzg opened this issue Feb 8, 2019 · 5 comments

Comments

@simonnzg
Copy link

simonnzg commented Feb 8, 2019

I downloaded OST (both 1.11 and 1.10) from the website this morning to do some testing and note that the manufactured zip file contents have no permissions. I could sort-of make the download work by adding some defaults, but I still got errors.

noperm

Also, if I select some languages, the manufactured zip file contains the languages and the clean installation archive, which has the same name as the download bundle. The first question when unzipping from a command line is whether I should overwrite the file I'm unzipping with the contents.

@ntozier
Copy link
Contributor

ntozier commented Feb 8, 2019

I can confirm the permissions part. Maybe it was zipped on Windows. I would just chmod it.

@JediKev
Copy link
Contributor

JediKev commented Feb 8, 2019

@simonnzg

It was packaged on Linux from a fresh clone so not sure why the file permissions are borked. Will update the site soon.

Cheers.

@simonnzg
Copy link
Author

simonnzg commented Feb 8, 2019

Yes, no problem for me, but I guess a bit of a headscratcher for some. :)
So, because the directories are already execute, it's into several iterations of the "ugo" chmod method to pull all the permissions and then put them back in the right order. You can't just run 755 or 744 on the lot as the files should be read only for Group and Other, but the folders need execute. Such fun.
Building the permissions in properly in the first place would be better. Without the permission set all you get is a white screen when running the installer.

@simonnzg
Copy link
Author

simonnzg commented Feb 8, 2019

Hi @JediKev - I just saw your comment. Thanks!

@tricoos
Copy link

tricoos commented Feb 22, 2019

Still not fixed so I had to do this which worked for me:
cd upload
find ./ -type f -perm 000 -print -exec chmod 644 {} \;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants