Skip to content
Advertisement

Tag: file-permissions

PHP: “failed to open stream: Permission denied”

I am getting some interesting results on my server when i try to access any Directory or File via some Function.I have set all my file & directory permissions to 777 and have changed the content owner to Apache but i still get error messages.Code: move_uploaded_file($_FILES[‘file’][‘tmp_name’], ‘/var/www/html/fileContent_Site/userData/’.$_SESSION[‘username’].DIRECTORY_SEPARATOR.$_FILES[‘file’][‘name’]); Or file_put_contents(‘userData/userData.txt’, $result,FILE_APPEND); mkdir(“userData/”.$register[‘username’]); For ‘move_uploaded_file()’ i get: move_uploaded_file(/var/www/php/Site/userData/radi/110729.png):failed to open stream: Permission

Advertisement