line 54
if (strpos( php_uname(), "indows" ) === FALSE)
Typo should be :
if (strpos( php_uname(), "windows" ) === FALSE)
error :
unable to install on windows because cannot find cache dir
both typos should result in TRUE on windows systems. but the real problem is, to identify the temp directory.
Has anybody an idea, how to figure out temp directory?
Log in to post a comment.
line 54
if (strpos( php_uname(), "indows" ) === FALSE)
Typo should be :
if (strpos( php_uname(), "windows" ) === FALSE)
error :
unable to install on windows because cannot find cache dir
both typos should result in TRUE on windows systems. but the real problem is, to identify the temp directory.
Has anybody an idea, how to figure out temp directory?