I read that to create a project, execute the zf Windows windows command (zf.bat):

C:\>zf.bat create project newproject

I saw zf.bat in my C:\wamp\www\Zend\bin, I want to create a new project in c:\wamp\www

When I tried to run c:\wamp\www\zf.bat, I got an error message:

"zf.bat is not internal or external command, operable program or batch file.."

Then I tried another method:

c:\wamp\zend\bin\>zf.bat create project newproject

But I got the following error message:

"php is not recognised internal or external command,oprable program or batch file"

I put the Zend Framework in c:\wamp/Zend and I added C:\wamp\zend\library in to my php.ini.

Please help me troubleshoot this problem. Thanks!

link|improve this question

5  
You should consider accepting answers to your previously asked question. And why most of your questions are called 'Zend framework doubt'? You should give them better titles. – RaYell Sep 17 '09 at 9:47
Wow If he accepts my answers I would top the score today ;-) – RageZ Sep 17 '09 at 9:50
Seriously, do you ever read the comments that people are posting to your questions ? This is something like the 5rd question today with a non-descriptive title like "Zend farme work doubt" ! ( stackoverflow.com/questions/1436719/zend-framework-doubt ; stackoverflow.com/questions/1436828/zend-farme-work-doubt1 ; stackoverflow.com/questions/1436958/zend-farme-work-doubt2 ; and others, for which titles have been edited) – Pascal MARTIN Sep 17 '09 at 10:38
Agreed - people will vote to close if this spam continues – David Caunt Sep 17 '09 at 14:56
feedback

2 Answers

You need to add php and the zend framework paths to your system environmental variables:

  1. Right click on My Computer and select properties
  2. Go to the advanced tab, and click on Environmental Variables
  3. In the system variables box, scroll till you find the "Path" variable, select it and click the edit button.
  4. Paths are separated using a semicolon ";". Add the path to the zend framework bin folder, and your php bin folder.
  5. Click ok,ok,ok

You should now be able to use the zf command line tool anywhere you need it by typing "zf" to get the help info and to ensure you put the paths in properly.

link|improve this answer
Thanks for this. – Joe Green Nov 24 '11 at 10:14
feedback

Hello you probably need to have php.exe on your path to use zf.bat

try to edit the zf.bat and make sure to use the full path in the script your php.exe is probably located in your wamp directory somewhee

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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