-
Notifications
You must be signed in to change notification settings - Fork 21
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
Wrong permissions, editor not starting #38
Comments
It's hard to say to be honest. I run with the default |
In the browser console I get:
Where is the tmpfile located? |
OK, right, that indeed sounds like it can't find/execute Textern. To confirm, is Firefox installed under |
Firefox is installed from the default repositories, no special. |
Just for testing I have started firefox as root but get the same error message in the browser console. |
I have found what's wrong. Seems firefox on Debian only looks at |
I installed textern following the Installation instructions. But the editor (gvim) does not open when I hit
Ctrl+Shift+D
. After looking what's going wrong I realized that native files have no global read permission. This is because I do not use the defaultumask 022
on my system for reasons. Instead I useumask 007
. That means new created directories and files have the permissionrw-rw----
on my system.I have tried to correct (I would not like to set absolute permissions e.g. chmod 644):
But this is not enough. If I install textern for the current user then everything is working.
What is to do to run textern system wide in this case?
The text was updated successfully, but these errors were encountered: