parse-community/parse-server-fs-adapter

PERMISSION ERROR

kjankit2988 opened this issue · 2 comments

: In order to use the FileSystemAdapter, write access to the server's file system is required.

at FileSystemAdapter._mkdir (/opt/bitnami/apps/parse/htdocs/node_modules/@parse/fs-files-adapter/index.js:106:17)

what folder need to permission change ?
any idea?

It should be the files folders, relative to the current process.

I recently encountered this issue, I solved it by using following steps
create "files" folder in parse root directory ( same directory where server.js file is located )
and then provide following configuration

options : {
filesSubDirectory : "/uploads"
}

It should create uploads folder under files folder automatically