These forums are locked and archived, but all topics have been migrated to the new forum. You can search for this topic on the new forum: Search for Webmin 1.932 released on the new forum.
Howdy all,
Webmin version 1.932 has been released for all repositories. This is a minor bugfix release, primarily to fix Dropbox backup issues that started happening a couple of weeks ago, but it has a few other bugfixes, as well.
Cheers,
Joe
Thanks. Don't know if you know here in releases you can't find this version yet.?
https://github.com/webmin/webmin/releases
No joy on the dropbox fix (for me anyway).
" Uploading archive to Dropbox .. .. upload failed! Error in call to API function "files/upload": Bad HTTP "Content-Type" header: "application/x-gzip". Expecting one of "application/octet-stream", "text/plain; charset=dropbox-cors-hack". "
Joseph Dobransky
Having the same issue here. Uploading archive to Dropbox .. .. upload failed! Error in call to API function "files/upload": Bad HTTP "Content-Type" header: "application/x-gzip". Expecting one of "application/octet-stream", "text/plain; charset=dropbox-cors-hack".
I ended up using the programs provided by dropbox to "mirror" my dropbox locally, and writing a cron script. I run it weekly. YMMV
#! /bin/bash
PATH=$PATH:$(sed -n '/PATH=/s/^.*=// ; s/"//gp' '/etc/environment')
DATE=`date +%Y-%m-%d`
DROPBOX_DIR="/root/Dropbox/Apps/virtualmin/backups"
BACKUP_DIR="/backup"
mkdir -p $BACKUP_DIR/$DATE
virtualmin backup-domain --dest $BACKUP_DIR/$DATE --all-domains --all-features --newformat --all-virtualmin
mv $BACKUP_DIR/* $DROPBOX_DIR
find $DROPBOX_DIR/* -type d -ctime +23 | xargs rm -rf
Joseph Dobransky