Re: [Koha] Error retrieving biblio in rebuild_zebra.pl line 680

2019-01-30 Thread otuoma
The attached file does not seem to be useful, I have instead placed it on github here https://gist.github.com/otuoma/177ab5f407d18cb06c270ee7b34289c5 -- Sent from: http://koha.1045719.n5.nabble.com/Koha-general-f3047918.html ___ Koha mailing list

Re: [Koha] Error retrieving biblio in rebuild_zebra.pl line 680

2019-01-30 Thread otuoma
I wrote a small Codeigniter class that I used to copy the data from the old databases and saved it to biblio_metadata and indexed without a problem thereafter.I have attached the PHP code in a file below.Thank you all. Migrate.php

Re: [Koha] Error retrieving biblio in rebuild_zebra.pl line 680

2019-01-29 Thread otuoma
The database upgrade was done by the web installer and I didn't see any errors during that time. I am not sure how else I can view these errors? The new biblio_metadata table has only 6 fields. I can easily get data for all the fields from either biblio or biblioitems except for the marcxml

[Koha] Error retrieving biblio in rebuild_zebra.pl line 680

2019-01-29 Thread otuoma
Yesterday I upgraded from koha 3.22.08 to 18.11 but can't run koha-rebuild-zebra -f -v -b koha on Ubuntu 16.04 The error I get is exactly the same with bug 18927 https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18927 Zebra configuration information Zebra

[Koha] PHP equivalent for koha's password encryption

2015-05-25 Thread otuoma
I am developing a php application for our library and i want our patrons to login to the new app using the same credentials they use to login to koha. I've tried using the following code but it produces a different string everytime it is run. ?php echo shell_exec(perl -MKoha::AuthUtils -e 'print

Re: [Koha] PHP equivalent for koha's password encryption

2015-05-25 Thread otuoma
I solved it myself after looking at this page https://github.com/gmcharlt/vufind/commit/92e5599a1a87370a824a951a02f599821af6eeef The code below needs some improvements but it basically works: ?php if(isset($_POST['user']) isset($_POST['pass'])){ $con = mysql_connect(localhost,

Re: [Koha] Problem with barcode printing too wide on patron cards; alignment also incorrect on spine labels

2015-05-25 Thread otuoma
To get started, we need to know the dimensions of the labels you are using. On my side am using 13 by 5 labels on A4 size paper. Downloadable templates here https://www.flexilabels.co.uk/a4-sheet-labels/avery-style-labels/65-labels-per-a4-sheet-38-mm-x-21-mm-L7651 Try using the dimensions on that

[Koha] How to enable patron login in OPAC

2014-01-20 Thread otuoma
We have a big database of over 20 thousand+ patrons. Now, we want to activate patron accounts so they can log-in and manage their own accounts. When we created each patron's account, a password was generated. What is this password and how can we update it for all patrons so they can all log-in

[Koha] How to update two koha databases in different servers.

2013-05-11 Thread otuoma peter
I have two koha installations. One on a production server and another on a standby back-up server. Is there a way I can have all the changes made to the database on the production server also updated to the standby back-up server? I am thinking of doing it using an entry in a cronjob  file that