When starting with the release: The /tmp/ dir is not useable for Windows. Try

<?php
if(!empty($_ENV*'TEMP'))
 $tmpdir = $_ENV*'TEMP';
else if(!empty($_ENV*'TMP'))
 $tmpdir = $_ENV*'TMP';
else
 $tmpdir = '/tmp/'

?>

bottom corner