Greetings!
Being new to PHP, I am a bit stuck. I have created a new page for our site and I want to set up this page to be edit-able by certain users through the admin. When I make a change and approve it, this is what I get: Warning: failed to open stream permission denied on this line:
}
if (!copy($root.NEW_PATH.$src, $root.PATH.$dest))
echo "Failed to set file for approval";
else {
unlink($root.NEW_PATH.$src);
//update db
save_file_info($dest, 4, "", "", $_SESSION['uid']);
}
Failed to set file for approval.
I'm not sure how to set for approval. Is in the httpconfig?
ps- running PHP4 on apache server with XP machines
thanks for any guidance!