This is a Zend Framework - Application.ini question.
On my local dev client my path to princexml inside my controller is:
$prince = new Prince("/usr/local/bin/prince");
On my stage server inside my controller it is:
$prince = new Prince("/usr/bin/prince");
I have both Production, Stage & Development areas in my Application.ini
What is the best way to set the path for princexml in the Application.ini and then call it from my controller correctly?