skip to Main Content

AWS AssumeRole with Laravel Filesystem

I'm currently trying to figure something out. I have 2 AWS Accounts. Account A has a bucket called my_awesome_files. Account B has users, that would like to be able to see those documents in my_awesome_files. I have the following policies…

VIEW QUESTION

Laravel: Uploaded image not showing

i keep getting 404 image not found when viewing the uploaded image on my project but the image is there. im using laravel's asset() helper to retrieve the image. the url in chrome shows http://127.0.0.1:8000/images/dU8oaVTAwQyTor86jvDtdGKvE7H3MYkHZuUG60gH.png and ive already done php…

VIEW QUESTION

Cannot move image/files temp to public directory Laravel 9

I am trying to upload an image in Laravel. Getting the following error: "message": "Could not move the file "C:\xampp\tmp\php84AA.tmp" to "F:\bvend\bvend-web\public\uploads/products\bvend-product-1666274539.jpg" (move_uploaded_file(): Unable to move "C:\xampp\tmp\php84AA.tmp" to "F:\bvend\bvend-web\public\uploads/products\bvend-product-1666274539.jpg").", "exception": "Symfony\Component\HttpFoundation\File\Exception\FileException", "file": "F:\bvend\bvend-web\vendor\symfony\http-foundation\File\UploadedFile.php", "line": 177, "trace": [ .... ] My…

VIEW QUESTION

Php versions – Laravel storage returns FileNotFoundException But file exists

I want read file content in laravel 6, the file already exists but laravel return not found exception. This is my logs files directory: /var/www/html/myLaravelLab/storage/logs/laravel-2019-10-14.log $contents = Storage::get(storage_path('logs/laravel-2019-10-14.log')); Laravel return this error: IlluminateContractsFilesystemFileNotFoundException But file already exists! I want read…

VIEW QUESTION
Back To Top
Search