After further research, I have found out that I have downloaded the 7.2.1 version of the DNN platform. A new release has been released in 3.19.2014, which i think my enviroment has updated automatically. I had no problems with uploading files before. This release made the changes to upload file windows which took it from the regular button to drag and drop.
A little more about the error. It occurs when i have dropped the file to the specific area for upload. I get a javascript error, but the visual for the file comes, the progress bar never moves though. it is frozen like that.
Javascript error is here;
Resources\Shared\components\FileUpload\dnn.FileUpload.js
_processResponse: function (fileName, response)
if (result.message)
in the live above result object is null, therefore when trying to get result.message an error occurs. the function is called by
_done: function (e, data) {
this._processResponse(data.files[0].name, data.result);
}
Here data object is defined but data.result is null.
data.result(response) is parsed to json and set to result variable above. since data.result(response) is null, json parse comes back as null.
I have found this much currently, I think this is a general bug rather than something specific to me but i'm not sure. I'll keep posting my findings on the subject as i have found them.
Thanks,
Kaan