Backup
With the backup feature (which is available only with a valid license) you can download the package
|
![]() |
![]() | The name of the downloaded package consists of the packages name (as in the packages repository) and the current date. The postfix is "mgnl". If you want to use the backup feature to make backups of your Magnolia installation you must know the respective URL. http://[server]/[rootContext]/pack/.pack/backupPackage/[name]?mgnlPath=[packagePath] As reference you can look at my backup script which will download the packages you see on the left and send them to a backup server. From Magnolia 3.1 on the URL looks like this: http://[server]/[rootContext]/.packager/backupPackage/[name]?mgnlPath=[packagePath] |
#! /bin/shPACKAGES="templating users config"${package} wget --no-check-certificate --user ${CMSUSER} --password ${CMSPASSWORD} ${P} P=${PACKAGES_BASE}/Backup_content_${package}_${DATE}.mgnl?mgnlPath=${CONTENT_PATH}/${package} wget --no-check-certificate --user ${CMSUSER} --password ${CMSPASSWORD} ${P} |


