[Dspace-tech] HELP - DSpace 1.5 upgrade and tomcat error

2008-08-11 Thread Clive Gould
Hi Can anyone please help? I'm still trying to upgrade from DSpace 1.4.2 to 1.5.0 on our test server. I get through the complete upgrade process successfully with no apparent error messages but when I go to our repository home page I get the following error message within the DSpace main

Re: [Dspace-tech] Resetting Handle-URLs

2008-08-11 Thread James Rutherford
On Sat, Aug 09, 2008 at 02:55:55PM +, Christian Voelker wrote: Now, I have to remove the child naming part of the handle URL for each item. I am not sure whether it is best to change the database directly. I am not sure whether I am done when stripping the child part for each item or

Re: [Dspace-tech] ItemImport does not recognise language setting

2008-08-11 Thread Robert Roggenbuck
While trying to debug the ItemImporter I detect it is working fine... strange but true. Unfortunately I am not able to recover the circumstances of the not setted language identifiers - but nevertheless I am happy that it works now. A not to include in the docs: For setting an language to NULL

Re: [Dspace-tech] HELP - DSpace 1.5 upgrade and tomcat error

2008-08-11 Thread Mr Havercamp
Clive Gould wrote: Hi I've somewhat solved the problem by manually editing the following files to correct the path to dspace.cfg: /home/dspace/tomcat/webapps/dspace/WEB-INF/web.xml /home/dspace/tomcat/webapps/dspace-oai/WEB-INF/web.xml Tomcat now starts without any errors and I can see

[Dspace-tech] 253038: CreativeCommons.patch

2008-08-11 Thread Swanepoel, Barrie
Hi, I have problems with getting the Creative Commons submit form to work. I think I need this patch to solve a StringIndexOutOfBoundsException according to tracker 1824710. Do I just copy the file CreativeCommons.patch over the existing CreativeCommons.java and rename? Will this

Re: [Dspace-tech] HELP - DSpace 1.5 upgrade and tomcat error

2008-08-11 Thread Clive Gould
Hi everyone Thanks for the help so far :) I include the Tomcat and Java version numbers as requested. Best wishes Clive DSpace 1.4.2 works fine but DSpace 1.5 on the same platform gives internal server errors when I try to do a search. When I try to do a search I get an internal error

Re: [Dspace-tech] HELP - DSpace 1.5 upgrade and tomcat error

2008-08-11 Thread Mr Havercamp
Clive Gould wrote: Hi everyone Thanks for the help so far :) I include the Tomcat and Java version numbers as requested. Best wishes Clive DSpace 1.4.2 works fine but DSpace 1.5 on the same platform gives internal server errors when I try to do a search. When I try to do a search I

Re: [Dspace-tech] Problem with ant fresh_install

2008-08-11 Thread Kieffer, Paul
Sounds more useful than the error I am receiving... and I am in the correct directory. [EMAIL PROTECTED] dspace-1.5.0-build.dir]$ ant fresh_install Buildfile: build.xml init_installation: BUILD FAILED /ds/dspace-1.5.0-release/dspace/target/dspace-1.5.0-build.dir/build.xml:325: Directory

[Dspace-tech] incrementing a sequence counter

2008-08-11 Thread Larry Hansard
I need to add a few thousand metadata fields for items that are in our DSpace repository. Does anyone know the sql command to increment the metadatavalue_seq? Thanks Larry Hansard Georgia Tech Library Systems 404-894-4585

[Dspace-tech] Error in sendAlert

2008-08-11 Thread Blanco, Jose
I saw this error in the log file: 2008-08-09 10:04:47,345 WARN org.dspace.app.webui.util.UIUtil @ Unable to send email alert java.lang.NullPointerException at org.dspace.app.webui.util.UIUtil.sendAlert(UIUtil.java:471) So I investigated, and I'm seeing that in UIUtil.java, the line

[Dspace-tech] Postgres password expired

2008-08-11 Thread Bunton, Glenn A.
Looks like I wasn't paying attention to an old dspace installation we have. Postgres is now telling me my password has expired. Not being a postgres expert, would anyone be so kind as to let me know how I change/update the password so I can get postgres running again? Thanks in advance.

Re: [Dspace-tech] Postgres password expired

2008-08-11 Thread Stuart Lewis
Hi Glenn, Looks like I wasn¹t paying attention to an old dspace installation we have. Postgres is now telling me my password has expired. Not being a postgres expert, would anyone be so kind as to let me know how I change/update the password so I can get postgres running again? === Edit your

Re: [Dspace-tech] DSpace 1.4.2 Browse performance issues

2008-08-11 Thread Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
Hi Graham, Just wanted to let you know I took your advice - I created a materialized view and changed Browse.java to access the new view instead of itemsbyauthor (in the case of browse-items-by-author) and our response times went from 25+ seconds to sub-second response times. Thanks a bunch

Re: [Dspace-tech] 1.5 - sort results bug

2008-08-11 Thread Anderson, Charles W
That didn't work either; although it broke differently. The URLEncoder.encode method encodes the query in hex form, as %22query%22 -- which shows up in the hidden field as query. However, I then tried: %= (query==null ? : StringEscapeUtils.escapeHtml(query)) % That works. Thanks, Bill