upload.php moves temp file to data/uploads then parse it. but does not unlink. so temp file remains on uploads directory.
to fix.
+ chmod($filename, 0666);
$data = lua_parse( $filename );
+ unlink($filename);
Log in to post a comment.