“访问冲突”上传文件时出现错误消息
我在内容类型中使用 CCK FileField(和 CCK VideoField)。
当我上传大视频(假设.. 18MB)时,我收到“访问冲突”错误消息(上传几分钟后)。 (我猜访问冲突是服务器消息..或PHP错误消息..
我的PHP Post最大大小是100M,所以我想这不是问题。
可能是什么原因? 是文件权限问题吗?所有文件上的值都应为 777。
谢谢
I'm using CCK FileField (and CCK VideoField) in my content-type.
I get 'Access violation' error message (after several minutes uploading) when I upload big videos (let's say.. 18MB). (The Access violation is a server message I guess.. or PHP error message..
My PHP Post max size is 100M so I guess this is not the issue.
What could be the reason ?
Is a file permissions issues ? They should be 777 on all files.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您检查过 php.ini 中的
max_execution_time
和max_input_time
吗?可能是您的连接/脚本在上传所有数据之前超时。Have you checked
max_execution_time
andmax_input_time
, in php.ini? It could be that your connection/script times out before you have uploaded all your data.