Questions tagged [file-permissions]

For questions relating to file read/write permissions, user groups, executable bits etc. Be sure to include a tag for the operating system (Windows or Unix) and tag for operating system version.

For questions relating to file read/write permissions, user groups, executable bits etc.

Related tag:

Filesystem permissions on Wikipedia

3073 questions
1
vote
0 answers

CreateFile() "D:/nginx-1.9.12/nginx-1.9.12/html/war/helloworld/greet" failed (2: The system cannot find the file specified)

I am a newbie to nginx. I am trying to implement a basic hello-world program for remote logging in GWT. I am able to successfully log using Tomcat. Similarly, I am trying to run a RPC (again Hello World) program on the two servers, works perfectly…
Kruttika
  • 11
  • 4
1
vote
1 answer

Java ZipFileSystem attributes

So I am using a code VERY similar to the following (pulled from http://fahdshariff.blogspot.com/2011/08/java-7-working-with-zip-files.html): /** * Creates/updates a zip file. * @param zipFilename the name of the zip to create * @param filenames…
Nicholas Terry
  • 1,812
  • 24
  • 40
1
vote
0 answers

Protect file's creation date from being modified in iOS

I am trying to protect the Creation and last modification dates from a file in iOS so other users don't change them by using the SetFile or touch commands on the terminal. Is it even possible to do this on iOS?
Adam
  • 199
  • 11
1
vote
1 answer

Wordpress permissions issue when updating plugins

A Wordpress blog I maintain has recently started being unable to update plugins due to a permissions issue. Unfortunately, I don't know what has changed to cause it. I've been trying to work out the correct way to resolve the problem, but my…
infojolt
  • 5,244
  • 3
  • 40
  • 82
1
vote
2 answers

Why getting an access to file path denied message when executing ssis package from catalog

I've gone through a number of posts - and haven't come across a solution to this. I've spent days on this... I have a project which contains one package with parameters that as part of the processing, moves files from file server to db server &…
user3460848
  • 63
  • 1
  • 7
1
vote
1 answer

How to disable deleting folders in root but allow subfolders/files to be created/modified?

we have a Windows 7 server and I've been asked to set it up so no one can move files in the root directory except for 3 users and still allow everyone to access/create files in subdirectory. Example: We have a drive, X:/ We don't want people to move…
1
vote
0 answers

Access denied to Nginx folder with folders and files not being created

I use Nginx at my company and am new at it. I'm just wondering if anyone had issues where the Nginx did NOT have enough privileges on Windows 10 NOT Ubuntu, but Windows 10, to create files and directories within the Nginx folder. In my Nginx.conf,…
pelican
  • 5,846
  • 9
  • 43
  • 67
1
vote
2 answers

How to make an assets folder private in rails?

I'm using Paperclip for letting users upload photos to my app. Then, I'm saving the photos in /public/photos. Now, I want the photos being accessible just for some users. How can I set this permission system up?
Erik Escobedo
  • 2,793
  • 24
  • 42
1
vote
2 answers

How does .NET security really work?

I just saw this question: Understanding .NET’s “SecurityAction” parameter for permissions And I have a question. With the following code: private void button1_Click(object sender, EventArgs e) { Layer1(); MessageBox.Show("OK"); } private…
Lasse V. Karlsen
  • 380,855
  • 102
  • 628
  • 825
1
vote
1 answer

Mule ESB app deployment anchor file permission

I need some help pertaining to app anchor file permissions. We are running Mule EE ESB 3.7.3 on RH 6.5 using an account called mulesvc. We deploy apps using a different account, muledeploy. When we go to deploy an app, mule sees the new deployment…
1
vote
2 answers

phpMyAdmin - Error Wrong permissions on configuration file, should not be world writable

I'm having problems accessing my phpmyadmin. I have all of my manage servers running on XAMPP and when i go to localhost/phpmyadmin I'm given the same error as this title. I've seen there is loads of permissions you can change on the files in…
Max Lynn
  • 1,738
  • 6
  • 22
  • 35
1
vote
2 answers

What is the correct file permissions for .gitignore

I'm about to work on a new project and the .gitignore file is accessible to the web which is a bit of a security leak. The .gitignore files permissions are 644 i.e. -rw-r--r--. The project is on bitbucket.org, perhaps this requires the file to be…
Holly
  • 7,462
  • 23
  • 86
  • 140
1
vote
1 answer

Babel build program is breaking permission of NPM bin script

I have NPM package with a bin property linking to a script, e.g. /foo/package.json { "name": "foo", "bin": "./dist/index.js" } /foo/src/index.js #! /usr/bin/env node console.log('Hello, World!'); I use npm link to create a…
Gajus
  • 69,002
  • 70
  • 275
  • 438
1
vote
0 answers

Preventing access to specific file for specific user in git

Imagine we have a team that we are using a project in git and we have remote access to the repoitory. The structure of project is: project/ install.sh readme changelog project.odt src/ project.py …
MLSC
  • 5,872
  • 8
  • 55
  • 89
1
vote
1 answer

Permissions for git project when using on remote server

These are the commands that I've ran on my server: $ whoami git $ ls -l drwxr-xr-x 3 git git 4096 Jan 16 05:48 git $ ls -l git/ total 4 drwxrwxr-x 7 git git 4096 Jan 16 05:55 tpro.git Then on my local machine: $ git remote add origin…
MLSC
  • 5,872
  • 8
  • 55
  • 89