Loading...
 
Skip to main content

Architecture / Installation


Re: upload image problem

posts: 61

drilling down i see this in the initlib.php:


function tempdir() {
static $tempdir;
if (!$tempdir) {
$tempfile = tempnam(false,'');
$tempdir = dirname($tempfile);
@unlink($tempfile);
}
return $tempdir;
}

could it bee that tempnam is changed??

There are no comments at this time.