diff --git a/airtime_mvc/public/index.php b/airtime_mvc/public/index.php index 5a4edab44..6e52ae6f0 100644 --- a/airtime_mvc/public/index.php +++ b/airtime_mvc/public/index.php @@ -24,6 +24,11 @@ set_include_path(APPLICATION_PATH . '/models' . PATH_SEPARATOR . get_include_pat //Controller plugins. set_include_path(APPLICATION_PATH . '/controllers/plugins' . PATH_SEPARATOR . get_include_path()); +//Zend framework +if (file_exists('/usr/share/php/libzend-framework-php')){ + set_include_path('/usr/share/php/libzend-framework-php' . PATH_SEPARATOR . get_include_path()); +} + /** Zend_Application */ require_once 'Zend/Application.php'; diff --git a/install_minimal/include/AirtimeInstall.php b/install_minimal/include/AirtimeInstall.php index 42c17619f..606d74e55 100644 --- a/install_minimal/include/AirtimeInstall.php +++ b/install_minimal/include/AirtimeInstall.php @@ -1,5 +1,9 @@