Open dranas85 opened 2 years ago
I guess the user owning the Mango process doesn't have write access to the file. Assuming you are using any UNIX system you can try the followings
ps -ef | grep mango
ls -l /path/to/info.json
it states it doesn't exist. I checked the directory my self and it doesn't exist. How can I make them?
Ah so Mango was trying to create the file with w
mode but failed, and that's why you got the error. Can you check the folder's owner and permissions using ls -l /path/to/folder
? To be able to create files in it Mango needs both the write and execute permissions on the folder, so it should be something like rwx
.
I checked the permissions, they have rwx but its root, not my user that has them
Then your library folder is owned by root. You might want to check why that happens. It could be that you were using sudo when creating the folder or mounting an external drive. You can change the owner back to your user using chown -R
I get this on every manga. Error opening file with mode 'w': '/mnt/share/manga/1-Nen A-Gumi No Monster/info.json': Permission denied
the name of the manga changes, but the error is still the same. The credentials I use on the shared device are set for R/W permissions, so I am at a loss for how to fix it.