andre1990 Posted January 21, 2012 Share Posted January 21, 2012 Hey, practicing my PHP for the first time, starting with a simple upload script with Xampp. Script: $target = '/Uploads'; $uploadedfile = $target . basename($_FILES['file']['name']); if(move_uploaded_file($_FILES['file']['tmp_name'], $target)){ echo "The file ". basename($_FILES['file']['name'])." has been uploaded."; } else { echo 'Failed'; } error_reporting(E_ALL); It echos out a successful, but the file is nowhere? Uploads is inside htdocs. Checked my php.ini file: file_uploads = On upload_tmp_dir = "C:\xampp\tmp" upload_max_filesize = 128M Just wondering if there are any permission i may have missed? Link to comment https://forums.phpfreaks.com/topic/255469-php-possible-xampp-permissions-error/ Share on other sites More sharing options...
PFMaBiSmAd Posted January 21, 2012 Share Posted January 21, 2012 Look at what you are setting $target to - '/Uploads' The file is in the root of your hard disk with the file name 'Uploads'. Link to comment https://forums.phpfreaks.com/topic/255469-php-possible-xampp-permissions-error/#findComment-1309804 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.