|
From: | Rob Weir |
Subject: | Re: [Koha-win32] Koha 2.2.8. error in Add new Patron & Barcode |
Date: | Sat, 28 Apr 2007 13:30:39 -0400 |
User-agent: | Thunderbird 2.0.0.0 (Windows/20070326) |
Hi Nihar, For your first problem, adding a new patron, there are a couple of bugs that need to be fixed: First, when you add a new member, it is trying to insert a null in to the gonenoaddress field, and mysql 5 causes the insert to fail. To fix this, in memberentry.pl, change line 217 from my %flags = ('gonenoaddress' => ['gna', 'Gone no address'], to my %flags = ('gonenoaddress' => ['gonenoaddress', 'Gone no address'], Second, you must enter a valid birthdate or the insert will fail. Third, there is a problem in V2.2.8 with the dateenrolled (joining) and expiry date fields not filling correctly that is being discussed on the main list under the topic "Date problems adding new members". There isn't a solution for this yet. However, for now, if you manually enter both of these fields, then you should be able to add a new member. Watch the main list for a fix for this. For your second problem printing barcodes, you need to change line 33 of both barcodesGenerator.pl and printerConfig.pl from use PDF::API2::PDF::Utils; to use PDF::API2::Basic::PDF::Utils; To print barcodes, you should go to the Koha Administration page, and click on the Spine and Barcode label generator link all the way at the bottom of the page. This is a newer version of the barcode generator, and the only one that works, at least on windows. The older "Generate Barcodes" does not work and I don't know of any plans to fix it. I don't understand your third question about "Note Page size's column is not functioning." Maybe you could explain some more or perhaps someone else can help. Rob Nihar Patra wrote:
|
[Prev in Thread] | Current Thread | [Next in Thread] |