Could not open input file app/console

后端 未结 9 2665
故里飘歌
故里飘歌 2021-02-18 22:54

I installed wamp server and a copy of the Symfony2 framework. I am trying to create a Bundle, using the following command:

php app/console generate:bundle --nam         


        
9条回答
  •  悲&欢浪女
    2021-02-18 23:10

    It is also possible that you have the line :

    //umask(0000);
    

    in your /web file, app_dev.php.

    If after doing :

    php app/console generate:bundle --nampespace=IDP/IDP_Bundle --format=yml
    

    in your project path, you still can not generate your bundle, try uncommenting the unmask line. It worked for me.

提交回复
热议问题