Restore WordPress backup in Laragon
-
Is it possible to restore locally in Laragon a website WP backup? How can i do? Thanks
-
@MauricioFa : Yes, it is.
You can check how to restore a MySQL backup here:
https://laragon.org/download/migrate-from-others.html
-
I got this error when use the terminal built-in Laragon
mysqldump.exe --all-databases > C:\laragon\tmp\alldb.sql
mysqldump: Got error: 1045: Access denied for user 'ODBC'@'localhost' (using password: NO) when trying to connectand i can´t see the alldb.sql file in that route
-
@MauricioFa : If you have a backup xxx.sql file, you don't need to dump.
Assume your database is "project1", just import to Laragon using this command:mysql -u root -p project1 < xxx.sql
-
You can follow this guide: https://laragon.org/download/migrate-from-others.html
Also for Complete guide about backup WordPress, you can follow this guide: https://www.cloudways.com/blog/backup-wordpress-website/