BackupGuardFree - Version 1.0.7

Version Notes

Fully functional stable version

Download this release

Release Info

Developer Backup Guard
Extension BackupGuardFree
Version 1.0.7
Comparing to
See all releases


Code changes from version 1.0.6 to 1.0.7

app/code/community/BackupGuard/BackupGuardFree/com/config/config.magento.php CHANGED
@@ -15,7 +15,26 @@ define('SG_ENV_CORE_TABLE', SG_MAGENTO_CORE_TABLE);
15
  //Database
16
  define('SG_DB_ADAPTER', SG_ENV_ADAPTER);
17
  define('SG_DB_NAME', (string)Mage::getConfig()->getNode('global/resources/default_setup/connection/dbname'));
18
- define('SG_BACKUP_DATABASE_EXCLUDE', SG_ACTION_TABLE_NAME.','.SG_CONFIG_TABLE_NAME);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  //Mail
21
  define('SG_MAIL_BACKUP_TEMPLATE', 'backupguard_backup');
@@ -25,26 +44,26 @@ define('SG_MAIL_RESTORE_TEMPLATE', 'backupguard_restore');
25
  define('SG_APP_ROOT_DIRECTORY', Mage::getBaseDir().'/');
26
 
27
  $excludes = array(
28
- 'app/code/community/BackupGuard/',
29
- 'app/etc/modules/BackupGuard_BackupGuardFree.xml',
30
- 'app/etc/modules/BackupGuard_BackupGuard.xml',
31
- 'app/design/adminhtml/default/default/layout/backupguardfree.xml',
32
- 'app/design/adminhtml/default/default/layout/backupguard.xml',
33
- 'app/design/adminhtml/default/default/template/backupguardfree/',
34
- 'app/design/adminhtml/default/default/template/backupguard/',
35
- 'app/locale/en_US/template/email/backupguard_backup_fail.html',
36
- 'app/locale/en_US/template/email/backupguard_backup_success.html',
37
- 'app/locale/en_US/template/email/backupguard_restore_fail.html',
38
- 'app/locale/en_US/template/email/backupguard_restore_success.html',
39
- 'media/sg_symlinks/',
40
- 'skin/adminhtml/base/default/css/BackupGuardFree/',
41
- 'skin/adminhtml/base/default/css/BackupGuard/',
42
- 'skin/adminhtml/base/default/js/BackupGuardFree/',
43
- 'skin/adminhtml/base/default/js/BackupGuard/',
44
- 'skin/adminhtml/base/default/media/BackupGuardFree/',
45
- 'skin/adminhtml/base/default/media/BackupGuard/',
46
- 'var/log/'
47
- );
48
  define('SG_BACKUP_FILE_PATHS_EXCLUDE', implode(',', $excludes));
49
  define('SG_BACKUP_DIRECTORY', SG_APP_PATH.'../sg_backups/'); //backups will be stored here
50
 
@@ -57,4 +76,4 @@ define('SG_SYMLINK_PATH', Mage::getBaseDir('media').'/sg_symlinks/');
57
  define('SG_STORAGE_UPLOAD_CRON', '');
58
 
59
  //The following constants can be modified at run-time
60
- define('SG_BACKUP_FILE_PATHS', 'app,js,lib,media,skin,var'); //fix this after development
15
  //Database
16
  define('SG_DB_ADAPTER', SG_ENV_ADAPTER);
17
  define('SG_DB_NAME', (string)Mage::getConfig()->getNode('global/resources/default_setup/connection/dbname'));
18
+
19
+ $dbExcludes = array(
20
+ SG_ACTION_TABLE_NAME,
21
+ SG_CONFIG_TABLE_NAME,
22
+ SG_SCHEDULE_TABLE_NAME,
23
+ SG_ENV_DB_PREFIX."log_summary",
24
+ SG_ENV_DB_PREFIX."log_visitor_online",
25
+ SG_ENV_DB_PREFIX."log_summary_type",
26
+ SG_ENV_DB_PREFIX."log_customer",
27
+ SG_ENV_DB_PREFIX."log_visitor",
28
+ SG_ENV_DB_PREFIX."log_visitor_info",
29
+ SG_ENV_DB_PREFIX."log_url",
30
+ SG_ENV_DB_PREFIX."log_url_info",
31
+ SG_ENV_DB_PREFIX."log_quote",
32
+ SG_ENV_DB_PREFIX."report_viewed_product_index",
33
+ SG_ENV_DB_PREFIX."report_compared_product_index",
34
+ SG_ENV_DB_PREFIX."report_event",
35
+ SG_ENV_DB_PREFIX."catalog_compare_item"
36
+ );
37
+ define('SG_BACKUP_DATABASE_EXCLUDE', implode(',', $dbExcludes));
38
 
