Tips for Linux environment:
When dealing with large databases, time out error may occur during backup and restore. In that case, you might be solved by performing job asynchronously.
Backup command example in option panel:
nohup ^mysqldump -h^host -u^user -p^pw ^db | ^gzip > ^folder^db-^date.sql.gz | >> /dev/null 2>&1 &
Restore command example in option panel:
nohup ^zcat ^file | ^mysql -h^host -u^user -p^pw ^db | >> /dev/null 2>&1 &
You may not be able to use this tips in the windows environment.