|
From: | Nihar Patra |
Subject: | Re: [Koha-win32] Koha 2.2.8. error in Add new Patron & Barcode |
Date: | Sun, 29 Apr 2007 21:17:52 +0530 |
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:Dear AllI have installed koha ver. 2.2.8 with following configurations:Microsfoft window XP., Apachi 2.2.4, Mysql 5.0.37 & Perl 5.8.8 build 820i am facing following error:First, when filling all the information in Add New Patron and click on add this patron it is not storing. Only filed names are showing not field values.Secondly, it showing following error while creating barcode."Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, address@hidden and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log."
Note Page size's colum is not functioning.
Please help, this is urgent for me.Regards,Nihar
XLRI, India
_______________________________________________ Koha-win32 mailing list address@hidden http://lists.nongnu.org/mailman/listinfo/koha-win32
[Prev in Thread] | Current Thread | [Next in Thread] |