softlayer / softlayer-object-storage-php

SoftLayer Object Storage PHP Client
Other
28 stars 18 forks source link

This doesn't work in conjunction with other frameworks #9

Open connorsmacartist opened 11 years ago

connorsmacartist commented 11 years ago

Trying to add this with any other framework and spl_autoload_register conflicts with everything else causes all kinds of errors.

follower46 commented 11 years ago

I've been using it with Zend Framework without issue. Which http adapter are you using?

connorsmacartist commented 11 years ago

I am using it in cakephp. I fixed it by changing Util.php

if(file_exists( $objectStorageDirectory . '/'.$path)){
        require_once($path);
    }