Hi Adam,
The Remote URL upload with file servers doesn't work and blocked by browsers for security flaws . It works before but latest browsers blocked the method now.
I try to add CORS like in fileUpload but nothing to change.
Need a fix ASAP.
See the error with the screeshot below :
Regards,
Maverick
The Remote URL upload with file servers doesn't work and blocked by browsers for security flaws . It works before but latest browsers blocked the method now.
I try to add CORS like in fileUpload but nothing to change.
Code:
function startRemoteUrlDownload(index)
{
// show progress
$('#urlUpload .urlFileListingWrapper .processing-button').removeClass('hidden');
// get file list as array
urlList = $('#urlList').val();
urlList = findUrls(urlList);
// create iframe to track progress
var iframe = $('<iframe src="javascript:false;" style="display:none;"></iframe>');
iframe
.prop('src', 'https://fhscript.com/core/page/ajax/url_upload_handler.ajax.php?csaKey1=456b4e4fc45bbc8efd4c9250789b2909a7bd960e89c8e88a607258d7bc22a833&csaKey2=5a37fb3d8f8a9d28bf195dc00c843bdd7825c4cf29ea1a48ae950021364c640d&rowId='+index+'&url=' + encodeURIComponent(urlList[index]) + '&folderId='+fileFolder)
.appendTo(document.body);
}
See the error with the screeshot below :
Regards,
Maverick
Attachments
-
96 KB Views: 35