But doesn't
$_SERVER['DOCUMENT_ROOT']
point to the directory of MyRunningScript.php not the web server itself? If so then:
$_SERVER['DOCUMENT_ROOT'] . '/Include/StuffToInclude/file_name.php';
would point to a nonexistent directory Up from where MyRunningScript.php is located.
the second example:
include '../Include/StuffToInclude/file_name.php';
would work but only until I moved the original script to another level in the directory structure.
Third example looks like it has the same problem as the first.
I must be missing something basic here. I need an absolute path to the Include directory not a relative one. Is such a thing possible?