phpMyAdmin - Error > Incorrect format parameter?

前端 未结 14 1422
生来不讨喜
生来不讨喜 2020-12-12 13:07

I have a WordPress production website.

I\'ve exported the database by the following commands: select database > export > custom > select all tables &g

14条回答
  •  忘掉有多难
    2020-12-12 13:54

    For me, adjusting the 2 values was not enough. If the file is too big, you also need to adjust the execution time variables.

    First, ../php/php.ini

    upload_max_filesize=128M
    post_max_size=128M
    max_execution_time=1000
    

    Then, ../phpMyAdmin\libraries\config.default.php

    $cfg['ExecTimeLimit'] = 1000;
    

    This did the trick for me. The variables can be choosen differently of course. Maybe the execution time has to be even higher. And the size depends on your filesize.

提交回复
热议问题