Want to move that jQuery and other js references from header to footer? Try JavaScript to Footer plugin.
Pages
Other stuff
This setup creates a full backup of your cPanel account each month, maintaining one backup for each previous year, and monthly backups for the current year.
You need two files:
Crontab.txt
MAILTO="webmaster@example.com"
5 4 28 * * /home/yourdomain/full_backup.sh
5 4 31 12 * /home/yourdomain/full_backup.sh --year
You'll have to set your crontab with a command like:
crontab crontab.txt
You can see what's in your crontab with the following command:
crontab -l
full_backup.sh
###
# cPanel Backup via Cron v1.2
###
###
# Instructions
###
# Make sure CP_SCP_BACKUP_ROOT directory exists. It is "web_backup" by default.
# Within this directory you'll need a directory for each cPanel account you're
# backing up.
#
# I.e. if you're backing up "example.com" and "foobar.com" and you want them
# to be backed up in the default location of "web_backup", you'll need to
# execute the following commands at the recieving end:
# mkdir ~/web_backup
# mkdir ~/web_backup/example.com
# mkdir ~/web_backup/foobar.com
###
#cPanel info -- host that is being backed up
CP_USERNAME=username
CP_PASSWORD=password
CP_DOMAIN=yourdomain.com
CP_SKIN=x3 # plain "x" is probably the most common one
#SCP/FTP info -- host to receive the backup file
CP_SCP_USER=username
CP_SCP_PASS=password
CP_SCP_HOST=example-backup-host.com
CP_SCP_PORT=22
# see cPanel backup page for alternatives of transfer mode
CP_SCP_MODE=scp
# target directory on remote host; do not include domain names in this one
CP_SCP_BACKUP_ROOT=web_backup%2F # url encoded, e.g. "/" equals "%2F"
# creates the target path (directory and filename)
# if you make changes, remember to url encode slashes, i.e. "/" equals "%2F"
# if --year option is used, script creates a yearly filename, otherwise a monthly one
if [ "$1" = '--year' ]; then
CP_SCP_RDIR=$CP_SCP_BACKUP_ROOT$CP_DOMAIN%2F$CP_DOMAIN-year-`date +%Y`.tar.gz
else
CP_SCP_RDIR=$CP_SCP_BACKUP_ROOT$CP_DOMAIN%2F$CP_DOMAIN-month-`date +%m`.tar.gz
fi
# email address for sending notification after backup is completed
CP_EMAIL=webmaster@example.com
# initiate backup (the following command should be on one line)
curl --silent --insecure --user $CP_USERNAME:$CP_PASSWORD -d "dest=$CP_SCP_MODE&email=$CP_EMAIL&server=$CP_SCP_HOST&user=$CP_SCP_USER&pass=$CP_SCP_PASS&port=$CP_SCP_PORT&rdir=$CP_SCP_RDIR" https://$CP_DOMAIN:2083/frontend/$CP_SKIN/backup/dofullbackup.html > /dev/null
# gets curl return code
CURL_EXIT=$?
# curl encountered an error
if [ $CURL_EXIT -gt 0 ]; then
echo curl returned exit status $CURL_EXIT - see curl manual pages for more details
exit 69
fi
# everything ok
exit 0
Put the file, say, in your account root and make the file executable (e.g. with command "chmod 700 full_backup.sh").
Let me know in the comments how it works for you. Thanks!
Want to move that jQuery and other js references from header to footer? Try JavaScript to Footer plugin.
These 3 steps will help you to set up cookie free JavaScript, CSS and other files for your WordPress installation. (This is especially helpful for changing the domain of certain JS/CSS file references added by plugins.) Before you start, make sure your blog URL has a leading www (e.g. www.example.com, not example.com) in your WordPress [...]
The only way: use a VBA macro. E.g. ActiveSheet.PageSetup.LeftFooter = "Check: " & Sheets(SETTINGS_SHEET_NAME).Range("F4").Value
Using VBA, add line break to header or footer with Chr(13). E.g. ActiveSheet.PageSetup.LeftFooter = "Foo bar" & Chr(13) & "Another line"
Note to self. When building WP sites with several js/css files, remember to include WP Minify with the regular plugins.