PhpMyAdmin出现export.php Missing parameter: what /export_type错误解决方法
更新时间:2012年08月09日 22:45:57 作者:
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
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
您可能感兴趣的文章:
- phpmyadmin出现Cannot start session without errors问题解决方法
- phpmyadmin显示MySQL数据表“使用中” 修复后依然无效的解决方法
- phpmyadmin配置文件现在需要绝密的短密码(blowfish_secret)的2种解决方法
- phpmyadmin打开很慢的解决方法
- PHP下打开phpMyAdmin出现403错误的问题解决方法
- phpmyadmin报错:#2003 无法登录 MySQL服务器的解决方法
- PHPMYADMIN导入数据最大为2M的解决方法
- phpMyAdmin出现无法载入 mcrypt 扩展,请检查PHP配置的解决方法
- 实战mysql导出中文乱码及phpmyadmin导入中文乱码的解决方法
- 小结下MySQL中文乱码,phpmyadmin乱码,php乱码 产生原因及其解决方法
- phpmyadmin提示The mbstring extension is missing的解决方法
相关文章
smarty中先strip_tags过滤html标签后truncate截取文章运用
strip_tags() 函数剥去 HTML、XML 以及 PHP 的标签。2010-10-10php通过array_unshift函数添加多个变量到数组前端的方法
这篇文章主要介绍了php通过array_unshift函数添加多个变量到数组前端的方法,涉及php中array_unshift函数操作数组的使用技巧,需要的朋友可以参考下2015-03-03php download.php实现代码 跳转到下载文件(response.redirect)
一直对php不太熟悉,今天需要类型asp的 response.redirect语句,但一直没有很好的解决方法。下面是问了朋友才知道的。2009-08-08
最新评论