vote up 0 vote down star

I recently installed phpunit on my server via the pear installer.

When I go to run a test I get the following error:

PHP Warning:  require_once(PHPUnit/Util/Filter.php): failed to open stream: No such file or directory in /usr/bin/phpunit on line 44

PHP Fatal error:  require_once(): Failed opening required 'PHPUnit/Util/Filter.php' (include_path='.:/usr/bin/php') in /usr/bin/phpunit on line 44

After doing some searching, I tried making some modifications to the include_path in my php.ini file on the server. But that hasn't done a thing.

Any idea what might be causing this?

flag

3 Answers

vote up 0 vote down

(include_path='.:/usr/bin/php')

Are you sure you added it to the include_path?

It might also help if we saw your ini file, and the include_path snippet in it...

link|flag
Yeah, I've tried that path and several others. The comments here are limited to 600 characters so I'm not sure how I would show you my ini file. include_path = " .:/usr/bin/php" – mrtopher Oct 7 at 0:39
/usr/bin is where executables live, not libraries. – Alister Bulman Oct 21 at 11:54
vote up 1 vote down

If it is the first time you are using PEAR, perhaps you have not configured the include path right. Take a look at the appropriate section in the PEAR manual.

link|flag
vote up -1 vote down

I found it!

Looks like PEAR installed PHPUnit in /usr/share/pear. Not sure why but that's where it is. Must be a (mt) thing.

Anyway, I'm all set. Thanks for the help.

link|flag

Your Answer

Get an OpenID
or

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