我的任务是使用 AWS Elastic Beanstalk 和 S3 创建一个应用程序,其中可以从用户上传/删除图像。
我正在使用 BlueImp 库:“ https://github.com/blueimp/jQuery-File-Upload ”
以及 UploadHandler.php 的修改版本:“ https://gist.github.com/tim-peterson/8172999 ”
我在应用程序中使用 Composer 安装了 aws-php-sdk 并创建了一个 config.php 文件,如下所示:
<?php return[
's3' => [
'key' => '***',
'secret' => '***',
'region' => 'eu-west-1',
'bucket' => 'my-bucket'
]];?>
但是当我尝试上传图像时,它显示错误:“500(内部服务器错误)”
任何想法为什么?
提前致谢!