Drupal:在lighttpd中上传进度条?
所以,每个人都告诉我 Drupal 可以在 lighttpd 上运行,没有任何区别,但是有一个而且很可怕:没有 PECL 进度条。
有什么办法让它工作吗?我需要为我的客户取得进展,他们正在使用 CMS 上传大文件...
谢谢
So, everybody told me that Drupal can run on lighttpd without any difference, but there is one and it is horrible: there is not PECL Progressing Bar.
Is there any way to make it work ? I need a progress for my customer, they are uploading big files using the CMS...
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
APC 为 RFC 1867(上传进度)提供相同的支持,尽管我不确定 Drupal 是否识别它。我建议尝试一下,它肯定不会有什么坏处。 安装 APC 后,将其添加到您的 php.ini 文件中。 ini:
apc.rfc1867=1
希望对您有用!
APC provides the same support for RFC 1867 (the upload progress), although I'm not sure if Drupal recognizes it. I'd recommend giving it a shot, it certainly can't hurt. Once you install APC, add this to your php.ini:
apc.rfc1867=1
Hope that works for you!