ZF-6472: Zend_Service_Amazon_S3 : Invalid Signature using default keys
Description
When an Zend_Service_Amazon_S3 is created and makes use of the default secret and access keys, the signature is invalid.
Solution: Change line 107: if (!$secret_key) { $secret_key = self::$default_accessKey; }
to
if (!$secret_key) {
$secret_key = self::$default_secretKey;
}
Comments
Posted by Matthew Weier O'Phinney (matthew) on 2009-04-29T20:30:26.000+0000
Assigning to Jon
Posted by Jon Whitcraft (sidhighwind) on 2009-04-30T06:49:52.000+0000
This was fixed by ZF-6403 when the base class was moved to use the Abstract Amazon Class.