let's say you can modify your php.ini:
; UNIX: "/path1:/path2"
;include_path = ".:/php/includes"
;
; Windows: "\path1;\path2"
;include_path = ".;c:\php\includes"
php.net/include
now let's say you can't
you may have to change your code.. setup a config var, like
$CFGroot = '/where/am/i/absolute/';
so you can include files like this
include($CFGroot.'file.php');
sure you cant use relative paths? your structure needs to change?
hope that helps, see what is better for you.