I've started working on a Joomla! project (I'm mainly a C#/ASP.NET kind a guy). I'm using BreezingForms and have created forms, got them working, but now I need to do some additional code in the "Finalize Code" section.
I need to access form elements via BreezingForms(FacileForms) API. Here's what I'm doing, but it chokes:
// load the standard Facile Forms library
$this->execPieceByName('ff_InitLib'); // page breaks here.
// get the name of the uploaded file
$filename = ff_getSubmit('someUploadedFile');
Now I don't know what goes wrong. The page posts back blank. I'm not sure how to debug this in Joomla. I currently do not have access to the server to debug, so I would need to debug remotely at runtime (not ideal I know). My account is of type Administrator for the Joomla backend.
As far as I know all the plugins/modules are installed.
Any ideas?