问题是 php 5.4 的上传进度功能似乎不起作用。无论我做什么,都不会填充会话变量。
- session.upload-progress 变量被填充和设置。
- 文件上传已启用
- upload_max_filesize 设置为 2000M
- post_max_size 设置为 2000M
- upload_tmp_dir 可写
- 表单中的隐藏变量被设置,它在任何输入元素之前,它的名称是:
ini_get("session.upload_progress.name")
到目前为止,在 Debian 挤压下使用 dotdeb php 5.4.14 和使用 php5 模块的 apache2 没有成功。
我还检查了 apc rfc1867 钩子。就是行不通。与上传进度扩展相同。有任何想法吗?
使用的例子
对于上传进度: http ://www.ultramegatech.com/2010/10/create-an-upload-progress-bar-with-php-and-jquery/
对于 apc: http ://blog.famillecollet.com/post/2011/01/12/File-upload-progress-in-PHP-with-APC
对于 php 5.4: https ://github.com/chemicaloliver/PHP-5.4-Upload-Progress-Example
php 5.4 内联(上传开始后,只需从另一个选项卡调用相同的文件......):
上传.php:
<?
session_start();
var_dump($_SESSION[ ini_get("session.upload_progress.name") . "123"]);
?>
<form action="upload.php" method="POST" enctype="multipart/form-data">
<input type="hidden" name="<?php echo ini_get("session.upload_progress.name"); ?>" value="123" />
<input type="file" name="file1" />
<input type="file" name="file2" />
<input type="submit" />
</form>