I'm trying to upload big files to rackspace cloud using Compass API: http://www.compasswebpublisher.com/php/rackspace-cloudfiles-php-api
It's working fine for small files (jpg) but when the file is more then 100MB the script crash. Well, to be exact, the script just stops.
$cf = new Compass_Service_Rackspace_Cloudfiles('myid', 'myApiKey', Compass_Service_Rackspace_Cloudfiles::UK_AUTHURL);
$cf->auth();
set_time_limit(60*60);
ini_set("memory_limit","256M");
ini_set('upload_max_filesize', '700M');
ini_set('post_max_size', '700M');
$contents = file_get_contents($path);
$cf->putObject('container/filename', $contents);
In a first time I though it was a memory issue, but even with 256M the script is not working.
Any idea why it's not working?
Thanks a lot!
Regards, Pv
I'm not sure what script you're trying to use, but it's probably crashing due to the script timing out unless it's being taken care of.
I wouldn't advise you to use a form to upload a 100 MB file on a regular basis unless it's absolutely necessary and the script is written well to handle limits. That's what FTP is for.