Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I have in _initAutoload in boostrap file</p> <pre><code>$modelLoader = new Zend_Application_Module_Autoloader ( array ( 'namespace' =&gt; '', 'basePath' =&gt; APPLICATION_PATH . '/modules/default' ) ); </code></pre> <p>and in application.ini</p> <pre><code>resources.frontController.moduleDirectory = APPLICATION_PATH "/modules" resources.modules = '' resources.frontController.params.displayExceptions = 1 </code></pre> <p>and it works fine for me. It seems that your module configuration was not correct. However I created m zf project using cli tool which does all the configuration.</p> <hr> <p>Actually the <code>suppressNotFoundWarnings(false)</code> solved it for me when I had that problem. However I found a possible dublicates <a href="https://stackoverflow.com/questions/1201709/disply-php-errors-when-using-zend-framework">Display php errors when using Zend framework</a> and <a href="https://stackoverflow.com/questions/2753109/how-do-i-display-exception-errors-thrown-by-zend-framework">How do I display exception errors thrown by Zend framework</a> and <a href="https://stackoverflow.com/questions/3941860/zend-framework-not-all-errors-are-shown">Zend Framework - not all errors are shown</a></p> <p>Good luck!</p> <hr> <p>This may solve your problem. In your application boostrap file in the _initAutoload function add following statement</p> <pre><code>Zend_Loader_Autoloader::getInstance()-&gt;suppressNotFoundWarnings(false); </code></pre> <p>when in development mode as then the new autoloader will actually tell you what the syntax error is rather than showing you a white page.</p> <hr> <p>Maybe you are missing more information in your application.ini file. In my application.ini I have</p> <pre><code>[testing : production] phpSettings.display_startup_errors = 1 phpSettings.display_errors = 1 [development : production] phpSettings.display_startup_errors = 1 phpSettings.display_errors = 1 resources.frontController.params.displayExceptions = 1 </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload