[Koha] Step by step guide to enable REST API koha 20.11

2021-03-25 Thread Javi Legido
Hi there. I would like to enable REST API, but so far i got 404 while trying to access: http://mykoha-intra.mydnsname.org/api/v1/.html http://mykoha.myDNSname.org/api/v1/.html I enabled below options: OPACBaseURL => http://mykoha.myDNSname.org OpacPublic RESTBasicAuth RESTOAuth2ClientCrede

[Koha] Batch insert of records

2021-03-25 Thread Javi Legido
Hi there. We would like to add some records (7k) to our koha 20.11 instance. After reading [1] the manual is not clear to me if this adding operation is currently possible through REST API or any other API. So far we only now how to do it through GUI, but there's any other way to automate the pro

Re: [Koha] Step by step guide to enable REST API koha 20.11

2021-03-26 Thread Javi Legido
, Tomas Cohen Arazi wrote: > Hi, we don't support Debian testing (things change often regarding > dependencies and available packages). > > Please use the debian:buster image instead. > > Kind regards > > El vie., 26 mar. 2021 1:50, Javi Legido escribió: > >> Hi th

Re: [Koha] Batch insert of records

2021-03-26 Thread Javi Legido
l vie, 26 mar 2021 a las 2:59, Javi Legido () escribió: > >> Hi there. >> >> We would like to add some records (7k) to our koha 20.11 instance. After >> reading [1] the manual is not clear to me if this adding operation is >> currently possible through REST API or an

Re: [Koha] Step by step guide to enable REST API koha 20.11

2021-03-26 Thread Javi Legido
On Fri, 26 Mar 2021 at 12:36, Tomas Cohen Arazi >> wrote: >> >>> Hi, we don't support Debian testing (things change often regarding >>> dependencies and available packages). >>> >>> Please use the debian:buster image instead. >>> >>

Re: [Koha] Continued koha-common Upgrade Challenges

2021-04-28 Thread Javi Legido
Hi there. Not sure if in your scenario there's the option, but I would strongly recommend start using docker instead of installing packages. If you agree with this approach let me know, I can give you some hints. Cheers. Javier On Wed, 28 Apr 2021 at 17:55, wrote: > Our koha installation is

Re: [Koha] Error

