We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ckfinder.php // Here aws credentials
$config['backends']['default'] = array( 'name' => 'default', // 'adapter' => 'local', // 'baseUrl' => config('app.url').'/userfiles/', // 'root' => public_path('/userfiles/'), 'adapter' => 's3', 'bucket' => config('AWS_BUCKET'), 'region' => config('AWS_DEFAULT_REGION'), 'key' => config('AWS_ACCESS_KEY_ID'), 'secret' => config('AWS_SECRET_ACCESS_KEY'), 'visibility' => 'public', 'baseUrl' => config('BUCKET_URL').'/'.config('AWS_BUCKET').'/', /my aws bucket url/ 'root' => config('BUCKET_URL').'/'.config('AWS_BUCKET').'/', /my aws bucket url/ 'chmodFiles' => 0777, 'chmodFolders' => 0755, 'filesystemEncoding' => 'UTF-8' );
The text was updated successfully, but these errors were encountered:
Hello,
In documentation you can find example how configuration for aws s3 should look like.
For start you should delete those lines: 'chmodFiles' => 0777, 'chmodFolders' => 0755, 'filesystemEncoding' => 'UTF-8'
If you still have the problem, give me info?
Sorry, something went wrong.
bmlotek
No branches or pull requests
ckfinder.php
// Here aws credentials
$config['backends']['default'] = array(
'name' => 'default',
// 'adapter' => 'local',
// 'baseUrl' => config('app.url').'/userfiles/',
// 'root' => public_path('/userfiles/'),
'adapter' => 's3',
'bucket' => config('AWS_BUCKET'),
'region' => config('AWS_DEFAULT_REGION'),
'key' => config('AWS_ACCESS_KEY_ID'),
'secret' => config('AWS_SECRET_ACCESS_KEY'),
'visibility' => 'public',
'baseUrl' => config('BUCKET_URL').'/'.config('AWS_BUCKET').'/', /my aws bucket url/
'root' => config('BUCKET_URL').'/'.config('AWS_BUCKET').'/', /my aws bucket url/
'chmodFiles' => 0777,
'chmodFolders' => 0755,
'filesystemEncoding' => 'UTF-8'
);
The text was updated successfully, but these errors were encountered: