Hi while testing local this all worked fine but now that it's on server I'm having a problem.
I get the following errors when uploading a file
Warning: move_uploaded_file(../images/kkk.jpg): failed to open stream: Permission denied in /home/northcc/public_html/cmsadmin/imgul.php on line 95
Warning: move_uploaded_file(): Unable to move '/tmp/php3SFmS8' to '../images/kkk.jpg' in /home/northcc/public_html/cmsadmin/imgul.php on line 95
No the calling PHP file is in cmsadmin folder and the image needs to be in the
images folder off of the root i.e. ../images
Linux server and the file name looks right to me the line of code at line 95 is
$success[0] = move_uploaded_file($_FILES['toProcess']['tmp_name'],$path."/".$filename);
I have that folders permissions set to 755
Any help is appreciated.