hello,
when installing openca on FreeBSD 5.2.1 (perl v5.6.1 built for
i386-freebsd,CGI::VERSION='2.752') for every module in the administration
pages only the ServerInfo menu was visible.
The actual problem was invoked by the read and write proccess in the
$load variable
in OpenCa/lib/functions/initCGI when writting in $load the
necessary info, the following use of FH does not work, so the load
variable is empty
open($fh, '>', \$load)
$cgi->save ($fh); in OpenCa/lib/functions/initServer when reading from $load, also the FH doesn't work open ($fh, "<", \$load); $query = OpenCA::TRIStateCGI->new ($fh); The problem seems to be solved when you replace the above with a filehandle
that reads and writes from a temp file.
Is
this a bug of the version of perl that we use?
regards
Chrisa |