Im trying to backup a wordpress website from host and move it back on my local host and keep it as a sample for rebuilding. If have any workaround or maybe other methods I`m all
You can try to use mysql console.
cmd commandc: or d: on command prompt. This will be based on your WAMP server installations.D:\>cd wampD:\wamp>cd binD:\wamp\bin>cd mysqlD:\wamp\bin\mysql>cd mysql15.1.36D:\wamp\bin\mysql\mysql15.1.36>cd binD:\wamp\bin\mysql\mysql15.1.36\bin>mysql.exe -u rootuse databasesource source.sqlBassicaly you login into mysql, use database determines which database you want to use, source /source/to/source.sql determines which sql you want to run. Pretty easy and efficient.