I am going to install and use AWS SDK for PHP to facilitate uploads/list objects directly from the front-end of my WordPress instance to S3. What is the best practice to do that ?
P.S: I don’t want to use plugins
I am going to install and use AWS SDK for PHP to facilitate uploads/list objects directly from the front-end of my WordPress instance to S3. What is the best practice to do that ?
P.S: I don’t want to use plugins
Include the library in your code, in my case was:
require ‘/path/to/plugins/amazon-web-services/vendor/aws/aws-autoloader.php’;
Enjoy!