peter-tharwat / dashboard

Simple Arabic Laravel Dashboard , has basic settings and a nice layout . to make it easy for you to create fast dashboard
329 stars 149 forks source link

uploaded img issues #39

Open taba2177 opened 3 weeks ago

taba2177 commented 3 weeks ago

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 ??!!
peter-tharwat commented 2 weeks ago

can you please check that you passed middlewares before uploading ? or can you put dd("TEST") before uploading code to check ?