Jump to content

PHP (Possible Xampp permissions) error?


andre1990

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.