Foros de discusión

[MinifierUtil:88] JavaScript Minifier failed for

thumbnail
Nirav Prajapati, modificado hace 8 años.

[MinifierUtil:88] JavaScript Minifier failed for

Regular Member Mensajes: 133 Fecha de incorporación: 25/06/15 Mensajes recientes
hello friends
i have stuck up in the error
i dont know wheres the problem but its not working
i am just open the jsp page for add operation and it give me the following error
i am using liferay 6.2 tomcat bundle.

following is the error ...
please help me to solve this.

05:45:05,072 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 228: 15: syntax error
05:45:05,073 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 229: 16: syntax error
05:45:05,074 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 230: 22: syntax error
05:45:05,075 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 231: 19: syntax error
05:45:05,075 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 232: 23: syntax error
05:45:05,076 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 237: 8: syntax error
05:45:05,076 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 241: 16: missing ; before statement
05:45:05,077 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 242: 22: syntax error
05:45:05,078 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 243: 19: syntax error
05:45:05,078 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 244: 23: syntax error
05:45:05,079 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 249: 8: syntax error
05:45:05,079 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 253: 16: missing ; before statement
05:45:05,080 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 254: 22: syntax error
05:45:05,080 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 255: 19: syntax error
05:45:05,081 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 256: 23: syntax error
05:45:05,081 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 261: 8: syntax error
05:45:05,082 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 265: 16: missing ; before statement
05:45:05,082 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 266: 22: syntax error
05:45:05,083 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 267: 19: syntax error
05:45:05,083 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 268: 23: syntax error
05:45:05,084 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 273: 8: syntax error
05:45:05,084 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 282: 30: syntax error
05:45:05,085 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 283: 16: syntax error
05:45:05,085 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 284: 22: syntax error
05:45:05,086 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 285: 19: syntax error
05:45:05,086 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 286: 23: syntax error
05:45:05,087 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 291: 5: syntax error
05:45:05,087 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 296: 2: syntax error
05:45:05,090 ERROR [http-bio-8080-exec-12][MinifierUtil:111] 1: 0: Compilation produced 28 syntax errors.
05:45:05,090 ERROR [http-bio-8080-exec-12][MinifierUtil:88] JavaScript Minifier failed for

// <![CDATA[

var uploadSize=true;
function setUploadSize(fileInput)
{
var size=0;
for(var num1=0;num1<fileInput.files.length;num1++)
{
var file=fileInput.files[num1];
if(file.size>5242880)
{
document.getElementById('_defectmaster_WAR_bugtrackingportlet_copyUpload').focus();
uploadSize=false;
}else{
uploadSize=true;
}
size+=file.size;
}
}
thumbnail
Denis Signoretto, modificado hace 8 años.

RE: [MinifierUtil:88] JavaScript Minifier failed for

Expert Mensajes: 375 Fecha de incorporación: 21/04/09 Mensajes recientes
Hi Nirav,

do you already have tryed disabling minifier ? To accomplish it just add to portal url the following parameters

?js_fast_load=0&amp;css_fast_load=0&amp;strip=0


If disabling minifier solve your problem, check javascript and css included by portal theme or your portlets,
maybe some comment or not allowed/esacped character can generate the issue in the minifier.

If you want to disable the minifier (I don't suggest it) you can set minifier.enabled=false in portal.properties

Regards,
Denis.
thumbnail
Nirav Prajapati, modificado hace 8 años.

RE: [MinifierUtil:88] JavaScript Minifier failed for

Regular Member Mensajes: 133 Fecha de incorporación: 25/06/15 Mensajes recientes
Thank you..!!