I think it must be some wierd PHP configuration... I'm not going to let it worry me, I think. I wrote the PHP script to attempt to actually write to the file and could not. Here's the script:
Code:
<?php
$filename = 'includes/configure.php';
if (is_writable($filename))
echo "File appears to be writable<br>";
else
echo "File is NOT writable<br>";
if (!$handle = fopen($filename, 'w')) {
echo "Cannot open file ($filename)<br>";
} else {
if (fwrite($handle, "Just a test") === FALSE) {
echo "Cannot write to file ($filename)<br>";
} else {
echo "Success, wrote to file ($filename)<br>";
}
fclose($handle);
}
$filename = 'includes/configure2.php';
if (is_writable($filename))
echo "File appears to be writable<br>";
else
echo "File is NOT writable<br>";
if (!$handle = fopen($filename, 'w')) {
echo "Cannot open file ($filename)<br>";
} else {
if (fwrite($handle, "Just a test") === FALSE) {
echo "Cannot write to file ($filename)<br>";
} else {
echo "Success, wrote to file ($filename)<br>";
}
fclose($handle);
}
?>
and here was the output:
File appears to be writable
Cannot open file (includes/configure.php)
File appears to be writable
Success, wrote to file (includes/configure2.php)
Looking at the actual files, it was able to write to the configure2.php that I created to test in that folder, but was not able to actually write to the configure.php file. So I'm guessing I probably have nothing to worry about, just some weirdness on the web-server end.