[dspace-tech] REQUEST FOR ADVICE

2024-02-02 Thread Benneth
I am working on DSpace 7.5 with Software as a Service (SAS) , thus, I do 
not have access to the backend. I have been trying to import 4.1MB metadata 
for days now but it keep on failing.

Please, I need help on best approach to the import.


Benneth

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/7b076f9a-a9d6-41bc-bf28-61214b553fc2n%40googlegroups.com.


Re: [dspace-tech] Collection number and name mapping

2023-07-25 Thread Benneth Obilor
Thank you Mark.


On Tue, Jul 25, 2023 at 11:49 AM Mark H. Wood  wrote:

> On Tue, Jul 25, 2023 at 05:48:38AM -0700, Benneth wrote:
> > Please which table in dspace postgreqsl can i find the mapping of all
> > collection names and their numbers.
> >
> > ie Collection number Collection Name
> >   -   -
> >-  -
> >-  -
>
> Collection names are metadata and are stored in the 'metadatavalue'
> table.
>
> First, you need to find the 'metadata_field_id' for the field 'dc.title'
> in your repository.  (It can differ between repo.s.)  I've bundled it
> all together:
>
>   SELECT v.dspace_object_id AS "Collection number",
>  v.text_value AS "Collection Name"
>  FROM metadatavalue AS v
>JOIN metadatafieldregistry AS f USING(metadata_field_id)
>JOIN metadataschemaregistry AS s USING(metadata_schema_id)
>  WHERE s.short_id = 'dc'
>AND f.element = 'title' AND f.qualifier IS NULL;
>
> --
> Mark H. Wood
> Lead Technology Analyst
>
> University Library
> Indiana University - Purdue University Indianapolis
> 755 W. Michigan Street
> Indianapolis, IN 46202
> 317-274-0749
> www.ulib.iupui.edu
>
> --
> All messages to this mailing list should adhere to the Code of Conduct:
> https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
> ---
> You received this message because you are subscribed to the Google Groups
> "DSpace Technical Support" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to dspace-tech+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/dspace-tech/ZL_vBrmKUfFptZtz%40IUPUI.Edu
> .
>

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/CAEA0NYnW4OtstOq7FRwjA02B9tX-_gJyAmU1Zj1EFLuch-BgPQ%40mail.gmail.com.


[dspace-tech] Collection number and name mapping

2023-07-25 Thread Benneth
Please which table in dspace postgreqsl can i find the mapping of all 
collection names and their numbers.

ie Collection number Collection Name
  -   -
   -  -
   -  -

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/52d4d3ba-494e-47a5-91e0-a833ae2c3cb2n%40googlegroups.com.


Re: [dspace-tech] Re: DSpace collection export maximum size

2023-07-25 Thread Benneth Obilor
Sorted out. I have been able to download the collection

Thanks.

On Mon, Jul 24, 2023 at 2:32 PM DSpace Technical Support <
dspace-tech@googlegroups.com> wrote:

