When starting the application into index.php.
$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH . '/configs/application.ini'
);
Is there any way to use more than one “.ini” file within the initialization and also not doing any bootstrap action?
I inserted this code in my index.php and it seems to work.