Forum OpenACS Q&A: problems installing bug-tracker..

Collapse
Posted by jeff wang on
Hi all,

I was trying to install the bug-tracker package and got the following errors:

ora8.c:3546:ora_tcl_command: error in `OCIStmtExecute ()': ORA-06550: line 3, column 24:
PLS-00302: component 'NEW' must be declared
ORA-06550: line 3, column 9:
PL/SQL: Statement ignored

SQL:
        begin
        :1 := workflow.new (
            short_name => :short_name,
            pretty_name => :pretty_name,
            package_key => :package_key,
            object_id => :object_id,
            object_type => :object_type,
            creation_user => :creation_user,
            creation_ip => :creation_ip,
            context_id => :context_id
        );
        end;

Workflow is installed, so I don't know why it can't find the new procedure.
Does anyone know what's wrong?  Also, is there any tutorials on how to use the new workflow package by Lars Pind.  I've read through the docs that Lars wrote and  but it's still confusing.  I've only been using open-acs for 2 weeks so a simple tutorial would be quite helpful!

Thanks!

Jeff

Collapse
Posted by Lars Pind on
Jeff,

Are you on 4.6.3 or HEAD?

Are you sure your workflow package is up-to-date? I've just tried installing from HEAD here, and had no problems.

/Lars

Collapse
Posted by jeff wang on
Hi Lars,

I'm using the openacs 4.6.3, not the head but I still got it to work.  I had acs-workflow and workflow installed so I don't know if those interfered with each other.  But I uninstalled both of them and then re-installed bug-tracker (with workflow) and it seems to work now.

Thanks!
Jeff