phpMyAdmin - Error > Incorrect format parameter?

前端 未结 14 1336
生来不讨喜
生来不讨喜 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 14:05

    This error is caused by the fact that the maximum upload size is (Max: 2,048KiB). If your file is bigger than this, you will get an error. Zip the file and upload it again, you will not get the error.

    0 讨论(0)
  • 2020-12-12 14:06

    If you prefer to edit the file php.ini in your favorite editor than the Editor created by MAMP, you would need to stop the Servers first.

    Then head to Library->Application Support->appsolute->MAMP PRO->templates->php{version_number}.ini.temp and effect any change you would want to have especially the below

    max_execution_time = 3000
    max_input_time = 60
    memory_limit = 128M
    post_max_size = 256M
    upload_max_filesize 256M
    

    And also make changes in your PHPMyAdmin if it is what you are using in Cpanel.

    $cfg['ExecTimeLimit'] = 300;
    

    Make sure you make a copy of the original file. You can navigate under conf!here

    0 讨论(0)
提交回复
热议问题