Hi,
Yes. My include_path in php.ini, for example, is as follows:
include_path = "/usr/local/apache/php"
This is on a Linux box; if you're on Windows (boo, hiss), adjust to fit your environment (C:\whatever\whatever) etc. or something like that ...
The include path specifies the directory that your include files are in. After setting it, restart Apache (./apachectl restart) to reload PHP as a module and force it to recheck its initialization config.
Note:
Don't put a trailing / on the include path directory.
Also:
You can also set the include path in httpd.conf, as follows:
php_value include_path /usr/local/apache/php
Good luck!
-john