Hi Andrea, I have added extra parameter in tomcat/bin/startup.sh file please see attached file and if i did wrong let me know, is this the correct file to add parameters in and on the bottom as i did, your assistance in appreciated.
At the moment i have added parameters and restarted tomcat, when i add project same error appears. Regards, Lewatle On Tuesday, 5 March 2019 11:30:59 UTC+2, Bollini Andrea wrote: > > Hi Lewatle, > you need to start tomcat with the extra parameter > > -Dorg.apache.el.parser.SKIP_IDENTIFIER_CHECK=true > > It is noted in the installation documentation point 7 but often is > unnoticed as it is specific of DSpace-CRIS > > https://wiki.duraspace.org/display/DSPACECRIS/Installation > > Hope this help, > Andrea > > > On Mon, 2019-03-04 at 00:26 -0800, Lewatle Johannes Phaladi wrote: > > Dear Colleagues, > > > > When I click on add project link I get Internal System Error, > > attached is screen-shots and dspace log file, I would like to be able > > to add projects and use other modules came with DSpace-CRIS. > > > > Regards, > > Lewatle > > -- > > All messages to this mailing list should adhere to the DuraSpace Code > > of Conduct: https://duraspace.org/about/policies/code-of-conduct/ > > --- > > You received this message because you are subscribed to the Google > > Groups "DSpace Community" group. > > To unsubscribe from this group and stop receiving emails from it, > > send an email to [email protected] <javascript:>. > > To post to this group, send email to > > [email protected] <javascript:>. > > Visit this group at https://groups.google.com/group/dspace-community. > > For more options, visit https://groups.google.com/d/optout. > > > > -- > Questo messaggio e' stato analizzato da Libra ESVA ed e' risultato non > infetto. > This message was scanned by Libra ESVA and is believed to be clean. > > -- All messages to this mailing list should adhere to the DuraSpace Code of Conduct: https://duraspace.org/about/policies/code-of-conduct/ --- You received this message because you are subscribed to the Google Groups "DSpace Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/dspace-community. For more options, visit https://groups.google.com/d/optout.
#!/bin/sh # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ----------------------------------------------------------------------------- # Start Script for the CATALINA Server # ----------------------------------------------------------------------------- # Better OS/400 detection: see Bugzilla 31132 os400=false case "`uname`" in OS400*) os400=true;; esac # resolve links - $0 may be a softlink PRG="$0" while [ -h "$PRG" ] ; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '.*-> \(.*\)$'` if expr "$link" : '/.*' > /dev/null; then PRG="$link" else PRG=`dirname "$PRG"`/"$link" fi done PRGDIR=`dirname "$PRG"` EXECUTABLE=catalina.sh # Check that target executable exists if $os400; then # -x will Only work on the os400 if the files are: # 1. owned by the user # 2. owned by the PRIMARY group of the user # this will not work if the user belongs in secondary groups eval else if [ ! -x "$PRGDIR"/"$EXECUTABLE" ]; then echo "Cannot find $PRGDIR/$EXECUTABLE" echo "The file is absent or does not have execute permission" echo "This file is needed to run this program" exit 1 fi fi -Dorg.apache.el.parser.SKIP_IDENTIFIER_CHECK=true exec "$PRGDIR"/"$EXECUTABLE" start "$@" ~
