How to copy / dump file from S3 to EC2 in PHP
4 answers
I used amazon-s3-php-class which works great.
Zend Framework also has AWS support although you cannot use it in Europe until ZF 1.8.2 is released. (Due to a bug in 1.8.1 which has been fixed in svn now)
+3
a source to share
I would opt for the new Zend Framework implementation (1.8). Haven't tested it yet, but you can find it at http://framework.zend.com/ . The docs here: http://framework.zend.com/manual/en/zend.service.amazon.s3.html
0
a source to share
There is no way to "load into EC2" as this is a virtual server instance and not a storage service. You will need to host your own service on EC2 in order to load it.
However, you can boot from S3 to EC2. Just run wget or a similar EC2 instance to pull the file from the S3 website url (upon authentication if needed).
0
a source to share