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
storage make new dir for uploaded images with permission 700
so i get 403 on any new image that uploaded
try to add
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'directory_visibility' => 'public',
'permissions' => [
'file' => [
'public' => 0644,
'private' => 0600,
],
'dir' => [
'public' => 0755, // 0775 if needed
'private' => 0700,
],
],
],
but there is no effect ??!!
The text was updated successfully, but these errors were encountered:
storage make new dir for uploaded images with permission 700
so i get 403 on any new image that uploaded
try to add
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'directory_visibility' => 'public',
'permissions' => [
'file' => [
'public' => 0644,
'private' => 0600,
],
'dir' => [
'public' => 0755, // 0775 if needed
'private' => 0700,
],
],
],
The text was updated successfully, but these errors were encountered: