17,840
questions
0
votes
0
answers
11
views
Django/Whitenoise collectstatic causing Permission Denied Error
I have been struggling with this for weeks and have hit a brick wall. Im trying to deploy a Django App and Im using Whitenoise to handle Static Data. When I run collectstatic I get “Permissions Denied”...
0
votes
0
answers
5
views
Coolify Installation chown: changing ownership of '/data/coolify/webhooks-during-maintenance': Operation not permitted
I'm trying to install coolify on my Ubuntu running on VM Fusion and I encounter this error, I tried chown and creating the /data/coolify directory.
Error:
chown: changing ownership of '/data/coolify/...
0
votes
0
answers
19
views
How to get Sharepoint and ms365 groups of a sharepoint file
I am trying to get all groups that have access to a given sharepoint file. I need the sharepoint groups + the ms365 groups that have at least read access but I only get the sharepoint groups.
I use ...
0
votes
0
answers
7
views
@PermissionsAllowed Quarkus annotation and Keycloak configuration. Behaviour is not what I expect
My controller:
@PermissionsAllowed("objects:view")
@GET
@Path("/perm")
@Produces(MediaType.TEXT_PLAIN)
public String permission() {
return "Hello ...
0
votes
0
answers
25
views
Program 'python.bat' failed to run: Access is deniedAt line:1 char:1
whenever I type python from powershell on windows 10 I get this in user mode:
Program 'python.bat' failed to run: Access is deniedAt line:1 char:1
+ python
+ ~~~~~~.
At line:1 char:1
+ python
+ ~~~~~~...
0
votes
0
answers
10
views
How can I sync updated user permissions in a NextAuth session after an admin changes them, without requiring a re-login?
I'm working on a Next.js application with NextAuth, where user permissions are stored in the session along with other user data. Currently, the user permissions are retrieved at login and stored in ...
-1
votes
0
answers
16
views
React Utility Class that uses redux data to calculate permissions [closed]
My React application requests a large number of user settings/data from the back end and puts them in Redux.
We use these settings and data to define user permissions and state machines for display ...
0
votes
0
answers
17
views
How to save a file in a selected directory in Flutter for Android
I'm trying very hard to understand how to get the permission to write files in a selected directory with File Picker in Android. I'm also using permission handler package. The code is correct, I'm ...
0
votes
1
answer
20
views
Unable to get SEARCH_PATH to take effect in queries
Our company has a policy where each app creates a dedicated database schema and two users per app schema - a runtime appname user and an admin appname-admin user (for running migrations). I was ...
1
vote
0
answers
28
views
Know permissions active for a user or service
I am working with AWS STS, an account has to connect to another account and retrieve some s3 files.
I am facing lots of permission issues. Since permissions can be given in a multiple different levels ...
0
votes
1
answer
28
views
Show Microphone and Camera Permission Pop-up in the Centre like Google Meet in Google Chrome
Google Meet has recently updated their UI (ref). As per the new UI, the microphone and camera permission pop-up (/ confirmation dialog) is prompted in the centre of the screen while dimming out the ...
0
votes
1
answer
55
views
Permissions for media access Python to Android
I have been programming with Kivy and KivyMD for the last week and I've try to develope an app that has an image selector. The problem I've encountered is that no matter what I use, it doesn't show my ...
0
votes
1
answer
59
views
No Android WRITE_EXTERNAL_STORAGE permission, with ALL_FILE_ACCESS granted?
I have a music player app (that only I use, it is not in Google Play nor it will ever be) with the following Manifest permissions:
<uses-permission android:name="android.permission.WAKE_LOCK&...
3
votes
1
answer
69
views
Odd behavior in Windows directory permission?
In Linux, I was trying to determine whether a I have read/write permission to a directory, so I did access(dir, R_OK | W_OK) == 0, which worked fine.
I tried to do the same thing in Windows, however, ...
1
vote
1
answer
67
views
Reading a file from the download directory
I am trying to read an Excel file from the download directory on my phone.
I know the name of the file and it is in the download directory. I can read the file in my app if the file is stored in the ...