How to get Amazon s3 PHP SDK working?

Posted by JakeRow123 on Stack Overflow See other posts from Stack Overflow or by JakeRow123
Published on 2012-06-08T04:36:09Z Indexed on 2012/06/08 4:40 UTC
Read the original article Hit count: 198

I'm trying to set up s3 for the first time and trying to run the sample file that comes with the PHP sdk that creates a bucket and attempts to upload some demo files to it. But this is the error I am getting:

The difference between the request time and the current time is too large.

I read on another question on SO that this is because Amazon determines a valid request by comparing the times between the server and the client, that the 2 must be within a 15 min span of one another.

Now here is the problem. My laptop's time is 12:30AM June 8, 2012 at the moment. On my server I created a file called servertime.php and placed this code in that file:

<?php
   print strftime('%c');
?>

and the output is:

Fri Jun 8 00:31:22 2012

It looks like the day is correct but I don't know what to make of 00:31:22. In any case, how is it possible to always make sure the time between the client and server is within a 15 minute window of one another. What if I have a user in China who wishes to upload a file on my site which uses s3 for the cdn. Then the time difference would be over a day. How can I make sure all my user's times are within 15 minutes of my server time? What if the user is in the U.S. but the time on their machine is misconfigured.

Basically how to get s3 bucket creation and upload to work?

© Stack Overflow or respective owner

Related posts about php

Related posts about server