Hi,
the fopen in the below code excerpt takes the FALSE path after confirming that the file exists. I’ve confirmed I don’t have it opened and it has 0644 permissions. Anything else I can look at to zero in on the error? Or some way to coax an error code or message from php?
Thx,
Ty
if(file_exists($fName) == FALSE) {
echo "file doesn't exists<br />";
}else{
echo "file exists<br />";
if (($file = fopen($fName)) == FALSE) {
echo "file NOT opened<br />";
}else{