[dspace-tech] Re: Dspace 7.4 SSL front-end problems

2023-03-28 Thread Mohammad S. AlMutairi
Hello Jorge, That's a wrong way to access or test and chech if the handle server is running and the error you saw is expected just ignore it. 1) To help you make systemd take care of running the handle server at boot time you need to copy and paste what you see in red below into the terminal

Re: [dspace-tech] Re: DSpace 7 Impersonation and Special Groups

2023-03-28 Thread David P. Steelman
Tim, Thanks for the response. My apologies, though, because it turns out I was getting confused by some custom configuration that we had that made it look like impersonation wasn't working. As far as I can tell, special groups and impersonation are working properly in the stock DSpace 7.4 build.

[dspace-tech] Re: "Search query is not valid"

2023-03-28 Thread 'Tim Donohue' via DSpace Technical Support
Hi Bryan, The colon is a reserved character in Solr (which the search engine uses). But you should be able to escape it by simply surrounding it with quotes. So, if you search "My Title: my latest paper" (with the quotes!) that should work to search by the colon. However, if you don't

[dspace-tech] Re: pgcrypto extension is installed in PostgreSQL 14.7, but reports as not installed on this DATABASE

2023-03-28 Thread Mohammad S. AlMutairi
Hi Zikrul, Try this in the sequence you see it. 1) su - postgres 2) psql 3) \password 4) drop database dspace; 5) drop user dspace; 6) drop extension if exists pgcrypto; 7) drop schema extensions; 8) \q 9) createuser --username=postgres --no-superuser --pwprompt dspace 10) createdb

[dspace-tech] Re: pgcrypto extension is installed in PostgreSQL 14.7, but reports as not installed on this DATABASE

2023-03-28 Thread Zikrul
Hi Mohammad, Many thanks for your prompt reply. I have tried $ant fresh_install after each fix for pgcrypto you have mentioned but issue did not resolved. Any other idea please? test_database: [java] 2023-03-28 13:59:20,868 WARN org.dspace.servicemanager.DSpaceServiceManager @ Unable to

Re: [dspace-tech] Re: Formulas in the "Abstract" field

2023-03-28 Thread Benedito Gomes Vieira
Thanks Tim Donohue. Em seg., 27 de mar. de 2023 às 18:23, 'Tim Donohue' via DSpace Technical Support escreveu: > Hi, > > In DSpace 6, IIRC, only the XMLUI "Mirage" and "Mirage2" themes supported > MathJax to display mathematical formulas: >

[dspace-tech] Re: pgcrypto extension is installed in PostgreSQL 14.7, but reports as not installed on this DATABASE

2023-03-28 Thread Mohammad S. AlMutairi
Hi Zikrul, All you need to fix it without having to recreate the pgcrypto extension using the second method is by adding it into the search path by one of these commands ( *psql --username=postgres dspace -c 'ALTER ROLE dspace IN DATABASE dspace SET search_path =

[dspace-tech] Re: pgcrypto extension is installed in PostgreSQL 14.7, but reports as not installed on this DATABASE

2023-03-28 Thread Zikrul
Hi, I also have the same problem as Baskar while running $ant fresh_install. Regarding Mohammad's reply to recreate pgcrypto, I did create successfully before. If I try to recreate now then it says below as already it is there. bash-4.4$ psql --username=postgres dspace -c "CREATE EXTENSION

Re: [dspace-tech] REST API "415 Unsupported Media Type"

2023-03-28 Thread Lewatle Johannes Phaladi
Hello Tim, Thanks a lot for respond. Regards, Lewatle On Monday, 27 March 2023 at 17:21:08 UTC+2 Tim Donohue wrote: > Hi, > > Usually, a 415 error means you are sending data using an invalid > "Content-Type" header. In most scenarios the content-type should be either > "application/json"