I got a problem when try to get a helper:
Mage::helper('providers')
In fact, the provider helper is not exist.
But it just out an exception and save it into the file: var/log/exception.log and everything is ok, except I could not see the interface which I want.
I need a way to do if I got any exception, Magento will exit immediately and show the messages on the browser.
Turn on developer mode, and make sure PHP is showing errors.
Open up
index.phpand change thisTo this
With developer mode on Exceptions will halt execution instead of being logged.
Also, you could skip comment the if block out by adding the apache environmental variable to
MAGE_IS_DEVELOPER_MODEto your.htaccessfile and setting it to 1.