ZF-8060: Zend_Service_Amazon_S3::_makeRequest should set the URI on the HTTP client before accessing any other method
Description
Due to a bug in Zend_Http_Client (ZF-8057) disabling authentication on the HTTP client before setting the URI results in a fatal error and thus making the whole class pretty useless. The simple workaround for the issue is to call Zend_Http_Client::setUri() before calling any other method of the object.
Comments
Posted by Björn Graf (bjoern) on 2009-10-12T16:58:11.000+0000
Moves Zend_Http_Client::setUri before any other Zend_Http_Client method call.
Posted by Satoru Yoshida (satoruyoshida) on 2009-10-12T19:19:56.000+0000
I think it is duplicate of ZF-7990