How To: save on S3 monthly charges and avoid "dude, you've gone about 10000% over your allocated bandwidth" emails from your webhost
OR; Dropbox for web storage?
- $ tar -zcvf 2014.tar imagesfarm/2014/
- $ scp [email protected]:/the/full_path/to/2014.tar /local/dir/2014.tar
- $ tar -xvf 2014.tar
Dropbox.com - upload files to a folder in your Dropbox Public directory- Download the Dropbox Desktop App
- Sync the Public folder
- define("DROPBOX_PATH", "*your dropbox bath*");
- $filepath = strstr($orig_path, '/2014/') ? DROPBOX_PATH . $orig_path : S3_PATH . $orig_path;
2015-09-01