Re: [Dspace-tech] Dspace import/Replace error

2010-09-01 Thread Claudia Jürgen
Hello Faizur, the error indicates that you forgot to run: [dspace]/bin/dspace index-init Hope that helps Claudia Jürgen Am 01.09.2010 00:39, schrieb Rahman, Sm F: Tim, I am sorry that I only hit reply instead of reply all which caused not to send the email to Dspace-tech. Here is the

Re: [Dspace-tech] column in eperson

2010-09-01 Thread Claudia Jürgen
Hello Sivon, this is an unused column like last_active. Maybe it was intended to hold the information about submission frequency, but this is mere speculation. Hope that helps Claduia Jürgen Am 25.05.2010 13:37, schrieb 骆海峰: Hi all: In the table EPerson, there is a column sub_frequency.

Re: [Dspace-tech] Search on homepage

2010-09-01 Thread jpgarbarino
Hi, juat add the following code to your xsl !-- remove search area on home page -- xsl:template match=/dri:document/dri:body/dri:d...@n='front-page-search'] xsl:apply-templates select=@pagination xsl:with-param name=positionbottom/xsl:with-param

Re: [Dspace-tech] Dspace import/Replace error

2010-09-01 Thread Tim Donohue
Faizur, Claudia's correct -- running that 'dspace index-init' command is necessary. Its purpose is to rebuild your Browse tables (which all begin bi_ -- based on your Postgres logs, those tables may be missing). It's usually best practice to re-run that 'index-init' command after a restore

Re: [Dspace-tech] Dspace import/Replace error

2010-09-01 Thread Rahman, Sm F
Tim/Claudia, Here is what I am getting after running the index-init script, any suggestions? Thanks, Faizur dsp...@ubuntu:~/bin$ ./index-init Creating browse index Exception in thread main org.dspace.browse.BrowseException: org.postgresql.util.PSQLException: ERROR: no schema has been selected

Re: [Dspace-tech] Mapping LDAP groups to DSpace groups

2010-09-01 Thread Pottinger, Hardy J.
Hi, you can look at the ShibAuthentication.java file in [dspace-src]/dspace-api/src/main/java/org/dspace/authenticate/ for ideas on your getSpecialGroups function. I've modified ours a bit, to use the domain of the ePerson's e-mail address to assign people to campus-based groups. It's an

Re: [Dspace-tech] List of months

2010-09-01 Thread Joan Caparros
Hi, I'm using the last version of DSpace (1.6.2) an I want to translate the list of months too. Has anyone got it? Regards Joan -- This SF.net Dev2Dev email is sponsored by: Show off your parallel programming skills.

Re: [Dspace-tech] Dspace import/Replace error

2010-09-01 Thread Tim Donohue
Faizur, It looks like your Database did not restore properly. It's saying you have no community table (which is one of the main tables in DSpace). Have you verified that your DSpace database actually has contents in it after your attempted restore? If it has no contents, then obviously your

[Dspace-tech] Import LDAP users and groups

2010-09-01 Thread Avarca, Anthony
All, I'm in the process of implementing dspace for a prof-of-concept project. Is it possible to import (auto enroll) a batch of eperson and groups? I will like to import 30+ users and 10+ groups from LDAP. Anthony Avarca aava...@anl.gov 630.252.4940

Re: [Dspace-tech] column in eperson

2010-09-01 Thread Mark H. Wood
On Wed, Sep 01, 2010 at 01:36:00PM +0200, Claudia Jürgen wrote: this is an unused column like last_active. Maybe it was intended to hold the information about submission frequency, but this is mere speculation. My guess would be the frequency with which subscriptions are checked. Tell me when

[Dspace-tech] upload a new bitstream java.io.IOException: No such file or directory

2010-09-01 Thread Fred Edwards
the system can be going along fine, but then when adding a new bitstream to an existing record a java/cocoon stacktrace error page appears claiming no such file or directory the weird thing is, if I refresh/reload that error page in the browser the upload process seems to proceed to a successful

Re: [Dspace-tech] Import LDAP users and groups

2010-09-01 Thread Stuart Lewis
Hi Anthony, I'm in the process of implementing dspace for a prof-of-concept project. Is it possible to import (auto enroll) a batch of eperson and groups? I will like to import 30+ users and 10+ groups from LDAP. It isn't possible to import users from LDAP, however DSpace has an ability to

Re: [Dspace-tech] Dspace import/Replace error

2010-09-01 Thread Rahman, Sm F
Tim, you are correct, I don't see any content, what steps exactly should I take to restore the database from backup, I want to make sure I am taking the right steps to make it work, thanks again, Faizur -Original Message- From: Tim Donohue [mailto:tdono...@duraspace.org] Sent:

Re: [Dspace-tech] Dspace import/Replace error

2010-09-01 Thread Tim Donohue
Faizur, When you did your Postgres backup, you should have run 'pg_dump' to create a full backup of all your DSpace DB tables. So, it should have been a command similar to the following: pg_dump -E UNICODE dspace my-dspace-backup.sql (where 'dspace' is the name of your DSpace Database, and