![]() |
S3 Archiving permissions - Printable Version +- WebPagetest Forums (https://www.webpagetest.org/forums) +-- Forum: WebPagetest (/forumdisplay.php?fid=7) +--- Forum: Private Instances (/forumdisplay.php?fid=12) +--- Thread: S3 Archiving permissions (/showthread.php?tid=12862) |
S3 Archiving permissions - drwells - 03-18-2014 04:17 AM I had some unknown issues with the archive script that caused me to lose a lot of data. It turned out to be because my key/secret credentials are scoped to one bucket. PHP-S3 tried to connect to aws and failed. The fix was to change the ACL flag from public to private: Code: S3:ACL_PUBLIC_READ Code: S3::ACL_PRIVATE https://code.google.com/p/webpagetest/source/browse/trunk/www/webpagetest/archive.inc#95 RE: S3 Archiving permissions - kevinrdixon - 02-03-2015 07:08 PM I'm having the same issue - raised in the WPT Github project here: https://github.com/WPO-Foundation/webpagetest/issues/395 |