phpMyAdmin导入超过限制大小的数据库

网站建立时间久了,数据库会越来越大,数据库导入导出时经常会有数据库超过限制大小情况,普通的修改上传限制大小已经无法满足你的需求了,接下来就需要修改下config.default.php 文件来实现导入超大型数据库,在这个配置文件里找到:

$cfg[‘UploadDir’] = ”;

$cfg[‘SaveDir’] = ”;

将其改成:

$cfg[‘UploadDir’] = ‘upload’;

$cfg[‘SaveDir’] = ‘save’;

然后在 phpMyAdmin 的目录下创建两个空目录,upload 和 save,并且把要导入的数据库文件传送到 upload 目录下。

选择网站服务器上传的文件夹里的数据库,点击【执行】按钮就可以顺利导入超大型的数据库了。

原文:http://www.wpued.com/7504.html

Nginx下https跳转出现400-Bad-Request的解决方案

PHPMYADMIN登录后出现以下问题,提示:
400 Bad Request: The plain HTTP request was sent to HTTPS port

以下解决方案来自antoniolorusso.com,猛击此处访问原文:http://goo.gl/z6gbS

When you are using the FastCGI Php version, you would set HTTPS variable if you are serving parts of you website with SSL.To do that, add the following function into the http section of your nginx configuration(以下内容添加到http字段内):

map $scheme $fastcgi_https { ## Detect when HTTPS is used
default off;
https on;
}

以下内容添加到server字段内:

fastcgi_param HTTPS $fastcgi_https;