phpmyadmin is limited by the constraints of php's upload size and max execution time. It's definitely not ideal for backing up or restoring large databases - it's good for browsing, editing, running test queries etc. For large database import/export you should use command line mysql:
Export:
mysqldump -uUSERNAME -p DATABASE_NAME > database_backup.sql
Import:
mysql -uUSERNAME -p DATABASE_NAME < database_backup.sql
Hi ALL,
Is there any best practice for back-up I tried other form and elgg WIKI. I need to take full back up of my site like images \videos or other content .
phpmyadmin is limited by the constraints of php's upload size and max execution time. It's definitely not ideal for backing up or restoring large databases - it's good for browsing, editing, running test queries etc. For large database import/export you should use command line mysql:
Export:
mysqldump -uUSERNAME -p DATABASE_NAME > database_backup.sql
Import:
mysql -uUSERNAME -p DATABASE_NAME < database_backup.sql
Hi ALL,
Is there any best practice for back-up I tried other form and elgg WIKI. I need to take full back up of my site like images \videos or other content .
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.