> Hi Ben,
>
> I listed two CLI tools you could use (depending on what type of export you
> want) in my previous message:
>
>- AIP Backup and Restore:
>https://wiki.lyrasis.org/display/DSDOC7x/AIP+Backup+and+Restore
>- The "export" commandline tool (which exports to the DSpace "Simple
>Archive Format":
>
> https://wiki.lyrasis.org/display/DSDOC7x/Importing+and+Exporting+Items+via+Simple+Archive+Format#ImportingandExportingItemsviaSimpleArchiveFormat-ExportingItems
>This is the tool that uses the configuration setting you referenced, so it
>may be what you tried to use.  You could increase it's value even larger,
>if needed.  A value of "1024" means that it can only export a Collection of
>size 1GB. So, it's possible you may need to increase this value for a very
>large collection.
>
> Hopefully that helps.
> Tim
>
> On Friday, July 21, 2023 at 9:54:47 PM UTC-5 Benneth wrote:
>
>> Hi Tim,
>> Thanks for your encouraging response.
>>
>> I was trying to export a collection but got the message "The overall
>> size of this export is too large. Please contact your administrator for
>> more information."
>>
>> I changed org.dspace.app.itemexport.max.size = 1024. It was =200
>> before the change. But I am still getting the same error message. What I
>> need is any tool or CLI to export the collection in question.
>>
>> Thanks
>>
>>
>> On Fri, Jul 21, 2023 at 4:25 PM DSpace Technical Support <
>> dspac...@googlegroups.com> wrote:
>>
>>> Hi Ben,
>>>
>>> It's really difficult for others to help if you don't provide the
>>> details of what you are trying to do.  It's unclear to me what
>>> configuration you changed, and also what command (or steps in the User
>>> Interface) you are attempting to run that result in the error.
>>>
>>> It's also unclear what sort of export you are attempting.  One option
>>> here is to use one of the commandline export tools (which should not be
>>> limited in size) like the AIP Backup and Restore:
>>> https://wiki.lyrasis.org/display/DSDOC7x/AIP+Backup+and+Restore  or the
>>> commandline "export" script which exports into a different format:
>>> https://wiki.lyrasis.org/display/DSDOC7x/Importing+and+Exporting+Items+via+Simple+Archive+Format#ImportingandExportingItemsviaSimpleArchiveFormat-ExportingItems
>>>
>>> Basically, it's difficult to provide you with useful advice as it's
>>> unclear what you are trying to do.  But, hopefully one of those will
>>> provide you with hints.
>>>
>>> Tim
>>>
>>> On Friday, July 21, 2023 at 2:35:14 PM UTC-5 Benneth wrote:
>>>
>>>> After increase the configuration file to 1024, I am still getting the
>>>> message "The overall size of this export is too large. Please contact
>>>> your administrator for more information."
>>>>
>>>> *How can I export this collection?*
>>>>
>>>>
>>>> Ben
>>>>
>>> --
>>> All messages to this mailing list should adhere to the Code of Conduct:
>>> https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "DSpace Technical Support" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to dspace-tech...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/dspace-tech/29207699-17f2-4680-ae3e-b225d2ba66c6n%40googlegroups.com
>>> <https://groups.google.com/d/msgid/dspace-tech/29207699-17f2-4680-ae3e-b225d2ba66c6n%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>>
>> --
> All messages to this mailing list should adhere to the Code of Conduct:
> https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
> ---
> You received this message because you are subscribed to the Google Groups
> "DSpace Technical Support" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to dspace-tech+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/dspace-tech/8558fbda-10f6-4c3e-9a74-0d49f5a934a5n%40googlegroups.com
> <https://groups.google.com/d/msgid/dspace-tech/8558fbda-10f6-4c3e-9a74-0d49f5a934a5n%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/CAEA0NY%3DaPBu-jBH7LYFAwn9AeGD4c8GiY80qshaAr_FYZxOsqA%40mail.gmail.com.


Re: [dspace-tech] Re: DSpace collection export maximum size

2023-07-24 Thread Benneth Obilor
Following your earlier CLI links, I was trying to execute [dspace]/bin/dspace
export --type=COLLECTION --id=collID --dest=dest_dir --number=seq_num

It keeps on giving me the error message "-bash: dspace: command not found".
I am running it from my server root and directory changed to bin.
What does --dest=dest_dir --number=seq_num. stand for?

On Mon, Jul 24, 2023 at 10:55 PM Benneth Obilor 
wrote:

> Thanks Tim. your inputs have been very useful. Please, when I try
> executing any CLI in dspace, I. get an error message "
>
> command not found".
>
>
> prd bin]$ dspace -h
>
> -bash: dspace: command not found
>
>
> What can I do to rectify this?
>
>
>
>
> On Mon, Jul 24, 2023 at 2:32 PM DSpace Technical Support <
> dspace-tech@googlegroups.com> wrote:
>
>> Hi Ben,
>>
>> I listed two CLI tools you could use (depending on what type of export
>> you want) in my previous message:
>>
>>- AIP Backup and Restore:
>>https://wiki.lyrasis.org/display/DSDOC7x/AIP+Backup+and+Restore
>>- The "export" commandline tool (which exports to the DSpace "Simple
>>Archive Format":
>>
>> https://wiki.lyrasis.org/display/DSDOC7x/Importing+and+Exporting+Items+via+Simple+Archive+Format#ImportingandExportingItemsviaSimpleArchiveFormat-ExportingItems
>>This is the tool that uses the configuration setting you referenced, so it
>>may be what you tried to use.  You could increase it's value even larger,
>>if needed.  A value of "1024" means that it can only export a Collection 
>> of
>>size 1GB. So, it's possible you may need to increase this value for a very
>>large collection.
>>
>> Hopefully that helps.
>> Tim
>>
>> On Friday, July 21, 2023 at 9:54:47 PM UTC-5 Benneth wrote:
>>
>>> Hi Tim,
>>> Thanks for your encouraging response.
>>>
>>> I was trying to export a collection but got the message "The overall
>>> size of this export is too large. Please contact your administrator for
>>> more information."
>>>
>>> I changed org.dspace.app.itemexport.max.size = 1024. It was
>>> =200 before the change. But I am still getting the same error message. What
>>> I need is any tool or CLI to export the collection in question.
>>>
>>> Thanks
>>>
>>>
>>> On Fri, Jul 21, 2023 at 4:25 PM DSpace Technical Support <
>>> dspac...@googlegroups.com> wrote:
>>>
>>>> Hi Ben,
>>>>
>>>> It's really difficult for others to help if you don't provide the
>>>> details of what you are trying to do.  It's unclear to me what
>>>> configuration you changed, and also what command (or steps in the User
>>>> Interface) you are attempting to run that result in the error.
>>>>
>>>> It's also unclear what sort of export you are attempting.  One option
>>>> here is to use one of the commandline export tools (which should not be
>>>> limited in size) like the AIP Backup and Restore:
>>>> https://wiki.lyrasis.org/display/DSDOC7x/AIP+Backup+and+Restore  or
>>>> the commandline "export" script which exports into a different format:
>>>> https://wiki.lyrasis.org/display/DSDOC7x/Importing+and+Exporting+Items+via+Simple+Archive+Format#ImportingandExportingItemsviaSimpleArchiveFormat-ExportingItems
>>>>
>>>> Basically, it's difficult to provide you with useful advice as it's
>>>> unclear what you are trying to do.  But, hopefully one of those will
>>>> provide you with hints.
>>>>
>>>> Tim
>>>>
>>>> On Friday, July 21, 2023 at 2:35:14 PM UTC-5 Benneth wrote:
>>>>
>>>>> After increase the configuration file to 1024, I am still getting the
>>>>> message "The overall size of this export is too large. Please contact
>>>>> your administrator for more information."
>>>>>
>>>>> *How can I export this collection?*
>>>>>
>>>>>
>>>>> Ben
>>>>>
>>>> --
>>>> All messages to this mailing list should adhere to the Code of Conduct:
>>>> https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
>>>> ---
>>>> You received this message because you are subscribed to the Google
>>>> Groups "DSpace Technical Support" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>> an email to dspace-tech.

Re: [dspace-tech] Re: DSpace collection export maximum size

2023-07-24 Thread Benneth Obilor
Thanks Tim. your inputs have been very useful. Please, when I try executing
any CLI in dspace, I. get an error message "

command not found".


prd bin]$ dspace -h

