WP Offload S3 Lite - Version 0.6.1

Version Description

This version requires PHP 5.3.3+ and the Amazon Web Services plugin

=

Download this release

Release Info

Developer bradt
Plugin Icon 128x128 WP Offload S3 Lite
Version 0.6.1
Comparing to
See all releases

Code changes from version 0.6 to 0.6.1

Files changed (2) hide show
  1. readme.txt +9 -3
  2. wordpress-s3.php +4 -4
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: uploads, amazon, s3, mirror, admin, media, cdn, cloudfront
5
  Requires at least: 3.5
6
  Tested up to: 3.6.1
7
- Stable tag: 0.6
8
  License: GPLv3
9
 
10
  Copies files to Amazon S3 as they are uploaded to the Media Library. Optionally configure Amazon CloudFront for faster delivery.
@@ -25,7 +25,7 @@ which is a fork of [Amazon S3 for WordPress](http://wordpress.org/extend/plugins
25
 
26
  == Installation ==
27
 
28
- 1. Install the required [Amazon Web Services plugin](http://wordpress.org/extend/plugins/amazon-web-services/) using WordPress' built-in installer
29
  2. Follow the instructions to setup your AWS access keys
30
  3. Install this plugin using WordPress' built-in installer
31
  4. Access the *S3 and CloudFront* option under *AWS* and configure
@@ -39,12 +39,18 @@ which is a fork of [Amazon S3 for WordPress](http://wordpress.org/extend/plugins
39
  = 0.6 =
40
  This version requires PHP 5.3.3+ and the Amazon Web Services plugin
41
 
 
 
 
42
  == Changelog ==
43
 
 
 
 
44
  = 0.6 - 2013-09-20 =
45
  * Complete rewrite
46
  * Now requires PHP 5.3.3+
47
- * Now requires the [Amazon Web Services plugin](http://wordpress.org/extend/plugins/amazon-web-services) which contains the latest PHP libraries from Amazon
48
  * Now works with multisite
49
  * New Option: Custom S3 object path
50
  * New Option: Always serve files over https (SSL)
4
  Tags: uploads, amazon, s3, mirror, admin, media, cdn, cloudfront
5
  Requires at least: 3.5
6
  Tested up to: 3.6.1
7
+ Stable tag: 0.6.1
8
  License: GPLv3
9
 
10
  Copies files to Amazon S3 as they are uploaded to the Media Library. Optionally configure Amazon CloudFront for faster delivery.
25
 
26
  == Installation ==
27
 
28
+ 1. Install the required [Amazon Web Services plugin](https://github.com/deliciousbrains/wp-amazon-web-services) using WordPress' built-in installer
29
  2. Follow the instructions to setup your AWS access keys
30
  3. Install this plugin using WordPress' built-in installer
31
  4. Access the *S3 and CloudFront* option under *AWS* and configure
39
  = 0.6 =
40
  This version requires PHP 5.3.3+ and the Amazon Web Services plugin
41
 
42
+ = 0.6.1 =
43
+ This version requires PHP 5.3.3+ and the Amazon Web Services plugin
44
+
45
  == Changelog ==
46
 
47
+ = 0.6.1 - 2013-09-21 =
48
+ * WP.org download of Amazon Web Services plugin is giving a 404 Not Found, so directing people to download from Github instead
49
+
50
  = 0.6 - 2013-09-20 =
51
  * Complete rewrite
52
  * Now requires PHP 5.3.3+
53
+ * Now requires the [Amazon Web Services plugin](https://github.com/deliciousbrains/wp-amazon-web-services) which contains the latest PHP libraries from Amazon
54
  * Now works with multisite
55
  * New Option: Custom S3 object path
56
  * New Option: Always serve files over https (SSL)
wordpress-s3.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Amazon S3 and CloudFront
4
  Plugin URI: http://wordpress.org/extend/plugins/amazon-s3-and-cloudfront/
5
  Description: Automatically copies media uploads to Amazon S3 for storage and delivery. Optionally configure Amazon CloudFront for even faster delivery.
6
  Author: Brad Touesnard
7
- Version: 0.6
8
  Author URI: http://bradt.ca
9
 
10
  // Copyright (c) 2013 Brad Touesnard. All rights reserved.
@@ -31,15 +31,15 @@ function as3cf_check_required_plugin() {
31
  require_once ABSPATH . '/wp-admin/includes/plugin.php';
32
  deactivate_plugins( __FILE__ );
33
 
34
- $msg = sprintf( __( 'Amazon S3 and CloudFront has been deactivated as it requires the <a href="%s">Amazon&nbsp;Web&nbsp;Services</a> plugin.', 'as3cf' ), 'http://wordpress.org/extend/plugins/amazon-web-services/' ) . '<br /><br />';
35
 
36
  if ( file_exists( WP_PLUGIN_DIR . '/amazon-web-services/amazon-web-services.php' ) ) {
37
  $activate_url = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=amazon-web-services/amazon-web-services.php', 'activate-plugin_amazon-web-services/amazon-web-services.php' );
38
  $msg .= sprintf( __( 'It appears to already be installed. <a href="%s">Click here to activate it.</a>', 'as3cf' ), $activate_url );
39
  }
40
  else {
41
- $install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=amazon-web-services' ), 'install-plugin_amazon-web-services' );
42
- $msg .= sprintf( __( '<a href="%s">Click here to install it automatically.</a> Then activate it. ', 'as3cf' ), $install_url );
43
  }
44
 
45
  $msg .= '<br /><br />' . __( 'Once it has been activated, you can activate Amazon&nbsp;S3&nbsp;and&nbsp;CloudFront.', 'as3cf' );
4
  Plugin URI: http://wordpress.org/extend/plugins/amazon-s3-and-cloudfront/
5
  Description: Automatically copies media uploads to Amazon S3 for storage and delivery. Optionally configure Amazon CloudFront for even faster delivery.
6
  Author: Brad Touesnard
7
+ Version: 0.6.1
8
  Author URI: http://bradt.ca
9
 
10
  // Copyright (c) 2013 Brad Touesnard. All rights reserved.
31
  require_once ABSPATH . '/wp-admin/includes/plugin.php';
32
  deactivate_plugins( __FILE__ );
33
 
34
+ $msg = sprintf( __( 'Amazon S3 and CloudFront has been deactivated as it requires the <a href="%s">Amazon&nbsp;Web&nbsp;Services</a> plugin.', 'as3cf' ), 'https://github.com/deliciousbrains/wp-amazon-web-services' ) . '<br /><br />';
35
 
36
  if ( file_exists( WP_PLUGIN_DIR . '/amazon-web-services/amazon-web-services.php' ) ) {
37
  $activate_url = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=amazon-web-services/amazon-web-services.php', 'activate-plugin_amazon-web-services/amazon-web-services.php' );
38
  $msg .= sprintf( __( 'It appears to already be installed. <a href="%s">Click here to activate it.</a>', 'as3cf' ), $activate_url );
39
  }
40
  else {
41
+ $download_url = 'https://github.com/deliciousbrains/wp-amazon-web-services/releases/download/v0.1/amazon-web-services-0.1.zip';
42
+ $msg .= sprintf( __( '<a href="%s">Click here to download a zip of the latest version.</a> Then install and activate it. ', 'as3cf' ), $download_url );
43
  }
44
 
45
  $msg .= '<br /><br />' . __( 'Once it has been activated, you can activate Amazon&nbsp;S3&nbsp;and&nbsp;CloudFront.', 'as3cf' );