Maximum execution time of 360 seconds exceeded in C:\wamp\apps\phpmyadmin4.1.14

后端 未结 3 1963
情歌与酒
情歌与酒 2021-02-10 01:32

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

3条回答
  •  隐瞒了意图╮
    2021-02-10 02:27

    You can try to use mysql console.

    1. Run cmd command
    2. Type c: or d: on command prompt. This will be based on your WAMP server installations.
    3. Assuming you have installed wamp on D: drive.
    4. D:\>cd wamp
    5. D:\wamp>cd bin
    6. D:\wamp\bin>cd mysql
    7. D:\wamp\bin\mysql>cd mysql15.1.36
    8. D:\wamp\bin\mysql\mysql15.1.36>cd bin
    9. D:\wamp\bin\mysql\mysql15.1.36\bin>mysql.exe -u root
    10. use database
    11. source source.sql

    Bassicaly 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.

提交回复
热议问题