upload_tmp_dir?

I looked at phpinfo
http://coronadoshores.ca/info.php
and the value is not set, when I called to find out its value they gave me (home/users/web/b2019/moo.shoresrentalscom)

How can I verif6y this (my images dont seem to be uploading)

I tried

<?=ini_get('upload_tmp_dir')?>

but it does nothing…

thanks

According to the output of that phpinfo() there is no default directory for temporary file storage. Try using ini_set() to set a folder to be the default location and give the upload another go

I did this

<?php
ini_set('upload_tmp_dir', '..\uploads');
echo ini_get('upload_tmp_dir');
?>

but nothing is output, shouldnt the new path be echoed?