I am trying to get a form working, but keep getting an error similar to:
*** EXCEPTION CAUGHT BY FACILEFORMS *** PHP error level : E_WARNING PHP filename : /public_html/*****/plugins/system/zend/Zend/Loader.php PHP linenumber : 146 Error message : include_once(Zend/Json/Exceptions.php) [function.include-once]: failed to open stream: No such file or directory
This exception is a warning for coding standards in PHP. Though we try to eleminate those errors, it may happen that error like this still occur in some situatiions.
If you face an error like this, please report it in our forums and we will fix this qucikly.
Those fixes will take a few days to be integrated to the Breezingforms package. In the meantime those errors can be safely disabled in your php.ini file. Please change the error reporting in the php.ini to:
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED
The actual value in your php.ini should be used only for sites in development and not for production sites.