39
  //Mail
40
  define('SG_MAIL_BACKUP_TEMPLATE', 'backupguard_backup');
44
  define('SG_APP_ROOT_DIRECTORY', Mage::getBaseDir().'/');
45
 
46
  $excludes = array(
47
+ 'app/code/community/BackupGuard/',
48
+ 'app/etc/modules/BackupGuard_BackupGuardFree.xml',
49
+ 'app/etc/modules/BackupGuard_BackupGuard.xml',
50
+ 'app/design/adminhtml/default/default/layout/backupguardfree.xml',
51
+ 'app/design/adminhtml/default/default/layout/backupguard.xml',
52
+ 'app/design/adminhtml/default/default/template/backupguardfree/',
53
+ 'app/design/adminhtml/default/default/template/backupguard/',
54
+ 'app/locale/en_US/template/email/backupguard_backup_fail.html',
55
+ 'app/locale/en_US/template/email/backupguard_backup_success.html',
56
+ 'app/locale/en_US/template/email/backupguard_restore_fail.html',
57
+ 'app/locale/en_US/template/email/backupguard_restore_success.html',
58
+ 'media/sg_symlinks/',
59
+ 'skin/adminhtml/base/default/css/BackupGuardFree/',
60
+ 'skin/adminhtml/base/default/css/BackupGuard/',
61
+ 'skin/adminhtml/base/default/js/BackupGuardFree/',
62
+ 'skin/adminhtml/base/default/js/BackupGuard/',
63
+ 'skin/adminhtml/base/default/media/BackupGuardFree/',
64
+ 'skin/adminhtml/base/default/media/BackupGuard/',
65
+ 'var/'
66
+ );
67
  define('SG_BACKUP_FILE_PATHS_EXCLUDE', implode(',', $excludes));
68
  define('SG_BACKUP_DIRECTORY', SG_APP_PATH.'../sg_backups/'); //backups will be stored here
69
 
76
  define('SG_STORAGE_UPLOAD_CRON', '');
77
 
78
  //The following constants can be modified at run-time
79
+ define('SG_BACKUP_FILE_PATHS', 'app,js,lib,media,skin'); //fix this after development
app/code/community/BackupGuard/BackupGuardFree/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <BackupGuard_BackupGuardFree>
5
- <version>1.0.6</version>
6
  </BackupGuard_BackupGuardFree>
7
  </modules>
8
  <admin>
2
  <config>
3
  <modules>
4
  <BackupGuard_BackupGuardFree>
5
+ <version>1.0.7</version>
6
  </BackupGuard_BackupGuardFree>
7
  </modules>
8
  <admin>
app/code/community/BackupGuard/BackupGuardFree/sg_backups/ping.json ADDED
@@ -0,0 +1 @@
 
1
+ {"ts":1492012542}
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>BackupGuardFree</name>
4
- <version>1.0.6</version>
5
  <stability>stable</stability>
6
  <license>GNU General Public License (GPL)</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Backup Guard is the best backup choice for Magento. We offer the easiest way to backup and restore your Magento based online business.</description>
11
  <notes>Fully functional stable version</notes>
12
  <authors><author><name>Backup Guard</name><user>backupguard</user><email>info@backup-guard.com</email></author></authors>
