|
From: Joe Z. <jz...@at...> - 2002-06-08 06:06:01
|
Rene,
I've been going crazy trying to figure out why the admin.php page would
not display. It turns out the parse_ini_file() failed because
"$this->serverdir . $server" evaluated to
/var/www/html/joe/bobs/bobscustom/inc/servers/CVS/, which is a
directory. I deleted the CVS directory and the page finally shows. Now I
can continue with configuration.
$this->servers[$i] = parse_ini_file($this->serverdir . $server);
I patched it with:
if ( filetype($this->serverdir . $server) == "file") {
$this->servers[$i] =
parse_ini_file($this->serverdir . $server);
$i++;
}
P.S. I didn't know php had class functions. It looks like c++. cool...
Joe
|