Topic: IO error. Error #2038 (Flash not working)
Hi
I am using plupload (v 1.4.3.2) and set it up a few weeks ago and everything worked. I have not touched it since then.
Now it does not work. The file gets to 100% then I get this great descriptive error
IO error. Error #2038
var renderImportForm = $(selectors.uploader).livequery(function ()
{
var uploader = $(this).plupload({
// General settings
runtimes: 'html5,silverlight,flash',
url: urls.importCalendarsURL,
max_file_size: '5mb',
max_file_count: 10, // user can add no more then 10 files at a time
unique_names: true,
multiple_queues: true,
// Resize images on clientside if we can
resize: { width: 320, height: 240, quality: 90 },
// Rename files by clicking on their titles
rename: true,
// Sort files
sortable: true,
// Specify what files to browse for
filters: [
{ title: "iCalendar", extensions: "ics" }
],
// Flash settings
flash_swf_url: my.uploaderSettings.flash,
// Silverlight settings
silverlight_xap_url: my.uploaderSettings.silverLight,
init:
{
UploadComplete: function (up, file, info)
{
alert('hi');
}
}
});The above code works.
If I flip it around to what it was originally(what was set a few weeks ago)
runtimes: 'flash,html5,silverlight,'
it does not work. So this leads me to believe it is a problem with flash as html 5 works.
silverlight does not work as well different problem though. It won't launch a dialog box when you click "add files".
No javascript errors come up in firebug.
Last edited by chobo2 (2011-07-05 01:00:59)