2021-05-29 Thread Javi Legido
Hi. Check the xml format. Maybe start wirh just one record and see what happens. Cheera. El sáb., 29 may. 2021 7:25, Himanshu Aggarwal escribió: > While doing batch record modification I am getting following error Cannot > enqueue this job. (The error was: Job has not been enqueued. See the Ko

Re: [Koha] Reoccurring DBMS auto increment issue

2021-06-22 Thread Javi Legido
Hi there. Given that web application logs are so laconic maybe you can temporary enable SQL query logging in your database to see which query is producing the error. Cheers. Javier On Tue, 22 Jun 2021 at 09:48, Michael Kuhn wrote: > Hi Jonathan > > You wrote: > > > Hi Michael, what do you ha

[Koha] Add separator from fields 245a and 245c

2021-06-29 Thread Javi Legido
Hi there. We have below XML: Gestión empresarial. El caso de dieciocho cooperativas Consultores Asociados (Coord.) Which leads to below string both in admin and OPAC: Gestión empresarial. El caso de dieciocho cooperativas Consultores Asociados (Coord.) Question: how to add a

[Koha] Field 830v won't display

2021-06-30 Thread Javi Legido
Hi there. =Steps to reproduce= 1. Login admin interface 2. Click 'Cataloging' 3. Click 'New record' button 4. Click 'Default framework' 5. Click '8' tab 6. Click '830 SERIES ADDED ENTRY...' to expand it =Expected behavior= Find a text box with 'v Volume/sequential designation', as per: ht

Re: [Koha] Field 830v won't display

2021-07-08 Thread Javi Legido
t; MARC bibliographic frameworks. > > Action > MARC structure > > Search for 830 > > Actions > Edit subfields > > Click on v > > Make sure it is "Managed in tab" 8 and Editor is checked. > > > Good luck! > > Caroline > > On 21-06-30 10 h

Re: [Koha] Add separator from fields 245a and 245c

2021-07-11 Thread Javi Legido
> activated using the XSLT system preferences. > > There is a XSLT library in the wiki that shows some examples of > modifications people have made: > > https://wiki.koha-community.org/wiki/XSLT_Library > > Hope this helps, > > Katrin > > On 29.06.21 18

Re: [Koha] Add separator from fields 245a and 245c

2021-07-13 Thread Javi Legido
Hi there. Many thanks for your reply. In our case the solution was a simple edition in .xls file. From: To: | Cheers. Javier On Wed, 14 Jul 2021 at 00:56, Charles Kelley wrote: > Hello, Javi et al! > > In our latest e

[Koha] Encode 'ç' to import authority .marcxml file with authority

2021-07-19 Thread Javi Legido
Hi there. I'm trying to import an authority type 'GEOGR_NAME' with 'ç' in its name (field '151 a'): França So far: 1. If I manually add it from GUI (I want to import it from .marcxml file) it works typing 'ç' character. If I save the record as MARCXML I get below encoding: França 2. If I

Re: [Koha] Encode 'ç' to import authority .marcxml file with authority

2021-07-19 Thread Javi Legido
on, 19 Jul 2021 at 17:26, Harald Schaefer wrote: > Hi, > > you should use the utf8 encoding, when creating a python file. > > The marcxml file should have in the first line encoding='UTF-8' > > In python you should use encode('utf8') > > Regards, Har

Re: [Koha] Encode 'ç' to import authority .marcxml file with authority

2021-07-19 Thread Javi Legido
king with utf8. > > When the inputfile and your python script is encoded in utf8, you need > in my view no encode command. > > I didn't not understand your python script. It reads somethng and then > writes again a modified xml file? > > There was no attachment in the last mai

Re: [Koha] Encode 'ç' to import authority .marcxml file with authority

2021-07-19 Thread Javi Legido
thing in your python code like > >utf8str = iso8859str.decode('iso-8859-1').encode('utf8') > > You may search the internet for > >python read iso8859 strings and convert them to utf8 > > Best regards, Harald > > Am 19.07.21 um 19:23 schrieb Ja

Re: [Koha] Encode 'ç' to import authority .marcxml file with authority

2021-07-19 Thread Javi Legido
mlcharrefreplace' hocus pocus: return string.strip() I still need to figure out '' format, since from now is hardcoded in my templates. Cheers. Javier On Tue, 20 Jul 2021 at 07:47, Javi Legido wrote: > Hi there. > > Thanks again for your time, I really app

Re: [Koha] (no subject)

2021-07-29 Thread Javi Legido
Try below solution: http://kohageek.blogspot.com/2013/05/how-to-change-master-password-of-koha.html On Fri, 30 Jul 2021 at 04:55, Sanjay Uchcharia wrote: > Hello there, I've forgotten my koha password. How to get it back in Ubuntu > 20.04. > > > Thankyou. :) > __

Re: [Koha] Upgrade procedure

2021-08-23 Thread Javi Legido
Hi there. I strongly advise you to: 1. Find and dump the koha database (I assume MySQL engine) 2. Move from installing software on baremetal to docker containers Cheers. Javier On Mon, 23 Aug 2021 at 16:50, Tom Burke wrote: > Hello the list > > I am a new volunteer IT help for a small numbe

Re: [Koha] Import in koha 21.05 all users from LDAP

2021-09-10 Thread Javi Legido
Hi there. I'm not an expert on the subject, maybe others can reply, but this is the classical behaviour of applications integrating with LDAP for authentication (and sometimes also authorization): after first login the application creates data in its database, in this example as "Patron". No idea