>  기사  >  데이터 베이스  >  PhpMyAdmin出现export.php: Missing parameter: what /export_ty

PhpMyAdmin出现export.php: Missing parameter: what /export_ty

WBOY
WBOY원래의
2016-06-07 17:51:56823검색

PhpMyAdmin出现export.php: Missing parameter: what /export_type错误,有碰到同样问题的朋友可参考一下。

PhpMyAdmin 不能导出数据的问题,点击导出后先是一个请求失败或者白页,重新刷新后就报错

 export.php: Missing parameter: what (FAQ 2.8)

export.php: Missing parameter: export_type (FAQ 2.8)

 解决方法是:

php目录下的php.ini 设置要调整一下

原来的 post_max_size = 8M ,改大到 post_max_size = 20M 就好了。

php源码中解决办法


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


如果在linux系统中我们就


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
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.