Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

move_uploaded_file failed to open stream: Permission denied - Mac

While i am trying to move_uploaded_file in php with following code :

if(is_uploaded_file($_FILES['fileupload2']['tmp_name'])){

        move_uploaded_file($_FILES['fileupload2']['tmp_name'], "images/".$_FILES['fileupload2']['name']);

    }

I've got this error saying:

Warning: move_uploaded_file(images/VIDEO_TS.VOB): failed to open stream: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/Week3/Lesson2/do_upload.php on line 24

i tried in the terminal and didn't work:

sudo CHMOD 775 /Applications/XAMPP/xamppfiles/htdocs/Week3/Lesson2/do_upload.php 

sudo chmod -R 0755 /Applications/XAMPP/xamppfiles/htdocs/Week3/Lesson2/do_upload.php 

sudo chown nobody /Applications/XAMPP/xamppfiles/htdocs/Week3/Lesson2/do_upload.php 

I am still getting the error and i am using Yosemite, any other solution ?

like image 536
AaoIi Avatar asked Aug 10 '15 09:08

AaoIi


2 Answers

My solution was to give the permission for the images folder and the php file, by going to the file > Right click > Get info > and then change all the permissions to read&write as the following picture.

enter image description here

like image 136
AaoIi Avatar answered Oct 10 '22 04:10

AaoIi


I am using ubuntu and once I have encounter this problem, I have solved this problem by changing all the access permissions of the folder in which I want to move the files to 'create and delete files'. See below screenshot:

enter image description here

like image 37
Rajat Yadav Avatar answered Oct 10 '22 06:10

Rajat Yadav