softlayer-object-storage-php
softlayer-object-storage-php copied to clipboard
SoftLayer Object Storage PHP Client
When using this function, it responded only old container. New containers did NOT respond. $objects = $this->_object_storage ->with('') ->setContext('search') ->setFilter('type', 'container') // object or container ->setFilter('', '') ->setMime('json') //json -...
Hi, Thought I would log this issue. Here is the 'out-of-the-box' code I am using for uploading files: ``` $options = array('adapter' => ObjectStorage_Http_Client::SOCKET, 'timeout' => 10); $objStorage = new...
How can i get modified date of file on Object Storage? Could you please give me a sample code? Thank you very much
The following code is expected to return all objects under the given prefix as `$container->objects` ``` php $client = new ObjectStorage($host, $username, $password); $objectToRequest = 10000; $container = $client->with('container')->setParam('prefix','a prefix')->get($objectToRequest);...
Please provide a way to set arbitrary CURL options, or at least all timeout settings. When trying to load large objects, the request may time out. To work around this,...
The file `lib\ObjectStorage\Abstract.php` has error in line 352 `throw new ObjectStorage_Exception(null, 'Invalid MIME type is provided.');`. It must be `throw new ObjectStorage_Exception('Invalid MIME type is provided.');`
This project needs some versioning love so we can better manage releases and properly version any API-breaking changes.
HI How do I upload large object with php?
HI How can i get progress when uploading very big file? Is there hook for this? thanks
Set a proper user-agent header in each of the HTTP adapters to identify this particular library; the version should be included (see also #23).