Hello friends,
I’m really sorry if this isn’t the right place but I’m in a pickle. I’m just an admin assistant, we’ve lost the majority of our IT department, and I’m new to my position. We use AjaXplorer and I’m trying to upload new photos but everytime I try to upload I get this error. Nobody has made any changes so we’re not sure where this error is coming from.
My Windows is in Spanish so the errors are too.
// GET VALUE FROM FILE OBJECT
var label = file.fileName;
var maxLength = 63;
if(label.length > maxLength){
label = label.substr(0,20) + '[...]' + label.substr(label.length-(maxLength-20), label.length);
}
var item = new Element( 'div' );