views:

69

answers:

2

Hai, After inclunde the library in php.ini .I try to create a project in dos window by typing like C:\wamp\www\Zend\bin>zf.bat create project quickstart i got a error message:" '"php.exe"' is not recognized as an internal or external command, operable program or batch file." this is the error message please help me??how it was occured and a solution

+1  A: 

Make sure that your php.exe is in your path variable.

Stefan Gehrig
A: 

as said before:

Make sure that your php.exe is in your path variable.

Or edit that bat file to use absolute path to the php.exe on your system, and make sure you have php.exe in your system.

Besides, PHP should be developed as part of a LAMP stack and not Wamp in cases of big projects (otherwise, why use ZF?)

Itay Moav