I did a search first, of "Not A Valid Directory" and "Writable Session Save Path"
and even "/var/lib/php/session" but none of them turned up anything.
I'm at a loss with this bit of PHP code, which is part of the
install (and is preventing me from installing!):
<tr>
<td><b>Writable Session Save Path (<?php echo $session_save_path; ?>)</b></td>
<td align="right"><?php
if(is_dir($session_save_path))
{
[...code removed...]
}
else
{
echo '<b><span class=stop>Not A Valid Directory</font></b>';
$error_found = true;
}
?></td>
</tr>
Looks fairly straight forward - test the $session_save_path (which
is "/var/lib/php/session", from /etc/php.ini) to make sure it exists
(with is_dir) or reports "Not A Valid Directory".
Well, the directory DOES exist, and I even made sure that the
permissions were 777 from top to bottom, yet it always gets reported as
"Not A Valid Directory".
I do not know PHP. Anyone know what might be happening here? How
to fix things?
Everything else reports okay on my dual opteron FC3 system.
Thanks.


LinkBack URL
About LinkBacks



Reply With Quote
Bookmarks