skip to Main Content

When I tried to export the following error showed

Uncaught TypeError: Argument 5 passed to PhpMyAdminExport::getFilenameAndMimetype() must be of the type string, null given, called in C:xamppphpMyAdminexport.php on line 387 and defined in C:xamppphpMyAdminlibrariesclassesExport.php:270 Stack trace: #0 C:xamppphpMyAdminexport.php(387): PhpMyAdminExport->getFilenameAndMimetype('database', '', Object(PhpMyAdminPluginsExportExportSql), '', NULL) #1 {main} thrown in C:xamppphpMyAdminlibrariesclassesExport.php on line 270

2

Answers


  1. uncomment max_input_vars in php.ini file and change value from 1000 to a greater value

    Login or Signup to reply.
  2. it’s works for me

    $compression = isset($_REQUEST['compression'])? $_REQUEST['compression']:'gzip';
    

    you can try it

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search