phpMyAdmin - Error > Incorrect format parameter?

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

提交回复
热议问题