I am running Fedore Core 6 and recently I upgraded PHP and Pear. Before the upgrade, include_path was not used and most of my scripts used relative paths. After the upgrade, I am getting 'file not found' errors in my error_log and blank pages on my sites for all my scripts that have require("relative/path/to/file"). include_path is still not set in /etc/php.ini but phpinfo() shows include_path=".:/usr/share/pear". Two solutions I've found are to change my require statements to require("/absolute/path/to/file") or append /path/to/working/dir to include_path. Both of these solutions are time consuming bcos I have a couple hundred scripts and they do not all reside in the same directory. I don't which file is setting include_path and I would very muc like to disable it. Any help will be greatly appreciated. Thanks.