php中的视频文件上传
我对我的 php.ini 文件进行了如下更改:
upload_max_filesize = 60M
post_max_size = 61M
但只上传 KB 文件,而不上传 MB 文件
......
I made changes to my php.ini
file as follows:
upload_max_filesize = 60M
post_max_size = 61M
But only KB files get uploaded, not MB files
......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更改 .ini 文件后,您必须重新启动主机服务器
You Have to restart your host server after changes in .ini file
与其使用兆字节,不如使用 60000
Rathen than using Mega Byte, use 60000
我会将您所需的大小(以 MB 为单位)转换为 KB,看看这是否有效。
I would convert your required size in MB to KB and see if this works.