https://github.com/tushev/jabackup
A set of tools that perform simple backup/restore of Joomla! website
https://github.com/tushev/jabackup
Last synced: 2 months ago
JSON representation
A set of tools that perform simple backup/restore of Joomla! website
- Host: GitHub
- URL: https://github.com/tushev/jabackup
- Owner: tushev
- License: mpl-2.0
- Created: 2016-04-14T16:54:17.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-04-14T10:43:41.000Z (about 5 years ago)
- Last Synced: 2024-12-28T09:42:41.740Z (4 months ago)
- Language: Shell
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jabackup - Joomla! automated backup & restore
A set of tools that perform simple backup/restore of Joomla! websiteDo not forget to make both files executable:
`chmod +x ja*.sh`## jabackup.sh
USAGE: `jabackup.sh [OPTIONS] PATH-TO-JOOMLA-ROOT`
PATH is a path to Joomla! root (where index.php & configuration.php are located)
```
Options:
-f, --filename BASENAME for archive (may include path). Extension will be added automatically (!).
-z, --gzip2 Compress files with gzip (default)
-j, --bzip2 Compress files with bzip2
-J, --xz Compress files with xz
-q, --quiet Quiet (no output) [not implemented yet]
-h, --help Display this help and exit
--version Output version information and exit
```
Example: **`./jabackup.sh /var/www/joomla`**
will create backup of Joomla! from `/var/www/joomla` as `backup.tar.gz` in current directory**`./jabackup.sh -f /home/mysite -J /var/www/joomla`**
will create backup of Joomla! from `/var/www/joomla` as `/home/mysite.tar.xz`## jarestore.sh
will be added in the next release