Upload file on amazon S3 with PHP SDK
问题 I'm trying to upload a picture on my amazon S3 via their PHP SDK. So I made a little script to do so. However, my script doesn't work and my exception doesn't send me back any error message. I'm new with AWS thank you for your help. Here is the code : Config.php <?php return array( 'includes' => array('_aws'), 'services' => array( 'default_settings' => array( 'params' => array( 'key' => 'PUBLICKEY', 'secret' => 'PRIVATEKEY', 'region' => 'eu-west-1' ) ) ) ); ?> Index.php <?php //Installing AWS