Version Description
= 3.0.4 =
- Fixes a few minor bugs. Immediate update is recommended.
= 3.0.2 =
- Important: we have dropped support for PHP 5.2, you will not be able to activate BackUpWordPress on a server running PHP versions older than PHP 5.3.29
= 3.0.1 =
- This is a critical update. Fixes a bug in the core backup library. Please update immediately.
Download this release
Release Info
| Developer | pauldewouters |
| Plugin | |
| Version | 3.1.1 |
| Comparing to | |
| See all releases | |
Code changes from version 3.1.0 to 3.1.1
- backupwordpress.php +2 -2
- readme.txt +1 -1
- uninstall.php +1 -0
backupwordpress.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: BackUpWordPress
|
| 4 |
Plugin URI: http://bwp.hmn.md/
|
| 5 |
Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools → Backups</strong>. On multisite, you'll find me under the Network Settings menu.
|
| 6 |
-
Version: 3.1.
|
| 7 |
Author: Human Made Limited
|
| 8 |
Author URI: http://hmn.md/
|
| 9 |
License: GPL-2.0+
|
|
@@ -41,7 +41,7 @@ register_deactivation_hook( __FILE__, array( 'BackUpWordPress_Setup', 'deactivat
|
|
| 41 |
*/
|
| 42 |
class BackUpWordPress_Plugin {
|
| 43 |
|
| 44 |
-
const PLUGIN_VERSION = '3.1.
|
| 45 |
|
| 46 |
/**
|
| 47 |
* @var BackUpWordPress_Plugin The singleton instance.
|
| 3 |
Plugin Name: BackUpWordPress
|
| 4 |
Plugin URI: http://bwp.hmn.md/
|
| 5 |
Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools → Backups</strong>. On multisite, you'll find me under the Network Settings menu.
|
| 6 |
+
Version: 3.1.1
|
| 7 |
Author: Human Made Limited
|
| 8 |
Author URI: http://hmn.md/
|
| 9 |
License: GPL-2.0+
|
| 41 |
*/
|
| 42 |
class BackUpWordPress_Plugin {
|
| 43 |
|
| 44 |
+
const PLUGIN_VERSION = '3.1.1';
|
| 45 |
|
| 46 |
/**
|
| 47 |
* @var BackUpWordPress_Plugin The singleton instance.
|
readme.txt
CHANGED
|
@@ -3,7 +3,7 @@ Contributors: humanmade, willmot, pauldewouters, joehoyle, mattheu, tcrsavage, c
|
|
| 3 |
Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
|
| 4 |
Requires at least: 3.9
|
| 5 |
Tested up to: 4.2-alpha
|
| 6 |
-
Stable tag: 3.1.
|
| 7 |
|
| 8 |
Simple automated backups of your WordPress powered website.
|
| 9 |
|
| 3 |
Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
|
| 4 |
Requires at least: 3.9
|
| 5 |
Tested up to: 4.2-alpha
|
| 6 |
+
Stable tag: 3.1.1
|
| 7 |
|
| 8 |
Simple automated backups of your WordPress powered website.
|
| 9 |
|
uninstall.php
CHANGED
|
@@ -26,6 +26,7 @@ if ( ! defined( 'HMBKP_PLUGIN_PATH' ) ) {
|
|
| 26 |
// Load the schedules
|
| 27 |
require_once( HMBKP_PLUGIN_PATH . 'hm-backup/hm-backup.php' );
|
| 28 |
require_once( HMBKP_PLUGIN_PATH . 'classes/class-services.php' );
|
|
|
|
| 29 |
require_once( HMBKP_PLUGIN_PATH . 'classes/class-schedule.php' );
|
| 30 |
require_once( HMBKP_PLUGIN_PATH . 'classes/class-schedules.php' );
|
| 31 |
require_once( HMBKP_PLUGIN_PATH . 'functions/core.php' );
|
| 26 |
// Load the schedules
|
| 27 |
require_once( HMBKP_PLUGIN_PATH . 'hm-backup/hm-backup.php' );
|
| 28 |
require_once( HMBKP_PLUGIN_PATH . 'classes/class-services.php' );
|
| 29 |
+
require_once( HMBKP_PLUGIN_PATH . 'classes/class-hmbkp-path.php' );
|
| 30 |
require_once( HMBKP_PLUGIN_PATH . 'classes/class-schedule.php' );
|
| 31 |
require_once( HMBKP_PLUGIN_PATH . 'classes/class-schedules.php' );
|
| 32 |
require_once( HMBKP_PLUGIN_PATH . 'functions/core.php' );
|
