Studio-42 / elFinder

📁 Open-source file manager for web, written in JavaScript using jQuery and jQuery UI
https://studio-42.github.io/elFinder/
Other
4.6k stars 1.41k forks source link

Wasabi cloud storage laravel upload not working #3644

Closed nkuldip closed 2 months ago

nkuldip commented 4 months ago

Discussed in https://github.com/Studio-42/elFinder/discussions/3643

Originally posted by **nkuldip** March 11, 2024 Wasabi cloud storage laravel normal upload working fine. But not working with elFinder. Here is elFinder config ` ['uploads'], /* |-------------------------------------------------------------------------- | Filesystem disks (Flysytem) |-------------------------------------------------------------------------- | | Define an array of Filesystem disks, which use Flysystem. | You can set extra options, example: | | 'my-disk' => [ | 'URL' => url('to/disk'), | 'alias' => 'Local storage', | ] */ 'disks' => [ 'wasabi' => [ 'driver' => 's3', 'key' => env('WASABI_ACCESS_KEY_ID'), 'secret' => env('WASABI_SECRET_ACCESS_KEY'), 'region' => env('WASABI_DEFAULT_REGION'), 'endpoint' => env('WASABI_ENDPOINT'), 'bucket' => env('WASABI_BUCKET'), 'path' => '/', 'uploadOverwrite' => true ], ], /* |-------------------------------------------------------------------------- | Routes group config |-------------------------------------------------------------------------- | | The default group settings for the elFinder routes. | */ 'route' => [ 'prefix' => 'elfinder', 'middleware' => null, //Set to null to disable middleware filter ], /* |-------------------------------------------------------------------------- | Access filter |-------------------------------------------------------------------------- | | Filter callback to check the files | */ 'access' => 'Barryvdh\Elfinder\Elfinder::checkAccess', /* |-------------------------------------------------------------------------- | Roots |-------------------------------------------------------------------------- | | By default, the roots file is LocalFileSystem, with the above public dir. | If you want custom options, you can set your own roots below. | */ 'roots' => null, /* |-------------------------------------------------------------------------- | Options |-------------------------------------------------------------------------- | | These options are merged, together with 'roots' and passed to the Connector. | See https://github.com/Studio-42/elFinder/wiki/Connector-configuration-options-2.1 | */ 'options' => array(), /* |-------------------------------------------------------------------------- | Root Options |-------------------------------------------------------------------------- | | These options are merged, together with every root by default. | See https://github.com/Studio-42/elFinder/wiki/Connector-configuration-options-2.1#root-options | */ 'root_options' => array( ), ); ` Here is laravel filesystems.php code ` env('FILESYSTEM_DISK', 'local'), /* |-------------------------------------------------------------------------- | Filesystem Disks |-------------------------------------------------------------------------- | | Here you may configure as many filesystem "disks" as you wish, and you | may even configure multiple disks of the same driver. Defaults have | been set up for each driver as an example of the required values. | | Supported Drivers: "local", "ftp", "sftp", "s3" | */ 'disks' => [ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), 'throw' => false, ], 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, ], 's3' => [ 'driver' => 's3', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION'), 'bucket' => env('AWS_BUCKET'), 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, ], 'wasabi' => [ 'driver' => 's3', 'key' => env('WAS_ACCESS_KEY_ID'), 'secret' => env('WAS_SECRET_ACCESS_KEY'), 'region' => env('WAS_DEFAULT_REGION'), 'bucket' => env('WAS_BUCKET'), 'endpoint' => 'https://s3.wasabisys.com' ], ], /* |-------------------------------------------------------------------------- | Symbolic Links |-------------------------------------------------------------------------- | | Here you may configure the symbolic links that will be created when the | `storage:link` Artisan command is executed. The array keys should be | the locations of the links and the values should be their targets. | */ 'links' => [ public_path('storage') => storage_path('app/public'), ], ]; ` What is missing here? Please help me.
github-actions[bot] commented 2 months ago

This issue is stale because it has been open for 50 days with no activity.

github-actions[bot] commented 2 months ago

This issue was closed because it has been inactive for 14 days since being marked as stale.