Codeigniter と APC でプログレス バーを作ろうとしています。
ここに私のフォームがあります:
<form method="post" action="" id="upload_file" enctype="multipart/form-data" target="result_frame">
<input type="hidden" value="<?php echo uniqid(); ?>" id="progress_key" name="APC_UPLOAD_PROGRESS" />
<p><label for="userfile">Séléctionnez un fichier</label><br />
<input type="file" name="userfile" id="userfile" size="20" />
<button class="btn btn-primary" type="submit" name="submit" id="submit" value="Submit"><span class="icon-upload"></span> Valider</button></p>
ユーザーが送信ボタンを押すと、アップロード プロセスが開始されます。これが私の「チェックプログレス」機能です:
function checkProgress() {
$.ajax({
type: "POST",
url: "/fbe_upload/index.php/fbeupload/upload_progress",
async: true,
dataType: "json",
data: {
session_unid: $('#progress_key').val()
},
//Success
success: function(data) {
//Progress
liveProgress = data.progress;
//Progress bar
$('#progressBar-' + idRow).attr("class", "progress progress-striped active");
$('#progressBar-' + idRow + " div.bar").css("width", parseInt(liveProgress) + "%");
$('#td-pc-' + idRow).html(parseInt(liveProgress) + "% téléchargés");
//END success
},
//Error
error: function() {
//Erreur
alert("Error.");
}
//Ajax END
});
//Progress < 100
if (liveProgress < 100) {
//Call function again
setTimeout(checkProgress, 800);
}
//Else
else if (liveProgress === 100) {
//Progress bar
$('#progressBar-' + idRow).attr("class", "progress progress-striped active");
$('#progressBar-' + idRow + " div.bar").css("width", "100%");
$('#td-pc-' + idRow).html("100% téléchargés");
//Message
$('#td-filename-' + idRow).html("<i>Finalisation en cours...</i>");
//This function manage the end of the upload process (message, buttons,...)
setTimeout(endUpload, 4800);
//Else END
}
else {
setTimeout(checkProgress, 1200);
}
//checkProgress END
}
そして、ここに私のPHPファイルがあります:
function upload_progress() {
//Key
$key = 'upload_' . $_POST['session_unid'];
$status = apc_fetch($key);
//Progress
$cal = ceil($status['current'] / $status['total'] * 100);
echo json_encode(array('progress' => $cal));
}
したがって、ユーザーが「送信」をクリックすると、ファイルがアップロードされ (これを使用してアップロード関数を記述しました)、関数 checkProgress が 1.5 秒後に呼び出されます。
Firefox では、すべて正常に動作します。適切な値が得られ、プログレス バーは希望どおりに動作します。IE と Chrome では、正しく動作しません。「進行状況」の値に対して、IE は常に 420 と Chrome 410 を返します。つまり、アップロード プロセスがすでに終了しているように見えますが、そうではありません。ちなみに、これらの値はファイルのサイズなどには対応していません。他のブラウザではなく、Firefox が正しい値を計算して返す可能性があることを理解できません。
ファイアフォックスで:
Array
(
[total] => 791309142
[current] => 113631842
[filename] => up.rar
[name] => userfile
[done] => 0
[start_time] => 1370864635.9486
)
クローム:
Array
(
[total] => 410
[current] => 410
[rate] => 22777015.099338
[filename] =>
[name] => userfile
[cancel_upload] => 4
[done] => 1
[start_time] => 1370864408.3726
)
私のphp.iniにはこれがあります:
extension=php_apc.dll
[APC]
apc.enabled = 1
apc.max_file_size = 5000M
apc.rfc1867 = On
apc.mmap_file_mask = C:\wamp\tmp\file_template_%s.tmp
apc.shm_segments = 1
apc.shm_size = 64M
apc.stat=1
誰か提案がありますか?それは非常に高く評価されます。ありがとう!