sql文件太大(达到400m),导致无法正常导入。需要修改php,nginx的配置文件

php.ini配置

post_max_size = 500M
upload_max_filesize = 500M

 

nginx.conf 配置

server_name www.bt.cn;
        index index.html index.htm index.php;
        root  /www/server/phpmyadmin;
        client_max_body_size 500M;    // 加入此项

 

相关文章:

  • 2022-12-23
  • 2021-09-07
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
  • 2021-09-10
  • 2021-11-20
  • 2022-12-23
猜你喜欢
  • 2021-09-19
  • 2022-12-23
  • 2022-12-23
  • 2021-10-10
  • 2021-06-04
  • 2022-01-07
  • 2022-12-23
相关资源
相似解决方案