I'm trying to write some code so I can uplaod iamges to a fodler.
PHP code is:
copy($image, "catimages/$saveimage"
;
where $image is the temporary uploaded file from PHP and
"catimages/$saveimage" is the relative path to the folder and filename PHP
page is attempting to save to.
I keep getting an error
The security account that the PHP page is executing under must have write
permissions to the physical folder that "catimages/" points to.
DO I ahve to access the server and set write permission somehow? Or is it an error in my code?
Nippi
PHP code is:
copy($image, "catimages/$saveimage"
where $image is the temporary uploaded file from PHP and
"catimages/$saveimage" is the relative path to the folder and filename PHP
page is attempting to save to.
I keep getting an error
The security account that the PHP page is executing under must have write
permissions to the physical folder that "catimages/" points to.
DO I ahve to access the server and set write permission somehow? Or is it an error in my code?
Nippi