Changeset 617071
- Timestamp:
- 10/24/2012 11:00:16 PM (13 years ago)
- Location:
- wordpress-ez-backup
- Files:
-
- 54 added
- 3 edited
-
tags/6.0.2/pages/functions.php (modified) (2 diffs)
-
tags/7.0.6 (added)
-
tags/7.0.6/functions (added)
-
tags/7.0.6/functions/css (added)
-
tags/7.0.6/functions/css/ezstyle.css (added)
-
tags/7.0.6/functions/css/index.html (added)
-
tags/7.0.6/functions/index.html (added)
-
tags/7.0.6/functions/js (added)
-
tags/7.0.6/functions/js/boxover.js (added)
-
tags/7.0.6/functions/js/index.html (added)
-
tags/7.0.6/functions/js/main.js (added)
-
tags/7.0.6/functions/js/schedule.js (added)
-
tags/7.0.6/functions/js/wpcron.js (added)
-
tags/7.0.6/functions/logs (added)
-
tags/7.0.6/functions/logs/backupstats.php (added)
-
tags/7.0.6/functions/logs/errorlog.php (added)
-
tags/7.0.6/functions/logs/index.html (added)
-
tags/7.0.6/functions/logs/viewlog.php (added)
-
tags/7.0.6/functions/routine (added)
-
tags/7.0.6/functions/routine/backup.sh (added)
-
tags/7.0.6/functions/routine/functions.sh (added)
-
tags/7.0.6/functions/routine/index.html (added)
-
tags/7.0.6/functions/schedule (added)
-
tags/7.0.6/functions/schedule/index.html (added)
-
tags/7.0.6/images (added)
-
tags/7.0.6/images/ezbackup-125x115.png (added)
-
tags/7.0.6/images/greendot.jpg (added)
-
tags/7.0.6/images/index.html (added)
-
tags/7.0.6/images/question.gif (added)
-
tags/7.0.6/images/reddot.jpg (added)
-
tags/7.0.6/index.html (added)
-
tags/7.0.6/logs (added)
-
tags/7.0.6/logs/errorlog.txt (added)
-
tags/7.0.6/logs/index.html (added)
-
tags/7.0.6/logs/log.txt (added)
-
tags/7.0.6/pages (added)
-
tags/7.0.6/pages/activate.php (added)
-
tags/7.0.6/pages/backup.php (added)
-
tags/7.0.6/pages/browser.php (added)
-
tags/7.0.6/pages/cron.php (added)
-
tags/7.0.6/pages/functions.php (added)
-
tags/7.0.6/pages/help.php (added)
-
tags/7.0.6/pages/index.html (added)
-
tags/7.0.6/pages/main.php (added)
-
tags/7.0.6/pages/restore.php (added)
-
tags/7.0.6/pages/wp.php (added)
-
tags/7.0.6/readme.txt (added)
-
tags/7.0.6/screenshot-1.png (added)
-
tags/7.0.6/screenshot-2.png (added)
-
tags/7.0.6/screenshot-3.png (added)
-
tags/7.0.6/screenshot-4.png (added)
-
tags/7.0.6/screenshot-5.png (added)
-
tags/7.0.6/screenshot-6.png (added)
-
tags/7.0.6/screenshot-7.png (added)
-
tags/7.0.6/wp-ezbackup.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-ezbackup.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-ez-backup/tags/6.0.2/pages/functions.php
r601720 r617071 58 58 include $path; 59 59 $url = "http://lastnightsdesigns.com/EZBackupRegisters/accounts/".$key.'_'.$option; 60 61 if (in_array ('curl', get_loaded_extensions())) { 62 $curl = curl_init($url); 63 curl_setopt($curl, CURLOPT_NOBODY, true); 64 $result = curl_exec($curl); 65 if ($result !== false) { 66 $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); 67 if ($statusCode == 200) { 68 update_option($option, 'yes'); 69 $resp = 'yes'; 70 }else{ 71 update_option($option, 'no'); 72 $resp = 'no'; 73 } 74 } 75 curl_close($curl); 76 }else{ 60 77 $exists = strstr(current(get_headers($url)), "200"); 61 78 if (!$exists) … … 69 86 $resp = 'yes'; 70 87 } 71 88 } 72 89 return $resp; 73 90 } 91 74 92 function ezbu_5mins($schedules) { 75 93 $schedules['minutes_5'] = array( -
wordpress-ez-backup/trunk/readme.txt
r616980 r617071 13 13 Tested up to: 3.4.2 14 14 15 Stable tag: 7.0. 515 Stable tag: 7.0.6 16 16 17 17 … … 229 229 230 230 == Changelog == 231 232 = 7.0.6 = 233 *Fixed addon routine to be more compatible with other webhosts. 231 234 232 235 = 7.0.5 = -
wordpress-ez-backup/trunk/wp-ezbackup.php
r616980 r617071 4 4 Plugin URI: http://lastnightsdesigns.com/wordpress-ez-backup/ 5 5 Description: Fast Creation of Full Site Backups & Database Backups. Simply adjust your settings & Create your Backup. Features E-mail Alert & E-Mailing Backups, Viewing Live Log files of the backup procedure, Backup Browser & Automated Backups with Scheduling. 6 Version: 7.0. 56 Version: 7.0.6 7 7 Author: Jonathan Garber 8 8 Author URI: http://lastnightsdesigns.com
Note: See TracChangeset
for help on using the changeset viewer.