upload image problem
have an old instalation tiki wiki 1.9.10 which works fine for more than 7 years 😊
but now i have an upload problem.
when i look into the tiki-upload_image.php i see the loop 3 to 8 for the image files.
to see what happens i added this:
$smarty->assign('msg', 'XXX:'.$_FILES'userfile3''tmp_name'. ' === '.filesize($_FILES'userfile3''tmp_name'));
$smarty->display("error.tpl");
die;
the output is this:
XXX:/.vsvar/tmp/phpqMrVTV === 0
so the file size is 0 which is not what i want. but interesting is the tmp_name
/.vsvar/tmp/phpqMrVTV
which i did not expect. can this be a correct upload dir?
and where is this upload dir created?
thanks