Witam
Gdy próbuje w index.php Zend Frameworka wczytać index.php należący do doctrine to wyskakuje mi biała strona Bez żadnego komunikatu błędu.
Oto plik index.php
  1. <?php
  2. error_reporting(E_ALL | E_STRICT);
  3. ini_set('display_errors', 1);
  4.  
  5. /**Konfiguraca scieżek systemu**/
  6. /*
  7. //definicja scieżki jako glownego folderu root
  8. defined('ROOT_PATH')
  9.   || define('ROOT_PATH', realpath(dirname(__FILE__) . '/../'));
  10.   */
  11. // Define path to application directory
  12. defined('APPLICATION_PATH')
  13. || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
  14.  
  15. // Define application environment
  16. defined('APPLICATION_ENV')
  17. || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
  18.  
  19. // Ensure library/ is on include_path
  20. set_include_path(implode(PATH_SEPARATOR, array(
  21. realpath(APPLICATION_PATH . '/../library'),
  22. )));
  23.  
  24.  
  25.  
  26. /** Zend_Application */
  27. require_once 'Zend/Application.php';
  28.  
  29. // Create application, bootstrap, and run
  30. $application = new Zend_Application(
  31. APPLICATION_ENV,
  32. APPLICATION_PATH . '/configs/application.ini'
  33. );
  34.  
  35. // dotąd kod się wykonuje
  36. require_once '../application/doctrine/index.php'; // adres jest dobry (w eclipse wyświetla że jest dobry)
  37. //poniżej kod się nie wykonuje
  38.  
  39.  
  40. $application->bootstrap()
  41. ->run();


Kod się wykonuje do podanego w kodzie miejsca.
Proszę podajcie jakieś przyczyny które mogą to powodować

Pozdrawiam