xampp phpmyadmin, Incorrect format parameter

前端 未结 5 1512
被撕碎了的回忆
被撕碎了的回忆 2020-12-23 17:49

Im trying to import the database of my client side (wordpress platform) to localhost (using xampp).

Other clients\' sites work OK, except for this one particular si

5条回答
  •  悲哀的现实
    2020-12-23 18:22

    I had the same problem recently.

    I did these 3 things and it worked:

    1. Made sure the Collation of the exported database is the same as the newly created one.

    2. Made these changes in my php.ini(xampp/php/php.ini) file

      max_execution_time = 5000
      max_input_time = 5000
      memory_limit = 1000M
      post_max_size = 750M
      upload_max_filesize = 750M
      
    3. Made this change in my \phpmyadmin\libraries\config.default.php file:

    change

    $cfg['ExecTimeLimit'] = 300;
    

    to

    $cfg['ExecTimeLimit'] = 0;
    

    (So there is no limit)

提交回复
热议问题