Home > Software engineering >  Laravel Upload Image to Amazon s3
Laravel Upload Image to Amazon s3

Time:05-28

enter image description here

Trying to upload the image on AWS S3 using Laravel8, I added valid credentials but still showing invalid I don't know how to solve this issue. Please help me if someone knows how to fix this issue. Thanks

CodePudding user response:

Check your S3 configuration. Seems that you have wrong bucket name: nameofbucket and ACCESS_KEY: KJKJKJKJ...

Then clear config cache:

php artisan optimize:clear
  • Related