I'm trying to get the Session Upload Progress feature ( http://php.net/manual/en/session.upload-progress.php ) to work in Kohana. I have managed to get it working locally without Kohana using the following code:
<?php
session_start();
if (isset($_GET['progress']))
{
// does key exist
$key = ini_get("session.upload_progress.prefix") . 'demo';
if ( !isset( $_SESSION[$key] ) ) exit( "uploading..." );
// workout percentage
$upload_progress = $_SESSION[$key];
$progress = round( ($upload_progress['bytes_processed'] / $upload_progress['content_length']) * 100, 2 );
exit( "Upload progress: $progress%" );
}
?>
<!doctype html>
<head>
</head>
<body>
<section>
<h1>Upload Form</h1>
<form action="" method="POST" enctype="multipart/form-data" target="upload-frame">
<input type="hidden" name="<?php echo ini_get("session.upload_progress.name"); ?>" value="<?php //echo $uid; ?>demo">
<p>
<label>File:</label>
<input type="file" name="file" required="required">
</p>
<p><input type="submit" name="submit" value="Upload"></p>
</form>
<iframe id="upload-frame" name="upload-frame" width="1280" height="600"></iframe>
<div id="file_upload_progress"></div>
</section>
<script src="jquery-1.7.1.min.js"></script>
<script>
$(document).ready(function() {
var uploading = false;
$('form').submit(function() {
uploading = true;
$('#upload-frame').one('load', function(){
uploading = false;
});
function update_file_upload_progress() {
$.get("?progress", function(data) {
$("#file_upload_progress").html(data);
if (uploading) {
setTimeout( update_file_upload_progress, 500 );
}
})
.error(function(jqXHR, error) {
alert(error);
});
}
// first call
update_file_upload_progress();
});
});
</script>
</body>
</html>
However when I use this code in Kohana (separating the PHP into a controller of course) the $_SESSION
variable does not get created for tracking the progress of the upload.
I believe this is something to do with how sessions in Kohana work. I cannot have session_start()
at the start of the script as it conflicts with the Kohana session that's already running. If I dump out the $_SESSION
or Session::instance()
contents the variable that should be added by the PHP Upload Progress functionality isn't there.
So how do I get the session variable to work with Kohana?
UPDATE
I have since created a clean install of Kohana to help narrow down on this issue. I have found that by not instantiating the Session
class in Kohana that I can use the code above and it works fine.
However when the Session
class is instantiated which it needs to be for my web application it stops working and the $_SESSION
variable containing upload progress is no longer created. This leads me to believe that the issue lies somewhere within how Kohana manages session information. I tried turning off the encryption with config settings but that didn't make a difference.
I'm using native session.