admin管理员组

文章数量:1122846

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

Share Improve this question asked Nov 16, 2015 at 21:46 arminarmin 472 silver badges7 bronze badges 3
  • When you say that you don't want to use plugins, do you mean you don't want to use existing plugins or that you don't want to make your own? – getWeberForStackExchange Commented Nov 16, 2015 at 21:49
  • @getWeberForStackExchange i mean i don't want to write my own plugin – armin Commented Nov 16, 2015 at 22:01
  • that almost certainly eliminates all the answers you could get, the easiest way is to create a plugin that has a single file that loads the SDK from a subfolder with <?php /** plugin name: AWS SDK */ require_once( 'aws_sdk/...., where aws_sdk is the folder where you put the SDK after downloading it. You're still going to have to write code to use that SDK to do stuff on the frontend though – Tom J Nowell Commented Feb 9, 2023 at 15:29
Add a comment  | 

2 Answers 2

Reset to default 0
  • Install Amazon Web Services Plugin. (https://wordpress.org/plugins/amazon-web-services/)
  • Add all the required keys, at the AWS menu that now should be available in your WP dashboard.
  • Include the library in your code, in my case was:

    require '/path/to/plugins/amazon-web-services/vendor/aws/aws-autoloader.php';

  • Enjoy!

If you don't want to use a plugin you may want to read this post:

How can I install AWS SDK for PHP in Wordpress without installing a Plugin?

本文标签: uploadsHow To install AWS SDK for PHP in wordpress