[Koha] Koha calendar

2017-12-11 Thread Liny Varghese
Hi,

The problem occurred in Home-Tools-Calendar. This problem is occurred
recently without changing any settings in Koha.
This was working earlier. Suddenly this happened.

Koha Calendar is not displaying to set holidays.

I just tried with 2 scenarios:

a. When I set my library, calendar is not displaying.
b. If no library is set, the calendar is showing up.


Since it is December, we need to set holidays for the next year,
otherwise due days will clash.

Any help is very much appreciated

Liny Varghese
Information Scientist
University Library
Cochin University of Science and Technology
Kochi-22, Kerala


https://www.avast.com/sig-email?utm_medium=email_source=link_campaign=sig-email_content=webmail;
target="_blank">https://ipmcdn.avast.com/images/icons/icon-envelope-tick-round-orange-animated-no-repeat-v1.gif;
alt="" width="46" height="29" style="width: 46px; height: 29px;"
/>
Virus-free. https://www.avast.com/sig-email?utm_medium=email_source=link_campaign=sig-email_content=webmail;
target="_blank" style="color: #4453ea;">www.avast.com



___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Email not being sent from koha

2017-12-11 Thread Javed Sahil
Hi everyone,

  I have configured postfix, mailutils  and gmail with my Ubuntu 16.04 to
send Email Notifications from koha 16.11.

I can send emails from command line using the following command:

echo "This is a test." | mail -s "test message" javedshoukat...@gmail.com

emails are received on this address:  javedshoukat...@gmail.com

but when I issue the command: ./process_message_queue.pl

following message appears:

connect to gmail.com failed (Connection timed out)
connect to gmail.com failed
connect to gmail.com failed (Connection timed out) no (more) retries!
 at ./process_message_queue.pl line 66.


any idea? plz.
-- 
Regards,0

Javed Shoukat

Management Trainee Officer (MTO)
Lahore University of
Management Sciences (LUMS),
Lahore.

Contact #: +92 300 6548748 <+92%20300%206548748>
Email: javedshoukat...@gmail.com
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] SQL help please

2017-12-11 Thread DHD.KOHA

what version of KOHA ?



On 11/12/2017 02:18 πμ, Kerrie Stevens wrote:

Is there a way to write an SQL report where you can input a number of item 
barcodes (as you do when using batch modify or delete) that results in a table 
showing title, author, call number etc...?

Thanks for any help you may provide!


Kerrie Stevens
AALIA(CP), MAppSc(Lib)(CSU), BBus(InfoMgt)(RMIT)

College Librarian
First Aid Officer
College Archivist
Copyright Compliance Officer
Journal Manager – Journal of Contemporary Ministry

Harvest Bible College

OFFICE: +61 3 8799 
DIRECT LINE: +61 3 8799 1155
EMAIL: kstev...@harvest.edu.au
STREET ADDRESS: 1 Keith Campbell Court, Scoresby VIC 3179 AUSTRALIA
POSTAL ADDRESS: PO BOX 9183, Scoresby VIC 3179 AUSTRALIA
WORKING HOURS: Mon - Thurs 8.30am – 4.30pm, Fri 8.30am – 3pm

harvest.edu.au
CRICOS CODE: 01035C (VIC) Harvest Bible College Ltd.
[RTO: 0067]

DISCLAIMER: The information contained in this e-mail is confidential and may 
also be privileged. Opinions expressed are those of the sender and not 
necessarily the opinions of Harvest Bible College. If you are not the 
addressee, any use of this communication is strictly prohibited. If you have 
received this message in error, please contact i...@harvest.edu.au While 
Harvest Bible College is using the latest antiviral tools, we do not except 
responsibility for problems caused by virus or other destructive mechanisms 
which may be attached to electronic communication. Please scan this email and 
other attachment for viruses.

___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] SQL help please

2017-12-11 Thread Mark Alexander
Excerpts from Pedro Amorim's message of 2017-12-11 14:18:08 -0100:
> This should work:
> 
> Select title, author, i.itemcallnumber from biblio b
> Left join biblioitems bi on b.biblionumber=bi.biblionumber
> Left join items i on bi.biblionumber=i.biblionumber
> where i.barcode IN ("BARCODE1", "BARCODE2", "BARCODE3");

This can also be made into an SQL report using multiple entry fields
for the barcodes.  It's a bit of a kludge but seems to work because
the blank fields are treated either as '' or NULL in the generated SQL.

Select title, author, i.itemcallnumber from biblio b
Left join biblioitems bi on b.biblionumber=bi.biblionumber
Left join items i on bi.biblionumber=i.biblionumber
where i.barcode = <>
or i.barcode = <>
or i.barcode = <>
or i.barcode = <>
or i.barcode = <>
or i.barcode = <>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha 17.11 Modification log problem