-bash: dspace: command not found


What can I do to rectify this?




On Mon, Jul 24, 2023 at 2:32 PM DSpace Technical Support <
dspace-tech@googlegroups.com> wrote:

> Hi Ben,
>
> I listed two CLI tools you could use (depending on what type of export you
> want) in my previous message:
>
>- AIP Backup and Restore:
>https://wiki.lyrasis.org/display/DSDOC7x/AIP+Backup+and+Restore
>- The "export" commandline tool (which exports to the DSpace "Simple
>Archive Format":
>
> https://wiki.lyrasis.org/display/DSDOC7x/Importing+and+Exporting+Items+via+Simple+Archive+Format#ImportingandExportingItemsviaSimpleArchiveFormat-ExportingItems
>This is the tool that uses the configuration setting you referenced, so it
>may be what you tried to use.  You could increase it's value even larger,
>if needed.  A value of "1024" means that it can only export a Collection of
>size 1GB. So, it's possible you may need to increase this value for a very
>large collection.
>
> Hopefully that helps.
> Tim
>
> On Friday, July 21, 2023 at 9:54:47 PM UTC-5 Benneth wrote:
>
>> Hi Tim,
>> Thanks for your encouraging response.
>>
>> I was trying to export a collection but got the message "The overall
>> size of this export is too large. Please contact your administrator for
>> more information."
>>
>> I changed org.dspace.app.itemexport.max.size = 1024. It was =200
>> before the change. But I am still getting the same error message. What I
>> need is any tool or CLI to export the collection in question.
>>
>> Thanks
>>
>>
>> On Fri, Jul 21, 2023 at 4:25 PM DSpace Technical Support <
>> dspac...@googlegroups.com> wrote:
>>
>>> Hi Ben,
>>>
>>> It's really difficult for others to help if you don't provide the
>>> details of what you are trying to do.  It's unclear to me what
>>> configuration you changed, and also what command (or steps in the User
>>> Interface) you are attempting to run that result in the error.
>>>
>>> It's also unclear what sort of export you are attempting.  One option
>>> here is to use one of the commandline export tools (which should not be
>>> limited in size) like the AIP Backup and Restore:
>>> https://wiki.lyrasis.org/display/DSDOC7x/AIP+Backup+and+Restore  or the
>>> commandline "export" script which exports into a different format:
>>> https://wiki.lyrasis.org/display/DSDOC7x/Importing+and+Exporting+Items+via+Simple+Archive+Format#ImportingandExportingItemsviaSimpleArchiveFormat-ExportingItems
>>>
>>> Basically, it's difficult to provide you with useful advice as it's
>>> unclear what you are trying to do.  But, hopefully one of those will
>>> provide you with hints.
>>>
>>> Tim
>>>
>>> On Friday, July 21, 2023 at 2:35:14 PM UTC-5 Benneth wrote:
>>>
>>>> After increase the configuration file to 1024, I am still getting the
>>>> message "The overall size of this export is too large. Please contact
>>>> your administrator for more information."
>>>>
>>>> *How can I export this collection?*
>>>>
>>>>
>>>> Ben
>>>>
>>> --
>>> All messages to this mailing list should adhere to the Code of Conduct:
>>> https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "DSpace Technical Support" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to dspace-tech...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/dspace-tech/29207699-17f2-4680-ae3e-b225d2ba66c6n%40googlegroups.com
>>> <https://groups.google.com/d/msgid/dspace-tech/29207699-17f2-4680-ae3e-b225d2ba66c6n%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>>
>> --
> All messages to this mailing list should adhere to the Code of Conduct:
> https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
> ---
> You received this message because you are subscribed to the Google Groups
> "DSpace Technical Support" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to dspace-tech+unsubscr...@googlegroups.com.
> To view this discu

Re: [dspace-tech] Re: DSpace collection export maximum size

2023-07-21 Thread Benneth Obilor
Hi Tim,
Thanks for your encouraging response.

I was trying to export a collection but got the message "The overall size
of this export is too large. Please contact your administrator for more
information."

I changed org.dspace.app.itemexport.max.size = 1024. It was =200
before the change. But I am still getting the same error message. What I
need is any tool or CLI to export the collection in question.

Thanks


On Fri, Jul 21, 2023 at 4:25 PM DSpace Technical Support <
dspace-tech@googlegroups.com> wrote:

> Hi Ben,
>
> It's really difficult for others to help if you don't provide the details
> of what you are trying to do.  It's unclear to me what configuration you
> changed, and also what command (or steps in the User Interface) you are
> attempting to run that result in the error.
>
> It's also unclear what sort of export you are attempting.  One option here
> is to use one of the commandline export tools (which should not be limited
> in size) like the AIP Backup and Restore:
> https://wiki.lyrasis.org/display/DSDOC7x/AIP+Backup+and+Restore  or the
> commandline "export" script which exports into a different format:
> https://wiki.lyrasis.org/display/DSDOC7x/Importing+and+Exporting+Items+via+Simple+Archive+Format#ImportingandExportingItemsviaSimpleArchiveFormat-ExportingItems
>
> Basically, it's difficult to provide you with useful advice as it's
> unclear what you are trying to do.  But, hopefully one of those will
> provide you with hints.
>
> Tim
>
> On Friday, July 21, 2023 at 2:35:14 PM UTC-5 Benneth wrote:
>
>> After increase the configuration file to 1024, I am still getting the
>> message "The overall size of this export is too large. Please contact
>> your administrator for more information."
>>
>> *How can I export this collection?*
>>
>>
>> Ben
>>
> --
> All messages to this mailing list should adhere to the Code of Conduct:
> https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
> ---
> You received this message because you are subscribed to the Google Groups
> "DSpace Technical Support" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to dspace-tech+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/dspace-tech/29207699-17f2-4680-ae3e-b225d2ba66c6n%40googlegroups.com
> <https://groups.google.com/d/msgid/dspace-tech/29207699-17f2-4680-ae3e-b225d2ba66c6n%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/CAEA0NYkWXfD_-7nePRmDi0NqVAH1j31Q-Hbn7JSePfAhgMBidA%40mail.gmail.com.


[dspace-tech] DSpace collection export maximum size

2023-07-21 Thread Benneth
After increase the configuration file to 1024, I am still getting the 
message "The overall size of this export is too large. Please contact your 
administrator for more information."

*How can I export this collection?*


Ben

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/5a8ff034-ef53-4ecc-af6a-e9eee16cad38n%40googlegroups.com.


[dspace-tech] authentication-shibbolet.cfg

2023-07-21 Thread Benneth
How can i configure authentication-shibbolet.cfg to allow only listed id 
(emails) to login at the front end.

Ben

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/7f49dbf6-afb5-4ba9-a212-6fc6db5f4930n%40googlegroups.com.


[dspace-tech] Backend log in after disabling frontend login because of migration

2023-07-19 Thread Benneth
Owing to migration reasons from Dspace 5.0 to 7.4 currently going on, we 
disabled all front end login's.

Please, I need help to achieve the following task:
1. How do I download a collection that is huge, from the backend(terminal)
2. For the collection to be downloaded, which table can I get the 
collection number.
3. How do I download restricted collections from backend
4. Remove all occurrences of login text from all pages(home page etc)

Help on any or all of the above will be appreciated.

Thank you.

Benneth

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/969d203e-a8d8-41f6-b76e-ef57024f1826n%40googlegroups.com.


[dspace-tech] Re: Comment all occurrence of login text

2023-07-10 Thread Benneth
Ie I do not want it displayed (show) at any page.

On Tuesday, July 11, 2023 at 1:31:49 AM UTC-4 Benneth wrote:

> Is there a simpler way to comment all occurrences of "login" text in 
> Dspace 5x. This is needed to pave way for a migration?
>
> Thanks
>

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/622b666f-e419-43e4-92a9-eafe7d581a13n%40googlegroups.com.


[dspace-tech] Comment all occurrence of login text

2023-07-10 Thread Benneth
Is there a simpler way to comment all occurrences of "login" text in Dspace 
5x. This is needed to pave way for a migration?

Thanks

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/95b9df6c-e4b8-4f44-af5f-689a4d20e66bn%40googlegroups.com.


[dspace-tech] Disable all logins

2023-07-06 Thread Benneth
Whats the easiest way (configuration) to disable all logins and remove 
links from UI.

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/09612b27-7f10-4f64-a743-542543d4ab6an%40googlegroups.com.


[dspace-tech] Disappearance of activated system wide alert

2023-07-06 Thread Benneth
I activated a system wide alert and it was functioning but to my surprise, 
the next day, it failed to show up.

I want it to remain activated till I disactivate it.

Any help will be appreciated.

Benneth

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/3d36a3f8-9b1f-4e61-9649-1a3f201a72b3n%40googlegroups.com.


[dspace-tech] Bulk download of filtered items (PDF)

2023-02-22 Thread Benneth
Please, in Dspace 5,  how can you download bulk PDFs from a filtered search 
result ie after the search are displayed, you want to download all the item 
PDFs.

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/0fb775e7-99f8-441a-9651-ce42a6e67d2an%40googlegroups.com.