出错了! (warning!)
fseek(): Argument #1 ($stream) must be of type resource, bool given
系统错误
function/file.function.php[138] fseek()
function/file.function.php[138]
[Windows NT 10.0/8.2.4/mysqli/1.44.07]
主要是由于服务器限制了上传大小,或超时时间太短引起; 推荐如下配置:
client_max_body_size 50M;
client_header_timeout 3600s;
client_body_timeout 3600s;
fastcgi_connect_timeout 3600s;
fastcgi_send_timeout 3600s;
fastcgi_read_timeout 3600s;
# 其他webserver相应修改类似限制;如apache需要修改LimitRequestBody
# 修改完成重启nginx生效: service nginx reload
post_max_size = 500M;
upload_max_filesize = 500M;
memory_limit = 500M;
max_execution_time = 3600;
max_input_time = 3600;
# 对应 php-fpm.conf也需要修改
request_terminate_timeout 3600