首页 > 建站教程 > PHP教程 >  Argument 2 passed to think\\filesystem\\Driver::putFile() must be an instance of think\\File正文

Argument 2 passed to think\\filesystem\\Driver::putFile() must be an instance of think\\File

我爱模板网在使用ThinkPHP6.0上传视频时,小视频文件可以正常上传,但是稍微大一点的文件上传就会报下面的错:

Argument 2 passed to think\\filesystem\\Driver::putFile() must be an instance of think\\File, null given


这是因为上传大小被限制了,修改配置文件php.ini,两处都要改:

# post_max_size = 8M
post_max_size = 50M

# upload_max_filesize = 2M
upload_max_filesize = 50M