No matter what .jpg I try to upload no matter if it is caps or not it gives that error. I have tried diffrent file names to make sure its not over writing I have chmod the folder to 777 I used mkdir() to make a folder nothing is working. Any ideas?Warning: move_uploaded_file(19_09.JPG): failed to open stream: Permission denied in
Upload Script error!
Moderator: General Moderators
Upload Script error!
I have a PHP Script to upload a image. Well For some reason it gives this error:
Code: Select all
$old = umask(0);
chmod($uploaddir, 0755) or die("Didn't work!");
umask($old);