Questions tagged [folder-permissions]

90 questions
1
vote
1 answer

Allowing single group having access permission of multiple groups

I would like to know one thing about linux (ubuntu) permission commands. I am having couple of user groups in my linux environment 1) www-data -> Created by nginx automatically 2) ubuntu -> Just for PHP uses Now both are having their own different…
Tom Inic
  • 41
  • 5
1
vote
1 answer

set total control permission on my visual .net installation application folder

I have developed a winform application in Visual Studio 2010. I created a setup project to make the install of the app. When I install the app and I choose a drive like D:\MyAPP I have no problem and I could ran my app without problems, but when I…
emmanuel sio
  • 1,935
  • 3
  • 24
  • 26
1
vote
1 answer

How do you set permissions on a network directory for sharepoint access?

I have created a visual web part and placed it in my sharepoint site. This web part accesses and displays data from an excel file on my network, an example directory is \\server1\files\file.xls I can get this to work by applying read access to…
1
vote
3 answers

PHP change folder permissions for outgoing commands only

I have a file sharing website in the making where I am allowing the visual and function part of pages work. This runs into a problem when I want to allow server side scripting like php pages to be uploaded. This php (etc.) page could easily back…
Spencer May
  • 4,266
  • 9
  • 28
  • 48
1
vote
4 answers

How to reset folder permissions in .NET?

I have a program that needs to change the permissions on specified folder. What I must do first is to remove any permission that was given to the folder by inheritance (i.e. remove all actuel permission) and add new permissions for specifics…
David Brunelle
  • 6,528
  • 11
  • 64
  • 104
0
votes
0 answers

How to create a folder on Windows machine which can only be accessed by application?

I want to create a application specific folder from my application. I want to create a folder, in which my application should be able to read, write and copy files and sub-directories. But at the same time I want this folder to be un-accessible…
0
votes
1 answer

Security and Permissions Requirements for VS Code

I am in a government organization and thus a pretty locked-down environment. I can get VS Code and extensions, but I have to fill out a form for requirements and justification. I have the justification down and I have a good handle on the…
0
votes
0 answers

How to upload files to a folder using a specific user group login and password?

I am trying to develop an Access database that allows users to upload files to a folder on a shared drive. I have the code for doing this. However, I would like to not have anyone delete or edit files. For this, I have a folder with write…
0
votes
1 answer

Why moodle saying Unable to save the cache config to file

I tried to give write permission to moodledata folder like sudo chmod 777 Then i try to run my moodle site but it's giving me Unable to save the cache config to file. I tried to clear cache using php admin/cli/purge_caches.php But this command…
0
votes
1 answer

Powershell Script to add Administrators with full permissions adds Admin group with NO permissions

We have a shared drive that was very poorly managed for years. Full Control was given to users that had no reason to have full permissions. Naturally, they removed the administrators because "they don't need to see my things." In an effort to…
0
votes
0 answers

SSIS Package completes successfully when ran from Visual Studio SSDT but fails from SQL Agent

So I have a SSIS package that completes successfully when ran from the SSDT/Vis Studio but fails when called from SQL Agent. The error I receive from the SQL Agent is generic and doesnt hint what it is as below... It just says "The package execution…
Matthew Stott
  • 395
  • 1
  • 4
  • 15
0
votes
0 answers

Folders created by Program causes read-only to appear

So, I stumbled across a little problem, I can't seem to figure out. I have a NAS where I dump data on and a script to download files I need back to my PC. While doing so, it creates a folder for the file. After that, I run a different script that…
WorldTeacher
  • 93
  • 1
  • 10
0
votes
1 answer

ASP.NET identity impersonate failing domain admin

I have asp.net web site and trying to access shared folders in servers when i use my username and password on identity impersonate, it is working fine and letting me to check logged in users permission to folder however if i try service account…
JOZO
  • 99
  • 1
  • 10
0
votes
0 answers

What user or group does Windows consider Sublime Text to be?

Recently discovered that Sublime Text cannot create a file in wwwroot due to folder permissions, and that it's necessary to run as administrator in order to bypass that. Also ran into a similar situation with Sourcetree; tried to clone a repo into…
Cmaso
  • 1,095
  • 1
  • 10
  • 23
0
votes
1 answer

applying all the missing permissions from folder source to folder target in powershell

I know this: how to script out all the permissions in a folder using powershell? $Acl = Get-Acl "C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER01\MSSQL\DATA" Set-Acl "C:\Program Files\Microsoft SQL Server\test" $Acl But how, instead of…