I'm using CKFinder in my web app (based Laravel), in order to navigate and upload files to an nginx storage server. I manage to do so when developing on localhost, so the connectivity between the client app and the storage server was using FTP. After deploying the app into appEngine server, I'm getting the error: "It was not possible to complete the request due to file system permission restrictions". Nothing have changed in the depolyed applocation, the code is exactly the same as in the localhost. except for the fact that the appEngine runs the app over https instead of http. what might be the problem for this issus?
here are some of my configurations for ckfinder:
config.php:
$config['backends'][] = array(
'name' => 'my_conntection',
'adapter' => 'ftp',
'host' => 'hostnname',
'username' => 'username',
'password' => 'password',
'root' => '/upload',
'chmodFiles' => 0644,
'chmodFolders' => 0755,
'baseUrl' => 'https://hostname/upload',
'passive' => 'false',
);
What should I also do? Am I missing something?
Is there any alternatives for this annoying ckfinder?