it does not make much use to have server root in include.
index.php or any other page in this dircetory can simple include
any file in this dirctory,with include('file');
include_path = ".;xxxx;yyyyy"
each path is separated with semicolon;
the first is a dot . then xxx then yyyy
The dot stands for same directory as the calling script.
If index.php is in root, the dot means the root directory of server.
If you want to include a file from a subdirectory = '_includes', from your index.php
just use:
include( '_includes/filename.php' );
without a slash in front
this work also for a sub(-child) directory ( dot means current directory ):
include( './_includes/filename.php' );
to include a file from parent directory:
include( '../filename.php' );
all these with a dot, is relative to the calling page
this setting makes more sense:
include_path = ".;C:\Inetpub\vhosts\massvacation.com\httpdocs\htdocs2007Launch_includes"
..when you need only use this in any script in your server tree:
<?php
// will find any file in: C:\Inetpub\vhosts\massvacation.com\httpdocs\htdocs2007Launch\_includes
include( 'filename.php' );
?>