I am trying to install PHPUnit and am having trouble getting it to work.
At the moment this seems to be a path issue, but I cannot seem to crack it.
I am running Zend Server so PHPUnit.bat is at
C:\program files (x86)\zend\zendServer\bin\PEAR
I have the following path specicied as part of my Windows environment (Vista)
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared\;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Zend\MySQL51\bin;C:\Program Files (x86)\Zend\ZendServer\bin;C:\Program Files (x86)\Zend\ZendServer\share\ZendFramework\bin; C:\Program Files (x86)\Zend\ZendServer\bin\PEAR;c:\program files (x86)\zend\zenserver\bin\PEAR\pear
My php.ini now reads
.;C:\Program Files (x86)\Zend\ZendServer\share\ZendFramework\library;C:\zendProgram\rental\public\phpDocumumentor-2.0.0a10\bin;C:\Program Files (x86)\Zend\ZendServer\bin\PEAR;c;\program files (x86)\zend\zendSever\bin\PEAR\pear
However when I type in phpunit in the bin/pear directory I get the following warning
[16.11.2012 19:59:54 SYSTEM] Zend Monitor UI is disabled in CLI/CGI run...
PHP Warning: require_once(file/iterator/autoload.php):failed to open stream:no such file or directory in C\program files (x86)\zend\zendServer\bin\pear\pear\PHPUnit\AutoLoad.php on line 45.
The file/iterator/autoload.php is in the bin/pear directory.
Any advice on how I fix this would be much appreciated. I always seem to spend a long time trying to add new packages.
As a final point I cannot call phpunit in the CLI anywhere accept in the directory, which leads me to believe that I a path issue.
UPDATE
I have shifted the ZendServer out of the program files path as suggested by Markus. I have managed to download PHPUnit through PEAR, but cannot get 'PHPUnit' command to work on the command line. I think this is a different issue as the indications are that the download was a success, so will start a different post.
To help other's facing the same problem I found the following link useful. I think part of my problem with the warnings above related to a dependency that had not downloaded:
c:/zend. This problem might have multiple causes but it's my general experience that all kinds of problems can be avoided by installing into paths without spaces and special chars. – markus Nov 17 '12 at 1:58bin/PEARandbin/PEAR/pear--where one folder is inside another--in your include path. Also, is the last path in yourphp.iniinclude path a typo made while posting the question? It has a semicolon;after the drive instead of a colon:--c;\program files (x86)\zend\zendSever\bin\PEAR\pear– David Harkness Nov 17 '12 at 16:32