PhpMyAdmin appears export.php Missing parameter: what and export_type error resolution

  • 2020-05-19 04:19:31
  • OfStack

The problem that PhpMyAdmin cannot export data. After clicking export, a request fails or a white page is displayed, and an error is reported after the page is refreshed
export.php: Missing parameter: what (FAQ 2.8)
export.php: Missing parameter: export_type (FAQ 2.8)

The solution:

The php.ini Settings in the php directory need to be adjusted 1 time
The original post_max_size = 8M, just make it post_max_size = 20M.

php source code solution

ini_set('memory_limit', '180M');

If we're in linux we're going to

This is the path to the affected file on the (dv) Dedicated-Virtual Server:
 
/usr/local/psa/admin/htdocs/domains/databases/phpMyAdmin/libraries 

To apply the fix, log in to your server via SSH as a "root" user and run the following commands:
Change directories into the folder with the affected file. cd
 
/usr/local/psa/admin/htdocs/domains/databases/phpMyAdmin/librariesMove 

the old file as a backup. mv session.inc.php session.inc.php-oldDownload the fixed file. wget
 
http://download1.swsoft.com/Plesk/Autoupdate/Windows/8.1.1.2/120220/session.inc.php 

Restart Plesk
 
/etc/init.d/psa restart 

Related articles: