I'm working on my first Zend Framework site and am having a problem with Zend_Tool not properly creating actions and their corresponding views.

At the CLI, I type 'zf create action (action) (Controller)'.

The action is added as expected. However, the corresponding view script is not created.

Zend_Tool's CLI reports the following: "An error has occurred. Could not create action within test controller."

It would appear that once it encounters this unrelated error, Zend_Tool doesn't attempt to create the view.

I haven't configured anything related to testing yet, and to my knowledge, I haven't changed any default settings that would be causing this default behavior of creating/modifying a test controller.

I realize I could create the view script manually or separately via Zend_Tool, but as a newbie I'd really rather not start going off the script so soon for something so basic.

Does anyone know why Zend_Tool isn't creating the view script to go with my actions?

Here's what I'm running: XAMPP 1.7.4, Zend Framework 1.11.9, PHP 5.3.5, Apache 2.2.17

link|improve this question

67% accept rate
I used to create action via the zf tool. But I am not having any issues( But I am from *nix). And one more thing is the view has nothing other than some dummy content. So you can just go and add corresponding phtml. If you are still sure its not an issue with you, then you may want to file a bug or look if there is already one reported. – Hari K T Aug 28 '11 at 7:21
1  
Your error messages about the test controller will go away when you install php unit github.com/sebastianbergmann/phpunit/#readme I had this problem too and this helped me. – Raffael Luthiger Aug 28 '11 at 10:21
Thanks Raffael - your link and guidance did the trick. View scripts are now being created successfully. Much obliged - hoping this will help others with the same problem as well. – cantera25 Aug 28 '11 at 23:03
feedback

1 Answer

Obviously, the script halts when it tries to add the action to the respective test controller in the test folder. Does your test folder exist? What about the test controller?

link|improve this answer
Thanks Markus - as Raffael mentioned above, I hadn't properly installed PHPUnit. As you explained, the script was halting rather than skipping ahead to view-script creation. Many thanks. – cantera25 Aug 28 '11 at 23:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.