9er
9er

Reputation: 1734

PHP not executing on Amazon S3

I have a site which uses a simply php script to send an email when it is called. However the email is never being sent. I've tested this on my universities servers and it worked fine. Is there anything I have to do to make sure the php is getting processed by AWS? Do I have to configure my bucket a specific way?

I am new to AWS, but I have had success with a previous site so I am unsure why this isn't working.

Upvotes: 1

Views: 55

Answers (1)

ceejayoz
ceejayoz

Reputation: 180023

PHP won't ever execute on Amazon S3. It's a storage service, not a compute service. If you want PHP, you'll need EC2.

Upvotes: 5

Related Questions