ContributionsMost RecentMost LikesSolutionsRunning a trigger script calling ccollab We have a trigger that executes on review state change. The trigger is a perl script, from which we run ccollab. Since we upgraded to v9.4.9401, it no longer works. I used to run "ccollab admin..." through the trigger just fine, but now it is prompting for a url, a user and a password. Is there any way to make these values a default so when the trigger script is executed, ccollab runs with a default url, user, password? Re: Running ccollab with a trigger We solved our problem and in the process learned a few things. Thought I'd pass them on in case anyone has a similar issue. Our issue was that we had a version of java that was incompatible with CodeCollaborator 9 In the $CODE_COLLABORATOR/server/tomcat/logs directory, there's a file called collab.log There was a Java stack dump in there indicating that we had the wrong version of a library. We updated our version of Java and all was well. So now I know where to look, and that ccollab depends on Java libraries of version Java 7 for CodeCollaborator 9. Running ccollab with a trigger I set up a trigger for when a review changes phase, and it calls a perl script that calls ccollab. The perl script and the call to ccollab works just fine when I run it by hand on the Code Collaborator server. However, when the perl script is called from a trigger on a client, the perl script runs fine, but ccollab will not run. No error, no return info, it's like it was never even called. I'm assuming this is a permission issue? Any idea how to fix this? Thanks, Nickie Code Collaborator V9.4 Review Custom Field Dependency Is it possible to have the value or title or visibility of one Review Custom Field change dependent on the value selected for another Review Custom Field in the same template? For example, if I have a review custom field that is Product Type, and offers options of Code, Document, Spreadsheet If Code is selected, I'd like to see a field called "Lines of Code" become visible and valid. If Document is selected a field called "pages" can be selected. Do-able with Collaborator templates, or not?