13
- <date>2016-06-09</date>
14
- <time>06:59:55</time>
15
- <contents><target name="magecommunity"><dir name="BackupGuard"><dir name="BackupGuardFree"><dir name="Helper"><file name="Data.php" hash="04b15859891eb315cd1f354d257e1d65"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Model"><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="845be9f6ac2a30c5b3f21a929903209d"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="66db1361e49569b58e3e8aedb992b9fc"/></dir><file name=".DS_Store" hash="646b26ad78ebc3149e23ed5c835878c0"/></dir><dir name="com"><file name="boot.php" hash="d56d0465e4b3cc3683d9bbcfeec43c85"/><dir name="config"><file name="config.magento.free.php" hash="4c66874906fa448afb44c8d606a8ac11"/><file name="config.magento.php" hash="08eb0a5aac089a2d1c78fdc575712e02"/><file name="config.php" hash="a140db1de393b81860f29d37936d4751"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="core"><file name="SGBoot.php" hash="3f83146e59fc8683c528f12022b527c5"/><file name="SGConfig.php" hash="b855e6cfa987e16b6020a47f1e711d63"/><file name="SGPing.php" hash="cf5dddf3714848edba171a3f652ce0d0"/><dir name="backup"><file name="SGBackup.php" hash="d3948cea533de8c7682654bca33bacb7"/><file name="SGBackupDatabase.php" hash="f5e37c73a169716ad707ec68b0451220"/><file name="SGBackupFiles.php" hash="668282432cd24dd902739794ceaa5dad"/><file name="SGBackupLog.php" hash="bf0ec89ead6df0ce99d6cb5fe951ec47"/><file name="SGIBackupDelegate.php" hash="b5db5f3afdf588d1808f15634b4493ca"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="database"><file name="SGDatabase.php" hash="dff778077ceb81ee00f1188ce57b5dac"/><file name="SGDatabaseAdapterMagento.php" hash="a6605eaf2aaa6bccec68aff28643d25d"/><file name="SGIDatabaseAdapter.php" hash="6146b2b2f14180b8427367ffedba1291"/></dir><dir name="exception"><file name="SGException.php" hash="9a69304caf29f2970adc0aa556f5e3b5"/></dir><file name="functions.php" hash="312a1361603587d4276c6c83fd0e4eec"/><dir name="log"><file name="SGFileLogHandler.php" hash="e69c778949e19e440c7233628bf213fb"/><file name="SGILogHandler.php" hash="cda58db6525b5815fc90788826763ea3"/><file name="SGLog.php" hash="62a8ebece354ceda02d4d76ddf28e1e1"/></dir><file name=".DS_Store" hash="dd45ca0787ad63b742834dbf7e24fdef"/></dir><dir name="lib"><file name="BigInteger.php" hash="b295e37ff7afb37201b8cb8c2f52d689"/><file name="SGArchive.php" hash="745cd1034c32587aa1f541e389ae8c6d"/><file name="SGMysqldump.php" hash="31ea5d794aa292677c9d042328d12187"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="43093c9c684ae42c12f7a26b95bb46d6"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BackupguardfreeController.php" hash="68c64826dffb49c18985539b6ab862a6"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="548f6d732905524bd07fe9a5dc4a66c1"/></dir><dir name="etc"><file name="adminhtml.xml" hash="caabe1c7a65c8604d48d90b5c4c3c392"/><file name="config.xml" hash="53dc770078a7f305be5669498e3a5f39"/></dir><dir name="public"><dir name="ajax"><file name="cancelBackup.php" hash="e1861e440be94b399f3744c0c5560a96"/><file name="checkBackupCreation.php" hash="1c69edf496a5241af0c40d731a6bbb51"/><file name="checkRestoreCreation.php" hash="1c69edf496a5241af0c40d731a6bbb51"/><file name="deleteBackup.php" hash="96fb4cf3d9c20c0e6c2da1a70d555f1f"/><file name="downloadBackup.php" hash="98f7783387fe9cc6bb35751777429ecd"/><file name="getAction.php" hash="f4a97f89404c84b88d56ddb602236407"/><file name="getRunningActions.php" hash="2cb572210c5d29131f8dec6941eb0ef9"/><file name="hideNotice.php" hash="2fe634a46ebe98166f031cc625fb0e96"/><file name="importBackup.php" hash="eff8b0ffd25301544f26df5f799067d1"/><file name="manualBackup.php" hash="b2e3d054288d85d88adafea2ed5b9e4f"/><file name="modalImport.php" hash="659d96283586c3c0d08b411cf377bcdf"/><file name="modalManualBackup.php" hash="f4468c6d63b0844ead27764934d26c38"/><file name="modalPrivacy.php" hash="dfa89abc0f20ab41f6a32c36919d5a70"/><file name="modalReview.php" hash="5c291362daecda6962c6c12b0119c28b"/><file name="modalTerms.php" hash="ba2251dfd35a070e5868f2c20fb1a664"/><file name="resetStatus.php" hash="0b497956258705554d79e2b6851dad6f"/><file name="restore.php" hash="d897c95ef91cd797a9f731178b90e14d"/><file name="setReviewPopupState.php" hash="84838c074502959e5a9f46f607e52861"/><file name="settings.php" hash="fae4b305836cd309c6357b4816adeba1"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="boot.php" hash="d053522b871ce96d76beb03fe391e82e"/><dir name="config"><file name="config.magento.php" hash="f35690ebefc83873f7821461cc327560"/><file name="config.php" hash="e9190f3d1f76335854d84818280f5eb7"/></dir><dir name="include"><file name="functions.php" hash="8002cd3557d4c2e2d7e68977f8dca344"/><file name="notification.magento.php" hash="07795085e0f996eac67797847ebb8e76"/></dir><file name=".DS_Store" hash="07d82b22a56b59f48452b3103a8509d7"/></dir><dir name="sg_backups"><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/><file name=".htaccess" hash="5cc8a02be988615b049f5abecba2f3a0"/></dir><dir name="sql"><dir name="backupguardfree_setup"><file name="mysql4-install-1.0.0.php" hash="f288119ba141e2212c05249cc21c46eb"/></dir></dir><file name=".DS_Store" hash="b36313724d1b3ea50fb621534bad508e"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="backupguardfree.xml" hash="1b2a00a7807179a3bed836dc071b3b97"/></dir><dir name="template"><dir name="backupguardfree"><file name="backups.phtml" hash="8eb1a94fb5ac63c84ac734a47e652403"/><file name="footer.phtml" hash="76bd40c19b946f5d4460e6a735ac5a66"/><file name="footer.settings.phtml" hash="1f2214ec44a81348eba17954d696118c"/><file name="header.phtml" hash="3bcb4036f914c262844e526e0b83b760"/><file name="modal.phtml" hash="4c05d97029f503498c64122cfb8d1b5c"/><file name="settings.phtml" hash="e021c688b55c6f2a2379479b5a3b84f0"/><file name="sidebar.phtml" hash="5f017d66e2231845bee9bb8a21aea1b5"/><file name="support.phtml" hash="836c96ed2c693283943373152e579abb"/><file name="whyupgrade.phtml" hash="c12a72200c17b76c32c3ae485a598195"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="BackupGuard_BackupGuardFree.xml" hash="614e5b35bdeb05dda35f45e07134ff01"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="css"><dir name="BackupGuardFree"><file name="bgstyle.less.css" hash="fc1071041c9169e6c8ff7c2f245c378c"/><file name="bootstrap-switch.min.css" hash="a5fc24bfc254551bf97471e959a1a3c2"/><file name="bootstrap.css" hash="b2e9c4ecf3b7cec6e1c4c640aa5c53c6"/><file name="fonts.css" hash="7b665c6a2cd31f95c47cec63b2cdbb49"/><file name="main.css" hash="b00db9909061e896729a2f1e38d4f0b8"/><file name="spinner.css" hash="f6551696c7b1194afd769f8904c7dbdd"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir><dir name="js"><dir name="BackupGuardFree"><file name="bootstrap-switch.min.js" hash="12ce5d59f687e3c2a8d8395aee0c89b3"/><file name="bootstrap.min.js" hash="c5b5b2fa19bd66ff23211d9f844e0131"/><file name="jquery.min.js" hash="5790ead7ad3ba27397aedfa3d263b867"/><file name="less.min.js" hash="19e526aafd8841af87d97e1df2534083"/><file name="main.js" hash="a1448b435254fefd62c5e86bb2b7a24f"/><file name="sgbackup.js" hash="73f6a05366c96eedc3e4a7081531e3fc"/><file name="sgrequesthandler.js" hash="b01321f462b8062816b37f75b8af50cc"/><file name="sgrequesthandler.magento.js" hash="d84ede2a4ec4fd6996927239aa0e2943"/><file name="sgsettings.js" hash="f74b41eee7d6fdba854515d0bcb1bf8b"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir><dir name="media"><dir name="BackupGuardFree"><dir name="fonts"><file name="ODelI1aHBYDBqgeIAH2zlCxe5Tewm2_XWfbGchcXw4g.woff2" hash="c1bd5cd2c67859ed361a10bf2b25a270"/><file name="ODelI1aHBYDBqgeIAH2zlIa1YDtoarzwSXxTHggEXMw.woff2" hash="e39654b1857c430c950a507c50087b8a"/><file name="ODelI1aHBYDBqgeIAH2zlJbPFduIYtoLzwST68uhz_Y.woff2" hash="00bfa19cecc3900646c108e4ac706488"/><file name="OpenSans-Bold.woff" hash="cc42266cd7747dc5baf34d3c9346588f"/><file name="OpenSans-Light.woff" hash="32eb33cb1b3372cc5407ca24dc49d95f"/><file name="OpenSans.woff" hash="48a40d69fc0470991491bb9da3ea7126"/><file name="PTSerif-Caption.woff" hash="fbab4b1c8cc18cbd06cd64819399b110"/><file name="glyphicons-halflings-regular.eot" hash="f4769f9bdb7466be65088239c12046d1"/><file name="glyphicons-halflings-regular.svg" hash="89889688147bd7575d6327160d64e760"/><file name="glyphicons-halflings-regular.ttf" hash="e18bbf611f2a2e43afc071aa2f4e1512"/><file name="glyphicons-halflings-regular.woff" hash="fa2772327f55d8198301fdb8bcfc8158"/><file name="glyphicons-halflings-regular.woff2" hash="448c34a56d699c29117adc64c43affeb"/><file name="iconFont.dev.svg" hash="942fceb470bcb3b81f0ef4709c48c7d1"/><file name="iconFont.eot" hash="a4a081fea840239c3290acc40d518db3"/><file name="iconFont.json" hash="0dedee782ccf65d36f2599d22be70b56"/><file name="iconFont.svg" hash="e40fc64f66bc515730527b23da86bd5d"/><file name="iconFont.ttf" hash="a166f24c519d354ea121438fa010f7c9"/><file name="iconFont.woff" hash="1576a03757affd80023c2b76909670f2"/><file name="metroSysIcons.svg" hash="6e9df107d3ce5f4a9429bb6707781ff2"/><file name="metroSysIcons.ttf" hash="429d6273d7dde27cc53ada319ee8e94c"/><file name="metroSysIcons.woff" hash="133f18b18ab4338f4cd03c116b470afd"/><file name="toadOcfmlt9b38dHJxOBGCD5K6T8I4oZ1X3Xvlj_UeP3rGVtsTkPsbDajuO5ueQw.woff2" hash="b8f60b344e356217bccd52f5b7c5e1fe"/><file name="toadOcfmlt9b38dHJxOBGCP2LEk6lMzYsRqr3dHFImA.woff2" hash="7fde7742449b0174b0a6664889897c80"/><file name="toadOcfmlt9b38dHJxOBGDOFnJNygIkrHciC8BWzbCz3rGVtsTkPsbDajuO5ueQw.woff2" hash="79d99634f030bd764a7f239a78893862"/><file name="toadOcfmlt9b38dHJxOBGJkF8H8ye47wsfpWywda8og.woff2" hash="578d4394a9a36694716553db11ad034e"/><file name="toadOcfmlt9b38dHJxOBGMms7UHsIbjUxEJqIwog-i_3rGVtsTkPsbDajuO5ueQw.woff2" hash="44d45f6c370bee3815fa581e8ad65ed8"/><file name="toadOcfmlt9b38dHJxOBGO4s1Ux4PuImWPk5fSr6HPL3rGVtsTkPsbDajuO5ueQw.woff2" hash="d5c08021e6abbb3fbb610f4044cfd4fe"/></dir><dir name="img"><file name="backup-icons.png" hash="cfcb9705b8fc349229fa581bd906587c"/><file name="backup-icons@2x.png" hash="7407484458d8162a31f7e91a0ae3698d"/><file name="sg-ajax-loader.gif" hash="8a496edb52adab003987ab0ec33327f2"/><file name="sglogo.png" hash="08a7c06afb560f20d8c68c4843fb6a9b"/><file name="sgselect.png" hash="68f8964fd17f66faec62d2220b8c6fc3"/><file name="social-icons@2x.png" hash="cf43b681c85416d48800da97deadeeb4"/></dir><file name=".DS_Store" hash="7c9b6b8c6d59b6c19ee5d1044f9edc28"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php><extension><name>zlib</name><min/><max/></extension></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>BackupGuardFree</name>
4
+ <version>1.0.7</version>
5
  <stability>stable</stability>
