With the cli (php v4.3.4) and the windir/systemdir in enivronment everything seems to be working as it should.
How to add windir and systemdir to environment, iotrial:
"
$windir="c:\\windows\\";
putenv("WINDIR=".$windir);
putenv("SYSTEMROOT=".$windir);
"
|