my code works fine if I remove the leading dots on file names, but breaks otherwise.
[edit]
The file starts with a dot (period) character
[end edit]
require_once('.htMyClass.inc.php'); //fails
require_once('htMyClass.inc.php'); //works
I wanted to keep the dots for security -- the leading ht is just a hold over from apache. i don't expect that to do anything special on windows.