I can not find a good example/explanation on how to traverse directories in a PHP script.
I have to call a class from a directory that is a great-great-great...great-great grandparent of the current file.
Since the directory of the file I cam calling is closer to the root than the current php script, I just want to say "c:\folder\script.php".
when I use require_once (dirname('c:/folder/').'script.php'); I get config errors.
This is on IIS. Is the slash direction a factor?

../../../script.php? – Barmar Feb 27 at 19:43dirname()call in there - also, what config errors are you getting? – Sam Dufel Feb 27 at 19:46