motografik

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
in reply to: Amazon S3 not working #26727

motografik
Member

I reverted back to an older version of the Amazon S3 plugin and it fixed the issue. Shaon can you go through testing on the newest version and make sure it’s fully compatible.

in reply to: Downloads Broken after Upgrade to 4.2.1 #26726

motografik
Member

I reverted back to an older version of the Amazon S3 plugin and it fixed the issue. Shaon can you go through testing on the newest version and make sure it’s fully compatible.

in reply to: WP 4.1 upgrade breaks WPDM new add files #25094

motografik
Member

Any progress on this?

in reply to: S3 add-on not working #25091

motografik
Member

It is still not working for me, even with the fix above. When I select the file in the S3 window, it doesn’t add the file to the Attached Files section. It used to work, but somehow stopped working after one of the updates.

in reply to: Remote URL doesn't appear in attached files #25090

motografik
Member

The fix posted in the URL above worked for me. Please add it to the current release.

in reply to: Can't Add URL's #25089

motografik
Member

This worked for me too. Shaon, is this going to be added to the current release?

in reply to: S3 download counter and protection are not working #22741

motografik
Member

Add a bucket policy via S3 console permissions editor. Should take care of the hotlinking issue.

{
	"Version": "2008-10-17",
	"Id": "HTTP referrer policy",
	"Statement": [
		{
			"Sid": "1",
			"Effect": "Deny",
			"Principal": {
				"AWS": "*"
			},
			"Action": "s3:GetObject",
			"Resource": "arn:aws:s3:::yourbucketname.goeshere/*",
			"Condition": {
				"StringNotLike": {
					"aws:Referer": [
						"http://domaingoeshere.com/*",
						"http://www.domaingoeshere.com/*",
						"https://domaingoeshere.com/*",
						"https://www.domaingoeshere.com/*"
					]
				}
			}
		}
	]
}

Hope this helps

Viewing 7 posts - 1 through 7 (of 7 total)