I have an "upload image" (to AWS) feature on my PHP webpage. When I execute the upload command, the image is correctly uploaded in FireFox and IE, but in Safari and Chrome I get about:blank in the URL bar with an empty browser.
In Opera, I get a JS error: [object Object} TypeError: Cannot convert "data" to object. I've been over this and cannot find where or why I'm getting these issues. My script below - any suggestions will be greatly appreciated.
function ajaxFileUpload()
{
$(".txtarea_message").html('Loading');
//alert("asdf");
/*jQuery('.display-picture').fadeTo(600,0.2);
jQuery('.display-picture2').fadeTo(600,0.2);
jQuery('#ProfileImageUpload-error').slideUp(300);*/
/*jQuery("#image-upload-progress")
.ajaxStart(function(){
//jQuery(this).show();
//$(".txtarea_message").html('Loading');
})
.ajaxComplete(function(){
//jQuery(this).hide();
});*/
$.ajaxFileUpload
(
{
url: '<?php echo Router::url('/videos/ajax_upload_image/'); ?>',
secureuri:false,
fileElementId:'image',
dataType: 'JSON',
success: function (data, status){
//alert(data);
var data = jQuery.parseJSON(data);
//jQuery(data).each(function(key, value){ alert(key + ' -> ' + value); });
//alert(data.msg); return false;
if (data.result === true){
//var url = data.url;
//var urls = url.split('###');
$('#source').val('internal');
$("#embed").val('<div class="embed"><a href="javascript:void(0);"><img alt="" src="' + data.s3file + '" style="max-width: 540px"> </a></div>');
$("#image_url").val(data.s3file);
$(".txtarea_message").html('<img src="' + data.s3file + '" width="120px" height="70px" />');
//alert(data.msg);
}
else if (data.result===false){
$(".txtarea_message").html('<img src="' + data.msg + '" width="120px" height="70px" />');
}
jQuery('#image-uploader-box').html('<input type="file" id="image" name="data[Video][image]" />');//Reset the input box
jQuery("#image").change(function(){
ajaxFileUpload();
});
},
error: function (data, status, e){
//jQuery(data).each(function(key, value){ alert(key + ' -> ' + value); });
alert(data + ' ' + e);
jQuery('#ProfileImageUpload-error').html('Error on upload form: '+e+ ' ').slideDown(300);
}
}
);
return false;
}