6
  <license>GNU General Public License (GPL)</license>
7
  <channel>community</channel>
10
  <description>Backup Guard is the best backup choice for Magento. We offer the easiest way to backup and restore your Magento based online business.</description>
11
  <notes>Fully functional stable version</notes>
12
  <authors><author><name>Backup Guard</name><user>backupguard</user><email>info@backup-guard.com</email></author></authors>
13
+ <date>2017-04-12</date>
14
+ <time>15:56:16</time>
15
+ <contents><target name="magecommunity"><dir name="BackupGuard"><dir name="BackupGuardFree"><dir name="Helper"><file name="Data.php" hash="04b15859891eb315cd1f354d257e1d65"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Model"><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="845be9f6ac2a30c5b3f21a929903209d"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="66db1361e49569b58e3e8aedb992b9fc"/></dir><file name=".DS_Store" hash="646b26ad78ebc3149e23ed5c835878c0"/></dir><dir name="com"><file name="boot.php" hash="d56d0465e4b3cc3683d9bbcfeec43c85"/><dir name="config"><file name="config.magento.free.php" hash="4c66874906fa448afb44c8d606a8ac11"/><file name="config.magento.php" hash="dee328d74dc1c207bf4b49449e0c734f"/><file name="config.php" hash="a140db1de393b81860f29d37936d4751"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="core"><file name="SGBoot.php" hash="3f83146e59fc8683c528f12022b527c5"/><file name="SGConfig.php" hash="b855e6cfa987e16b6020a47f1e711d63"/><file name="SGPing.php" hash="cf5dddf3714848edba171a3f652ce0d0"/><dir name="backup"><file name="SGBackup.php" hash="d3948cea533de8c7682654bca33bacb7"/><file name="SGBackupDatabase.php" hash="f5e37c73a169716ad707ec68b0451220"/><file name="SGBackupFiles.php" hash="668282432cd24dd902739794ceaa5dad"/><file name="SGBackupLog.php" hash="bf0ec89ead6df0ce99d6cb5fe951ec47"/><file name="SGIBackupDelegate.php" hash="b5db5f3afdf588d1808f15634b4493ca"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="database"><file name="SGDatabase.php" hash="dff778077ceb81ee00f1188ce57b5dac"/><file name="SGDatabaseAdapterMagento.php" hash="a6605eaf2aaa6bccec68aff28643d25d"/><file name="SGIDatabaseAdapter.php" hash="6146b2b2f14180b8427367ffedba1291"/></dir><dir name="exception"><file name="SGException.php" hash="9a69304caf29f2970adc0aa556f5e3b5"/></dir><file name="functions.php" hash="312a1361603587d4276c6c83fd0e4eec"/><dir name="log"><file name="SGFileLogHandler.php" hash="e69c778949e19e440c7233628bf213fb"/><file name="SGILogHandler.php" hash="cda58db6525b5815fc90788826763ea3"/><file name="SGLog.php" hash="62a8ebece354ceda02d4d76ddf28e1e1"/></dir><file name=".DS_Store" hash="dd45ca0787ad63b742834dbf7e24fdef"/></dir><dir name="lib"><file name="BigInteger.php" hash="b295e37ff7afb37201b8cb8c2f52d689"/><file name="SGArchive.php" hash="745cd1034c32587aa1f541e389ae8c6d"/><file name="SGMysqldump.php" hash="31ea5d794aa292677c9d042328d12187"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="43093c9c684ae42c12f7a26b95bb46d6"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BackupguardfreeController.php" hash="68c64826dffb49c18985539b6ab862a6"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="548f6d732905524bd07fe9a5dc4a66c1"/></dir><dir name="etc"><file name="adminhtml.xml" hash="caabe1c7a65c8604d48d90b5c4c3c392"/><file name="config.xml" hash="58c16d8a98f7b97becb1477df2d2805c"/></dir><dir name="public"><dir name="ajax"><file name="cancelBackup.php" hash="e1861e440be94b399f3744c0c5560a96"/><file name="checkBackupCreation.php" hash="1c69edf496a5241af0c40d731a6bbb51"/><file name="checkRestoreCreation.php" hash="1c69edf496a5241af0c40d731a6bbb51"/><file name="deleteBackup.php" hash="96fb4cf3d9c20c0e6c2da1a70d555f1f"/><file name="downloadBackup.php" hash="98f7783387fe9cc6bb35751777429ecd"/><file name="getAction.php" hash="f4a97f89404c84b88d56ddb602236407"/><file name="getRunningActions.php" hash="2cb572210c5d29131f8dec6941eb0ef9"/><file name="hideNotice.php" hash="2fe634a46ebe98166f031cc625fb0e96"/><file name="importBackup.php" hash="eff8b0ffd25301544f26df5f799067d1"/><file name="manualBackup.php" hash="b2e3d054288d85d88adafea2ed5b9e4f"/><file name="modalImport.php" hash="659d96283586c3c0d08b411cf377bcdf"/><file name="modalManualBackup.php" hash="f4468c6d63b0844ead27764934d26c38"/><file name="modalPrivacy.php" hash="dfa89abc0f20ab41f6a32c36919d5a70"/><file name="modalReview.php" hash="5c291362daecda6962c6c12b0119c28b"/><file name="modalTerms.php" hash="ba2251dfd35a070e5868f2c20fb1a664"/><file name="resetStatus.php" hash="0b497956258705554d79e2b6851dad6f"/><file name="restore.php" hash="d897c95ef91cd797a9f731178b90e14d"/><file name="setReviewPopupState.php" hash="84838c074502959e5a9f46f607e52861"/><file name="settings.php" hash="fae4b305836cd309c6357b4816adeba1"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name="boot.php" hash="d053522b871ce96d76beb03fe391e82e"/><dir name="config"><file name="config.magento.php" hash="f35690ebefc83873f7821461cc327560"/><file name="config.php" hash="e9190f3d1f76335854d84818280f5eb7"/></dir><dir name="include"><file name="functions.php" hash="8002cd3557d4c2e2d7e68977f8dca344"/><file name="notification.magento.php" hash="07795085e0f996eac67797847ebb8e76"/></dir><file name=".DS_Store" hash="07d82b22a56b59f48452b3103a8509d7"/></dir><dir name="sg_backups"><file name="ping.json" hash="d0db4ac284df3e14a4908d0e3c183224"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/><file name=".htaccess" hash="5cc8a02be988615b049f5abecba2f3a0"/></dir><dir name="sql"><dir name="backupguardfree_setup"><file name="mysql4-install-1.0.0.php" hash="f288119ba141e2212c05249cc21c46eb"/></dir></dir><file name=".DS_Store" hash="b36313724d1b3ea50fb621534bad508e"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="backupguardfree.xml" hash="1b2a00a7807179a3bed836dc071b3b97"/></dir><dir name="template"><dir name="backupguardfree"><file name="backups.phtml" hash="8eb1a94fb5ac63c84ac734a47e652403"/><file name="footer.phtml" hash="76bd40c19b946f5d4460e6a735ac5a66"/><file name="footer.settings.phtml" hash="1f2214ec44a81348eba17954d696118c"/><file name="header.phtml" hash="3bcb4036f914c262844e526e0b83b760"/><file name="modal.phtml" hash="4c05d97029f503498c64122cfb8d1b5c"/><file name="settings.phtml" hash="e021c688b55c6f2a2379479b5a3b84f0"/><file name="sidebar.phtml" hash="5f017d66e2231845bee9bb8a21aea1b5"/><file name="support.phtml" hash="836c96ed2c693283943373152e579abb"/><file name="whyupgrade.phtml" hash="c12a72200c17b76c32c3ae485a598195"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="BackupGuard_BackupGuardFree.xml" hash="614e5b35bdeb05dda35f45e07134ff01"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="css"><dir name="BackupGuardFree"><file name="bgstyle.less.css" hash="fc1071041c9169e6c8ff7c2f245c378c"/><file name="bootstrap-switch.min.css" hash="a5fc24bfc254551bf97471e959a1a3c2"/><file name="bootstrap.css" hash="b2e9c4ecf3b7cec6e1c4c640aa5c53c6"/><file name="fonts.css" hash="7b665c6a2cd31f95c47cec63b2cdbb49"/><file name="main.css" hash="b00db9909061e896729a2f1e38d4f0b8"/><file name="spinner.css" hash="f6551696c7b1194afd769f8904c7dbdd"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir><dir name="js"><dir name="BackupGuardFree"><file name="bootstrap-switch.min.js" hash="12ce5d59f687e3c2a8d8395aee0c89b3"/><file name="bootstrap.min.js" hash="c5b5b2fa19bd66ff23211d9f844e0131"/><file name="jquery.min.js" hash="5790ead7ad3ba27397aedfa3d263b867"/><file name="less.min.js" hash="19e526aafd8841af87d97e1df2534083"/><file name="main.js" hash="a1448b435254fefd62c5e86bb2b7a24f"/><file name="sgbackup.js" hash="73f6a05366c96eedc3e4a7081531e3fc"/><file name="sgrequesthandler.js" hash="b01321f462b8062816b37f75b8af50cc"/><file name="sgrequesthandler.magento.js" hash="d84ede2a4ec4fd6996927239aa0e2943"/><file name="sgsettings.js" hash="f74b41eee7d6fdba854515d0bcb1bf8b"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir><dir name="media"><dir name="BackupGuardFree"><dir name="fonts"><file name="ODelI1aHBYDBqgeIAH2zlCxe5Tewm2_XWfbGchcXw4g.woff2" hash="c1bd5cd2c67859ed361a10bf2b25a270"/><file name="ODelI1aHBYDBqgeIAH2zlIa1YDtoarzwSXxTHggEXMw.woff2" hash="e39654b1857c430c950a507c50087b8a"/><file name="ODelI1aHBYDBqgeIAH2zlJbPFduIYtoLzwST68uhz_Y.woff2" hash="00bfa19cecc3900646c108e4ac706488"/><file name="OpenSans-Bold.woff" hash="cc42266cd7747dc5baf34d3c9346588f"/><file name="OpenSans-Light.woff" hash="32eb33cb1b3372cc5407ca24dc49d95f"/><file name="OpenSans.woff" hash="48a40d69fc0470991491bb9da3ea7126"/><file name="PTSerif-Caption.woff" hash="fbab4b1c8cc18cbd06cd64819399b110"/><file name="glyphicons-halflings-regular.eot" hash="f4769f9bdb7466be65088239c12046d1"/><file name="glyphicons-halflings-regular.svg" hash="89889688147bd7575d6327160d64e760"/><file name="glyphicons-halflings-regular.ttf" hash="e18bbf611f2a2e43afc071aa2f4e1512"/><file name="glyphicons-halflings-regular.woff" hash="fa2772327f55d8198301fdb8bcfc8158"/><file name="glyphicons-halflings-regular.woff2" hash="448c34a56d699c29117adc64c43affeb"/><file name="iconFont.dev.svg" hash="942fceb470bcb3b81f0ef4709c48c7d1"/><file name="iconFont.eot" hash="a4a081fea840239c3290acc40d518db3"/><file name="iconFont.json" hash="0dedee782ccf65d36f2599d22be70b56"/><file name="iconFont.svg" hash="e40fc64f66bc515730527b23da86bd5d"/><file name="iconFont.ttf" hash="a166f24c519d354ea121438fa010f7c9"/><file name="iconFont.woff" hash="1576a03757affd80023c2b76909670f2"/><file name="metroSysIcons.svg" hash="6e9df107d3ce5f4a9429bb6707781ff2"/><file name="metroSysIcons.ttf" hash="429d6273d7dde27cc53ada319ee8e94c"/><file name="metroSysIcons.woff" hash="133f18b18ab4338f4cd03c116b470afd"/><file name="toadOcfmlt9b38dHJxOBGCD5K6T8I4oZ1X3Xvlj_UeP3rGVtsTkPsbDajuO5ueQw.woff2" hash="b8f60b344e356217bccd52f5b7c5e1fe"/><file name="toadOcfmlt9b38dHJxOBGCP2LEk6lMzYsRqr3dHFImA.woff2" hash="7fde7742449b0174b0a6664889897c80"/><file name="toadOcfmlt9b38dHJxOBGDOFnJNygIkrHciC8BWzbCz3rGVtsTkPsbDajuO5ueQw.woff2" hash="79d99634f030bd764a7f239a78893862"/><file name="toadOcfmlt9b38dHJxOBGJkF8H8ye47wsfpWywda8og.woff2" hash="578d4394a9a36694716553db11ad034e"/><file name="toadOcfmlt9b38dHJxOBGMms7UHsIbjUxEJqIwog-i_3rGVtsTkPsbDajuO5ueQw.woff2" hash="44d45f6c370bee3815fa581e8ad65ed8"/><file name="toadOcfmlt9b38dHJxOBGO4s1Ux4PuImWPk5fSr6HPL3rGVtsTkPsbDajuO5ueQw.woff2" hash="d5c08021e6abbb3fbb610f4044cfd4fe"/></dir><dir name="img"><file name="backup-icons.png" hash="cfcb9705b8fc349229fa581bd906587c"/><file name="backup-icons@2x.png" hash="7407484458d8162a31f7e91a0ae3698d"/><file name="sg-ajax-loader.gif" hash="8a496edb52adab003987ab0ec33327f2"/><file name="sglogo.png" hash="08a7c06afb560f20d8c68c4843fb6a9b"/><file name="sgselect.png" hash="68f8964fd17f66faec62d2220b8c6fc3"/><file name="social-icons@2x.png" hash="cf43b681c85416d48800da97deadeeb4"/></dir><file name=".DS_Store" hash="7c9b6b8c6d59b6c19ee5d1044f9edc28"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php><extension><name>zlib</name><min/><max/></extension></required></dependencies>
18
  </package>