doujia1163 2011-03-23 16:47
浏览 89
已采纳

使用lighttpd中的APC上传PHP

I'm using APC to make a upload meter. These are the files:

The problem I'm having is I'm getting nothing when I do the FETCH. I'm taking a look at the APC INFO panel as I'm making the upload and I see that the key upload_XXXXX isn't stored in the cache until the file is completely uploaded!

What am I doing wrong? Do I have something badly configured in php.ini?

I've read here that there's a bug having to do with lightppd.

  • 写回答

2条回答 默认 最新

  • dongshuang0011 2011-03-23 19:36
    关注

    As discussed in the comments, APC's file upload progress indicator is either unreliable or not functional under FastCGI.

    Your best bet for a upload progress indicator is therefore going to be client-side.

    I'm a big fan of Plupload, an upload widget that supports no less than six backends to provide better functionality than the regular file input type (including the HTML5 File interface in browsers that support it). You can use it standalone with a custom widget of your own design, or you can use the included fancy jQuery widget.

    If you want something a little more oldschool, there's also good old SWFUpload.

    Both of these options will fall back to a normal file input when Javascript is disabled.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?