Skip to content
Advertisement

Tag: mkdir

PHP mkdir():Permission denied

I have a simple PHP/HTML/CSS app that creates a folder for newly registered users. It worked great on my test site, and not that I am ready to “go live” I get the “mkdir(): Permission denied” error. As far as I know, all settings are the same on both sites and the file permission for the root and uploads folder

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

Mkdir do not create folder and no Errors shown. (PHP) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 7 years ago. Improve this question I need some help with mkdir in my .php file. It’s not creating the directory. I’m currently running Centos 6.6

php mkdir() chmod and permissions

i was using this basic script: i create this directory and then upload photos to it. I’ve been doing this for a good 4-5 months now and suddenly i start getting ‘FORBIDDEN’ errors when I attempt to view the contents of the folder via web browser The directory is being created the same and the photos are still uploading without

Advertisement