I have a function in my laravel that uploads and image in my s3 bucket: The problem is that, the newly uploaded image cannot be accessed. Now, I have a folder named public in my S3 bucket what I wanted is that by default, public folder and all of the images in it(old and newly uploaded) can be accessed publicly.
Tag: amazon-web-services
How to install TYPO3 on AWS Elastic Beanstalk?
I’m trying to deploy TYPO3 version 10 to an EC2 instance using AWS Elastic Beanstalk, however, none of the methods described in the official documentation works (manual installation and via composer)….
AWS SES Email not verified with Laravel
I have this mail test class to send email to user by SES: by tinker: Even I opened case and convert from sandbox to production: My .env: Am I missing something? The error:: Answer Moving from Sandbox to Production only eliminates the requirement to verify the recipient addresses , however, you must need to verify a From/Envelope-Sender/Return Path address. This
Laravel routes causing 404 Error on live server
I have a laravel app developed on my localhost and working perfectly. I am trying to deploy it onto an AWS Lightsail instance using nginx on Ubuntu 20.04. I have uploaded my laravel app and changed the nginx root directory to laravelapp/public. The main index page (landing page) is working fine but none of my routes are working (i.e. /login,
403 on ChangeResourceRecordSets despite the role having route53Domains:* in the policy
The error My role Answer Your policy does not include route53:ChangeResourceRecordSets: Grants permission to create, update, or delete a record, which contains authoritative DNS information for a specified domain or subdomain name You only have “route53domains:*” permissions, but you don’t have route53:* nor route53:ChangeResourceRecordSets. ChangeResourceRecordSets is from route53, not from route53domains.
PHP AWS Elastic Beanstalk – Cannot post file more than 2GB
I have deployed an application in Elastic Beanstalk, changed some configuration so that I can upload larger files and restart nginx server. When I upload one file less than 2 GB, it is uploaded successfully. However, when I upload a file more than 2 GB, it does not upload successfully. Below are the lines that I have added in /etc/nginx/nginx.conf
Issue with deploying PHP Application to Elastic Beanstalk
I have a customized PHP application I am trying to deploy using Elastic Beanstalk. To deploy using ELB, I have zipped up the code and uploaded. I’m having trouble getting it to deploy correctly. Is …
Yii2 shows White Screen Error on production
Recently I’m facing some issues when I deploy my code to live server. It returns me white screen error. When I tried to debug the issues using the below code, ini_set(‘display_errors’,true); …
Is there a simple way to reduce the AWS PHP SDK to use only S3?
I would like to know is there a simple way to reduce the AWS PHP SDK to use only S3 ? I tried to delete certain directory but there are so many it will take an incredible time, and I have many errors depending on the files I delete (21,6Mo – 2 368 elements) ?! Is it possible to know the
How to update PHP versions with Yum on AWS Linux / CentOS
I have a web server with PHP 7.3 installed (And Apache + Wordpress), plus a number of PHP related modules. This server is on AWS Linux. When the AWS repo makes PHP 7.4 available, what’s the best way …