Login
Please enter your email address and password to login to the help desk.
(leave blank if you forgot your password)
   Save my login information
 

IMPORTANT NOTE:

DUE TO STUCTURAL CHANGES, THE TICKET SYSTEM IS NO LONGER ACCEPTING TICKETS. IF YOU ARE A PAYING SUBSCRIBER, PLEASE LOGIN TO THE CROSSTEC SITE AND USE THE CLUB FORUMS. THE CLUB FORUMS CATEGORY WILL APPEAR RIGHT AFTER LOGIN IF YOU ARE A PAYING CUSTOMER:

>>> Click here to access the forums <<<

We will close the knowledgebase soon as well and move its contents into a new knowledgebase system.

Knowledge Base » BreezingForms » FAQ
Trace Dump / Exception Caught

 

I just upgraded my version of BreezingForms and when I try to open a form, I am getting  an "Exception Caught" error in a Trace Dump popup form. How do I fix it?


This should only be an issue in Build 729 and lower.

Open your /com_breezingforms_*VERSION*_UNZIP_FIRST/facileforms.js file.

Look for this code:

function ff_traceWindow()
{
   var dwin = window.open(
      'http://localhost:8888/452/components/com_facileforms/index.html',
      'TraceDumpWindow',
      'dependent,status,scrollbars,resizable,left=50,width=700'
   );
   dwin.document.write(
      '\n'+
      ''+
      '\n'+
      '\n'+
      '\n'+
      '
FacileForms Trace Dump
\n'
   );
   dwin.document.write(ff_processor.traceBuffer);
   dwin.document.write(
      '

\n'+
      '\n'+
      '\n'
   );
   dwin.document.close();
} // ff_traceWindow


and replace it with:

function ff_traceWindow()
{
}


Then save the file and upload the corrected file to your server. That should correct it.

 

Was this helpful? Yes No Print Pdf