What's new
Install the app
How to install the app on iOS

Follow along with the video below to see how to install our site as a web app on your home screen.

Note: This feature may not be available in some browsers.

Welcome to My Sharing Site

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Resource icon
xF2 Add-on
< Previous | Next >
This add-on allows you to turn your board on and off with command line interface.

So you can use this option to flip the "Board active" switch when you preparing to make a database backup and flip it back on when done.

You can automate the whole backup process by making a shell script like this and adding it to the crontab
[/B] Bash: ############################################################################ vhost_path=/home/nginx/domains/yourdomain.com public_doc_dir=$vhost_path/public random_string=$(cat /dev/random | tr -dc '0-9' | fold -w 256 | head --bytes 7) backup_dir=$public_doc_dir/backups/$(date +"%d-%m-%Y")/$random_string elastic_snapshot_repo=/home/es_repo dbuser=$(grep username $public_doc_dir/src/config.php | awk -F\' '{ print $6 }') dbpass=$(grep password $public_doc_dir/src/config.php | awk -F\' '{ print $6 }') dbname=$(grep dbname $public_doc_dir/src/config.php | awk -F\' '{ print $6 }') ############################################################################ # # # BACKUP PROCESS # # # ############################################################################ mkdir -p $backup_dir # board active switch turns to off /bin/env php $public_doc_dir/cmd.php xf:board-active off -m "Sorry for the inconvenience but we're performing some maintenance at the moment. we'll be back online shortly!" mysqldump --opt --default-character-set=utf8mb4 -u$dbuser -p$dbpass $dbname > db$(date +"%d-%m-%Y").sql .... ... .. # Board active switch turns to on and message sets back to the default /bin/env php $public_doc_dir/cmd.php xf:board-active off -m "Sorry, we're currently unavailable. Please check back later.." [B]


example usage:
php cmd.php xf:board-active on -m "Sorry, we're currently unavailable. Please check back later.."
xF2 Add-on in Credit  HTML Page system 1.0.0  1.0.0
xF2 Add-on in Credit  XF2 [8WR] Database Backup 2.1.0.8  2.1.0.8
Similar resources Most view View more
Top