WordPress Amazon S3 Plugin
WP-S3 copies media files used in your blog post to Amazon S3 cloud. Uses only filters to replace the media urls in the post if media is available in t …
Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 1019 days ago
Is WordPress Amazon S3 Plugin abandoned?
Possibly abandoned (last update 1019 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
WP-S3 copies media files used in your blog post to Amazon S3 cloud. Uses only filters to replace the media urls in the post if media is available in the S3 cloud. WordPress cron functionality is used for batching media upload to S3. This plugin is very safe and will not modify anything in your database.
Installation
- Copy plugin files to WordPress wp-content/plugins folder
- Make sure you create a folder named ‘s3temp’ in your media upload folder and make it writable.
- Activate the plugin
- Go to Amazon s3 page under plugins and set up your Amazon S3 credentials
- This plugin will not create any S3 buckets. You have to create the bucket with public read access and use the same
- The plugin will not work until all the configs are completed
- If anything goes wrong just de-active the plugin and blog should go back to its old state
Theme & Plugin Developers can use these examples to make their theme / plugin assets load from CDN
To scan a full HTML Block for images, upload to CDN and replace them if uploaded.
<?php
if(class_exists('S3Plugin')){
$output = S3Plugin::scanForImages($output);
}
?>
To check if a single media needs to be uploaded to CDN and replaced if uploaded.
<?php
if(is_singular()){
$attachmentDetails = &get_children( "numberposts=1&post_type=attachment&post_mime_type=image&post_parent=" . get_the_ID() );
if(!empty ($attachmentDetails)){
$attachmentDetails = array_shift($attachmentDetails);
$postImage = array_shift(wp_get_attachment_image_src($attachmentDetails->ID,'thumbnail'));
if(class_exists('S3Plugin')){
$cdnImageURL = S3Plugin::getCDNURL($postImage);
if($cdnImageURL!==FALSE){
$postImage = $cdnImageURL;
}
}
}
}
?>
Frequently Asked Questions
No. This plugin does not change any content in your blog. All modification are done using WordPress plugin filters on the fly.
Not needed. You have to just upload the files
No. You cannot manage the files in Amazon S3 using this plugin.
The plugin will change the upload path prefix and clears all local upload que and cached media files. All the local media files are uploaded again. Please note the files already uploaded by this plugin in S3 has to be deleted manually. Please don’t clear cache often, use only there is a plugin update / WordPress update.
For fonts to work properly you need to make sure CORS is updated properly in your Amazon bucket.
Review feed
Changelog
Version: 1.6 Dated: 2023-03-17
- Fixed security issue
- Added region in settings
Version: 1.5 Dated: 2018-04-06
- Fixed bug which clears all setting during update
- Now it also adds the images which are one folder outside css file
Version: 1.4 Dated: 2018-04-06
- Changed the S3 library to Amazon SDK
- Major Cleanup
- Added support for WordPress JS files
- Added support for fonts in CSS
- Tested and released for WordPress 4.9.5
Version: 1.3 Dated: 2014-04-25
- Tested and released for WordPress 3.9
Version: 1.2 Dated: 2013-08-20
- Wrong plugin description updated
Version: 1.1 Dated: 2013-08-20
- Added support for custom origin
- Added support for expires headers
- Added support for CSS and JS compression
- Added support for dynamic cache
- Added support for other plugin developers to quickly use plugin to make their assets available from cloud
Version: 1.0 Dated: 20-June-2010
- First version of the plugin
