Hi Aaron
I’m fairly sure I have everything installed and set up correctly.
The urls that are being generated by the exp:ce_img tag are as follows:
http://myfrenchhouse.s3.amazonaws.com/images/made/image-repository/properties/3/2011/11/10/lounge_1_100_67.jpg
But nothing is getting uploaded.
Here’s an example of my tags: {exp:ce_img:pair src=”{image_file}” bucket=“myfrenchhouse” width=“100” height=“67” cache=“yes” refresh=“360”}{aws_url}{/exp:ce_img:pair}
Does everything look okay with that?
Also, as I’m using EE1 I have my S3 info in /system/config.php. It’s as follows:
// CE Image Configuration
$conf[‘ce_image_cache_dir’] = “/images/made/”;
$conf[‘ce_image_remote_dir’] = “/images/remote/”;
$conf[‘ce_image_memory_limit’] = “128”;
$conf[‘ce_image_remote_cache_time’] = “1440”;
$conf[‘ce_image_quality’] = “100”;
// Amazon s3 config for CE Image
$conf[‘ce_image_aws_key’] = ‘my-key-here’;
$conf[‘ce_image_aws_secret_key’] = ‘my-secret-key’;
$conf[‘ce_image_bucket’] = ‘myfrenchhouse’;
$conf[‘ce_image_aws_request_headers’] = array();
$conf[‘ce_image_aws_request_headers’][‘Cache-Control’] = ‘max-age=’ . (30 * 24 * 60 * 60);
$conf[‘ce_image_aws_request_headers’][‘Expires’] = gmdate(“D, d M Y H:i:s T”, strtotime(’+1 month’) );
Any clues there?
Cheers
Jim
PS I’m running php 5.2.8 with Curl installed and working
|