2017-12-11 Thread Jonathan Druart
Hi,

I need feedback on bug 19791 to provide a patch.

Regards,
Jonathan

On Sat, 9 Dec 2017 at 17:43 Abdulsalam Yousef  wrote:

> Hello all,
>
> Showing patron Modification log from koha 17.11 doesn't show any system log
> for the patron, Instead it redirects to (
> http://domain_name/cgi-bin/koha/circ/circulation.pl?borrowernumber=
>
> Thanks in advance.
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] SQL help please

2017-12-11 Thread Pedro Amorim
Hello Kerrie,

This should work:

Select title, author, i.itemcallnumber from biblio b
Left join biblioitems bi on b.biblionumber=bi.biblionumber
Left join items i on bi.biblionumber=i.biblionumber
where i.barcode IN ("BARCODE1", "BARCODE2", "BARCODE3");

GL,

Pedro Amorim

On 11 December 2017 at 04:39, SATISH  wrote:

> And Barcodes can be searched with wild cards '%' or '_'
>
> eg: 45% results in
> 45, 451,452,453..459, 4500
> this would help you to some extent.
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] error with z39.50

2017-12-11 Thread Pedro Amorim
Hello Johan,

Does this show when you perform the search? Is your installation UNIMARC?
I might be wrong but seems to me some of the search results might contain
"ugly" characters.

Try to narrow it down and perform several different searches but on each of
the z39.50 servers you have configured one at a time.

GL,

Pedro Amorim

On 11 December 2017 at 07:51, Johan Seyfferdt  wrote:

> Hello,  sorry for asking another question
>
> We ran into another error this time with z39.50.
>
> We added several servers but when trying to use this service we get the
> following error.
>
> Unsupported UNIMARC character encoding [] for XML output for UNIMARC; 100$a
> ->  at /usr/share/perl5/MARC/File/XML.pm line 568.
> For help, please send mail to the webmaster ([no address given]), giving
> this error message and the time and date of the error.
>
> Any help will be greatly appreciated!
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] error with z39.50

2017-12-11 Thread Johan Seyfferdt
Hello,  sorry for asking another question

We ran into another error this time with z39.50.

We added several servers but when trying to use this service we get the
following error.

Unsupported UNIMARC character encoding [] for XML output for UNIMARC; 100$a
->  at /usr/share/perl5/MARC/File/XML.pm line 568.
For help, please send mail to the webmaster ([no address given]), giving
this error message and the time and date of the error.

Any help will be greatly appreciated!
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] KOCT 0.4.5

2017-12-11 Thread Matthias Meusburger
Please send me the patch by email, and I'll integrate it for the next 
release :)


Le 08/12/2017 à 20:39, Radek Šiman a écrit :

Hi Matthias,

the translation I promised is ready and committed to my local branch, 
but I can see no "fork" button at 
https://git.biblibre.com/biblibre/koct-webext

What to do next, please...?

Thanks.
Radek

Dne 07.12.17 v 10:18 Matthias Meusburger napsal(a):

Yes, these instructions to translate are still up-to-date.

I'll gladly integrate any translation.

Le 07/12/2017 à 08:06, Josef Moravec a écrit :

Hi Radek,

see this mail:
http://lists.koha-community.org/pipermail/koha-devel/2017-October/044090.html 



are you going to make the translation? ;)

Josef

st 6. 12. 2017 v 22:13 odesílatel Radek Šiman 
napsal:


Great job, Matthias!

Is there a way how we can translate the tool into Czech? If yes, please
guide me... Some of our (mainly older) librarians have difficulties
while using it in English.
Thanks.

Radek

Dne 06.12.17 v 13:26 Matthias Meusburger napsal(a):

Hi everyone,

We had a "Ship it" day during this Biblibre winter camp, and I chose
to work on KOCT.

So here's what's new in v0.4.5:

  - Add a "configuration test" button which will check if koha host,
username and password are ok


  - Retrieve branchnames and branchcodes as a dropdown list

(when https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16497
is available, adresses
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19689 )


  - Cleaner error handling

(when https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19752
is available)


  - Add data export in Koc format

(see

https://wiki.koha-community.org/wiki/Koha_offline_circulation_file_format 


)


  - Add a button to jump to the configuration page.


This new version should be available at Mozilla's in a couple of days.

Enjoy :)
___
Koha mailing list http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha



___
Koha mailing list http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


___
Koha mailing list http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


___
Koha mailing list http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha




___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha