Julio D'Angelo wrote:
We get this error message:

Error 700
General Error The compilation of the command cmdEditCSR failed. Can't use an undefined value as a HASH reference at /usr/local/openca_token/openca/lib/functions/crypto-utils.lib line 1115.


when we try to use this option "Initialization/Create the initial administrator/Edit the request <ca?cmd=setupInitialCert&dest=editCSR>" after using "Initialization/Create the initial administrator/Create a new request <ca?cmd=setupInitialCert&dest=basic_csr>".

We are testing this configuration:
-OpenCA CVS Version
-make install-offline

We solve the problem copying into ".../openca/etc/openssl/openssl" the following file "CA_Operator.conf.template". The directory was empty.

The makefile in src/common/etc/openssl/openssl/ was not correct. I attached the corrected makefile.


Michael
--
_______________________________________________________________

Michael Bell                    Humboldt-Universitaet zu Berlin

Tel.: +49 (0)30-2093 2482       ZE Computer- und Medienservice
Fax:  +49 (0)30-2093 2704       Unter den Linden 6
[EMAIL PROTECTED]   D-10099 Berlin
_______________________________________________________________
# file: src/common/etc/openssl/openssl/Makefile
#
# � 2001 OpenCA Group

TOP     = ../../../../..
include $(TOP)/Makefile.global-vars

DEST_CONFOPENSSLOPENSSLDIR      = ${etc_prefix}/openssl/openssl

AC_FILES        = \
        CA_Operator.conf        \
        Cross_CA.conf           \
        Domain_Controller.conf  \
        Mail_Server.conf        \
        RA_Operator.conf        \
        Sub-CA.conf             \
        User.conf               \
        VPN_Server.conf         \
        Web_Server.conf

#---- variable settings above, rules below ----

.PHONY: default install clean distclean

default::

install::       $(AC_FILES)

$(AC_FILES)::
        $(INSTALL) -g ${httpd_group} -o ${httpd_user} -m 644 $@ 
$(DEST_CONFOPENSSLOPENSSLDIR)/[EMAIL PROTECTED]

distclean::
                $(RM) $(AC_FILES)

Reply via email to