You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can upload and see files on my s3 bucket with no problem. The only thing is I can't see the url via my s3 url.
in my config file I have my disk displayed as:
` <?php
return array(
/*
|--------------------------------------------------------------------------
| Upload dir
|--------------------------------------------------------------------------
|
| The dir where to store the images (relative from public)
|
*/
'dir' => [
'root' => 'media',
'private' => 'media/user',
],
/*
|--------------------------------------------------------------------------
| 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' => env('FILESYSTEM_DRIVER', null),
/*
|--------------------------------------------------------------------------
| Routes group config
|--------------------------------------------------------------------------
|
| The default group settings for the elFinder routes.
|
*/
'route' => [
'prefix' => 'elfinder',
'middleware' => 'web', //Set to null to disable middleware filter
],
'resource_url' => 'elfinder',
/*
|--------------------------------------------------------------------------
| Access filter
|--------------------------------------------------------------------------
|
| Filter callback to check the files
|
*/
'access' => 'App\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(),
);
`
I set up the environment to use local and production filesystems.
my filesystem_driver is S3 for production.
I have been trying to figure out where to setup the url, but I can't figure it out. It still throws the connector?token= string.
How do I change the base url for s3 uploads?
The text was updated successfully, but these errors were encountered:
og6k
changed the title
s3 url not working displayed
s3 url not displayed
May 3, 2018
When I config my s3, I get the wrong url call out as
http://mysite.com/elfinder/connector?_token=DE1hdPclHMyBabxoEu46bWIZG1tlorw3J35641yO&cmd=file&target=fls2_RnJvbnRfcGFnZS9tZWRpdGF0aW5nVW5pY29ybi5wbmc
I can upload and see files on my s3 bucket with no problem. The only thing is I can't see the url via my s3 url.
in my config file I have my disk displayed as:
` <?php
return array(
);
`
I set up the environment to use local and production filesystems.
my filesystem_driver is S3 for production.
I have been trying to figure out where to setup the url, but I can't figure it out. It still throws the connector?token= string.
How do I change the base url for s3 uploads?
The text was updated successfully, but these errors were encountered: