简体   繁体   中英

ZEND framework2 new module blank page

i'm a beginner with zend framework2, i followed two tutorial on how to build module, followed instruction step by step, but when finished i have a blank page on my browser!! one of my tutorials is:Zend Framework 2.0 by Example(creating user module) what should that according to??

'Module (Users) could not be initialized.'

As you mentioned in your comment it could be the problem of missing module(Users) name in application.config.php which is located under config folder.

return array (
 'modules' => array(
    'Application', 'Users' //<== mentioned your module name here
  ),
  ....
);

--SJ

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM