[dspace-tech] Re: Submission Problem in DSpace 6.2

2017-11-28 Thread eneshukic via DSpace Technical Support
Hi George, This is Hibernate error.Try changing initaization in your class from lazy to eager. Regards, Enes On Monday, November 27, 2017 at 5:46:02 PM UTC+1, George Kozak wrote: > > Hi, > We are moving to upgrade our production server (which is running DSpace > 5.5) to Dspace 6.2. In

[dspace-tech] Input forms lookup result split into multiple (two) metadata fields based on delimetar (node)

2017-11-28 Thread eneshukic via DSpace Technical Support
I have created controlled vocabulary with several nodes. Is there any way to store selected values into multiple metadata fields? For example, If user selects Node A ::Node B, value of Node A will go into metadata filed someshema.somefield.category and value of nod be will go into fields

[dspace-tech] Error migrating from existing DSpace 5x to DSpace-CRIS-5.8.0

2017-11-28 Thread euler
Dear DSpace-CRIS experts, I am in the process of migrating my local DSpace 5x (DSpace 5.8) to DSpace-CRIS 5.8.0. I have followed the steps as instructed here: Upgrade an existent DSpace (not CRIS) installation

Re: [dspace-tech] Re: MVN build failure

2017-11-28 Thread Tim Donohue
Hello, There is a known issue that one of the Maven modules DSpace uses (in DSpace 6) seems to require *git* to be present on the filesystem. Here's the bug ticket: https://jira.duraspace.org/browse/DS-3418 We are still looking for a volunteer to investigate this further and figure out a

Re: [dspace-tech] Re: Submission Problem in DSpace 6.2

2017-11-28 Thread George Kozak
Enes: I am unfamiliar with hibernate. I checked the config file hibernate.cfg.xml, but did not see anything about changing class from "lazy" to "eager". Is there somewhere else where this change should be made? Thanks, George Kozak Cornell University On Tue, Nov 28, 2017 at 6:24 AM, eneshukic

Re: [dspace-tech] I NEDD YOUR TECHNICAL SUPPORT

2017-11-28 Thread Terry Brady
Here is the setting that Luiz referenced. https://github.com/DSpace/DSpace/blob/master/dspace/config/dspace.cfg#L1380-L1381 For future messages to this list, I recommend that you describe the issue you are experiencing in the subject line. Since the archives are searchable, it makes it easier

[dspace-tech] Re: Problem activating new users

2017-11-28 Thread Solomon Kapfunde
Hi Nuno A solution already provided in this thread: https://groups.google.com/forum/#!topic/dspace-community/lVLfl_ktBkU On Monday, November 13, 2017 at 6:31:52 PM UTC+2, Nuno Miguel Carvalho wrote: > > Hi, > > I'm new at DSpace and I have a problem that I'm not finding a solution. > When I

[dspace-tech] Solr item view stats not updating in browser

2017-11-28 Thread Gary Browne
Hi all, I know there are more views and downloads on this item than are displaying in the browser: https://ses.library.usyd.edu.au/handle/2123/17600/statistics How can I query Solr directly to see if the correct figures are in the Solr index? In the dspace logs I see this (among other

Re: [dspace-tech] Solr item view stats not updating in browser

2017-11-28 Thread Terry Brady
If you get the database id for the item, you can run the following query from your SOLR console for the statistics repo. In DSpace 6, the id will be a UUID. In DSpace 3-5, it will be an integer. 2924 is being used in the sample query below. type:0 AND owningItem:2924 AND bundleName:ORIGINAL

Re: [dspace-tech] Solr item view stats not updating in browser

2017-11-28 Thread Gary Browne
Thanks Terry, So I'm assuming "bitstream views" equate to "dowloads"? If so, that gives me a figure more like what I would expect. And how would I get item view counts for this particular item? We haven't sharded our stats. Ta, Gary On Wednesday, November 29, 2017 at 10:21:38 AM UTC+11,

[dspace-tech] I NEDD YOUR TECHNICAL SUPPORT

2017-11-28 Thread ethio . nega
i customize DSpace for my university, file in the item on DSpace directly downloaded before view the file contents, but i need view the file in the item before downloading how can solve this problems please help me -- You received this message because you are subscribed to the Google Groups

Re: [dspace-tech] I NEDD YOUR TECHNICAL SUPPORT

2017-11-28 Thread Luiz dos Santos
Until I know dsapce doesn't have a viewer, I'm supposing that you are talking about pdf, the behaviour of show the file straight or download the file relays on the browser based in the file size. On 28 Nov 2017 08:03, wrote: > i customize DSpace for my university, file

Re: [dspace-tech] Solr item view stats not updating in browser

2017-11-28 Thread Terry Brady
Gary, That is correct. DSpace makes some attempt to filter out bot traffic. When you look directly at the SOLR records, you may see some records with an isBot field. To view the item counts, the following query will reveal those: type:2 AND id:2924 The bundle filter does not apply to the item

Re: [dspace-tech] Re: Submission Problem in DSpace 6.2

2017-11-28 Thread eneshukic via DSpace Technical Support
Hi George, I did not see your complete error stack, but you should look for the dspace objects. The error should exactly point out where the problem is. When you find it, change FetchType.Lazy to FetchType.Eager. Regards, Enes On Tuesday, November 28, 2017 at 5:45:02 PM UTC+1, George Kozak