hi
include path is the path of the director u have installed ur php in
like if u installed php in c:\ winnt -> system32 -> inetsrv
ur include_path will look something like
include_path = "C:\WINNT\system32\inetsrv\php"
hope dis helps .
good luck
toby ..
Your include path is not setup so that the web server can find the file
you are trying to include, if the file is in a sub directory make sure
you are properly including it include_once('include/main.php') not just
include_once('main.php').
And make sure the file you are trying to include exists i