Iain Poulson
Forum Replies Created
-
No timescales as yet, but we are working hard on it!
Hi,
Are you using an IAM user with a policy that allows them to read/write to S3?
If you choose option 2, it will store the key and secret in the wp_options table, in the ‘aws_settings’ option.
We are working on a WooCommerce addon as part of the Pro plugin being developed, to ensure compatibility between the plugins.
Glad you got it sorted!
Hi David
Are you uploading the image using the media uploader in the library or inside a plugin?
You can define the bucket using the constant ‘AS3CF_BUCKET’ in your wp-config.php file
Hi, sorry about this! Can you try this policy:
{
“Version”: “2012-10-17”,
“Statement”: [
{
“Sid”: “Stmt1422543245000”,
“Effect”: “Allow”,
“Action”: [
“s3:CreateBucket”,
“s3:DeleteObject”,
“s3:Put*”,
“s3:Get*”,
“s3:List*”
],
“Resource”: [
“arn:aws:s3:::*”
]
}
]
}Can you try changing your policy (temporarily), to
{
“Statement”: [
{
“Effect”: “Allow”,
“Action”: [
“s3:ListBucket”,
“s3:GetBucketLocation”,
“s3:ListBucketMultipartUploads”
],
“Resource”: “arn:aws:s3:::*”,
“Condition”: {}
},
{
“Action”: [
“s3:AbortMultipartUpload”,
“s3:DeleteObject*”,
“s3:GetObject*”,
“s3:PutObject*”
],
“Effect”: “Allow”,
“Resource”: [
“arn:aws:s3:::*”
]
},
{
“Effect”: “Allow”,
“Action”: “s3:ListAllMyBuckets”,
“Resource”: “*”,
“Condition”: {}
}
]
}Thanks for the info. And just to check you are using the most up to date versions of this plugin (0.8.2) and AWS (0.2.2)?
So I can try to recreate –
- What region is the bucket located in?
- What is the IAM policy you are using?
- Is your WP install hosted on EC2?
Are the URLs that are not pointing to S3 for attachments that were uploaded before you installed the plugin?
Where are the links situated – in the content of posts?
you rock @phpcentre
Have you turned on the option to serve URLs from S3?
Great to hear!