即使提高 php 限制后,WordPress 上传文件大小仍然错误

即使提高 php 限制后,WordPress 上传文件大小仍然错误

当我尝试上传一个只有 5.1MB 的插件时,我收到“上传的文件超出了 php.ini 中的 uploadmaxfilesize 指令”错误。我已在 php.ini 文件中以及通过 webmin 提高了限制。

这是我的 php.ini 文件

max_input_time = 24000
max_execution_time = 24000
upload_max_filesize = 12000M
post_max_size = 24000M
memory_limit = 12000M

这是我的 nginx.conf 文件。我还增加了 server 和 http 下的 clientmaxbody_size。

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
worker_connections 1024;
}

http {
client_max_body_size 24000M;
log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

access_log  /var/log/nginx/access.log  main;
.........
server_names_hash_bucket_size 128;
server {
    client_max_body_size 24000M;
    server_name mydomain.com www.mydomain.com;
 .....

相关内容