Hi Khaliq, You can simply delete: /usr/local/koha /etc/koha.conf /etc/koha-httpd.conf and remove any line you added to your apache configuration. Cheers, -- Joshua Ferraro SUPPORT FOR OPEN-SOURCE SOFTWARE President, Technology migration, training, maintenance, support LibLime Featuring Koha Open-Source ILS jmf@liblime.com |Full Demos at http://liblime.com/koha |1(888)KohaILS ----- "Khaliq Yar Haidary" <khaidary@auaf.net> wrote:
Can anybody tell me how to remove / unstall Koha from Fedora Core 6.
With thank Khaliq Yar khaidary@auaf.net
-----Original Message----- From: koha-bounces@lists.katipo.co.nz [mailto:koha-bounces@lists.katipo.co.nz] On Behalf Of koha-request@lists.katipo.co.nz Sent: Wednesday, May 30, 2007 8:30 PM To: koha@lists.katipo.co.nz Subject: Koha Digest, Vol 19, Issue 42
Send Koha mailing list submissions to koha@lists.katipo.co.nz
To subscribe or unsubscribe via the World Wide Web, visit http://lists.katipo.co.nz/mailman/listinfo/koha or, via email, send a message with subject or body 'help' to koha-request@lists.katipo.co.nz
You can reach the person managing the list at koha-owner@lists.katipo.co.nz
When replying, please edit your Subject line so it is more specific than "Re: Contents of Koha digest..."
Today's Topics:
1. Re: Overdues notices and fines: what scripts are supposed to work? (Kyle Hall) 2. Re: Overdues notices and fines: what scripts are supposed to work? (Kevin O'Rourke) 3. Re: Overdues notices and fines: what scripts are supposed to work? (Kevin O'Rourke) 4. Re: Overdues notices and fines: what scripts are supposed to work? (Joshua M. Ferraro) 5. Re: Overdues notices and fines: what scripts are supposed to work? (Kevin O'Rourke) 6. Re: data entry and barcode generation (Steven F.Baljkas) 7. Re: "Purchase Suggestion" Form Available but does not work (Joshua M. Ferraro)
----------------------------------------------------------------------
Message: 1 Date: Wed, 30 May 2007 09:21:55 -0400 From: "Kyle Hall" <kyle.m.hall@gmail.com> Subject: Re: [Koha] Overdues notices and fines: what scripts are supposed to work? To: "Kevin O'Rourke" <lists@caboose.org.uk> Cc: Koha Mailing List <koha@lists.katipo.co.nz> Message-ID: <aa4e12320705300621s3854a02ak4fa03057312fa11e@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
If you are interested, I've written alternative fines and overdues generators that are part of koha-tools ( http://kylehall.info/index.php/projects/koha-tools/ ).
The fines generator creates fines for an item upon the return of an item, rather then generating fines each night. That means that each item will only have one fine listed that totals the amount due, rather than a fine for each day overdue. This more closely emulates our previous ILS and our librarians preferred it.
The overdues generator allows you to specify the period of 'overdueness' and allows one to create a shelf list to check for items that might have been accidentally shelved without first being returned, and also a pdf of nicely formatted notices to mail out.
Both of them are written in PHP rather than Perl, and that's why I've kept them in a separate project rather than as part of the Koha repository.
Kyle
On 5/30/07, Kevin O'Rourke <lists@caboose.org.uk> wrote:
I've just started looking into emailing overdue notices to our members. I tried out the overduenotices.pl script but it doesn't seem to be working. I don't get any output when I run it with the -n parameter (no email, output to stdout) but I also don't get any errors. Does anyone have this working correctly in 2.2.9 (Debian Sarge)?
The documentation at kohadocs.org seems to suggest that since version 2.2 none of the scripts for calculating fines work. Is this true?
-- Kevin O'Rourke ICT Coordinator, National Teachers' Institute, Kaduna, Nigeria 062 316972
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- IT Tech Crawford County Federated Library System
------------------------------
Message: 2 Date: Wed, 30 May 2007 14:46:59 +0100 From: Kevin O'Rourke <lists@caboose.org.uk> Subject: Re: [Koha] Overdues notices and fines: what scripts are supposed to work? To: Koha Mailing List <koha@lists.katipo.co.nz> Message-ID: <465D8053.7020709@caboose.org.uk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Kyle Hall wrote:
If you are interested, I've written alternative fines and overdues generators that are part of koha-tools ( http://kylehall.info/index.php/projects/koha-tools/ ).
The fines generator creates fines for an item upon the return of an item, rather then generating fines each night. That means that each item will only have one fine listed that totals the amount due, rather than a fine for each day overdue. This more closely emulates our previous ILS and our librarians preferred it. That sounds very interesting. Having to run cron jobs for things like
fines is one of the parts of Koha that seems unnecessarily complicated
to me.
Both of them are written in PHP rather than Perl, and that's why I've kept them in a separate project rather than as part of the Koha repository. I'm a little bit concerned about adding separate things like this to our Koha setup, especially when the download is only possible from a Subversion repository.
I can deal with all these things, but I'm only here until September so
I'm trying to keep the system as easy to deal with as possible.
Thanks
-- Kevin O'Rourke ICT Coordinator, National Teachers' Institute, Kaduna, Nigeria 062 316972
------------------------------
Message: 3 Date: Wed, 30 May 2007 15:20:39 +0100 From: Kevin O'Rourke <lists@caboose.org.uk> Subject: Re: [Koha] Overdues notices and fines: what scripts are supposed to work? To: "Joshua M. Ferraro" <jmf@liblime.com> Cc: Koha Mailing List <koha@lists.katipo.co.nz> Message-ID: <465D8837.7020507@caboose.org.uk> Content-Type: text/plain; charset="utf-8"
The documentation at kohadocs.org seems to suggest that since
version
2.2 none of the scripts for calculating fines work. Is this
Joshua M. Ferraro wrote: true?
I'm still curious which fines script I should use.
The fines module in Koha is a fine example of a feature that hasn't been fully exposed to the system administration section of the admin interface. For now, the assumption is that if you need to enable fines and you're managing Koha yourself (as opposed to getting commercial support from one of the available providers), you'll be spending some time customizing the fines script and module to suit your needs. That said, have a look at the fines2.pl in misc/ that relies on C4/Circulation/Fines.pm, it's a good example of how to start out with fines management in Koha.
Thanks for the information. So it looks like the documentation is wrong and fines2.pl does work, but needs customisation. I've had a look at it and it's not pretty, there are far too many magic numbers in there. For example, there's a maximum fine variable buried in the code, set to 5.
However, here in Nigeria that's far too low (there are about 130 Naira
to the US Dollar). If I had the time I'd rewrite it to read things out of system preferences.
Would I be right in saying that for each "fine cycle" (7 days or whatever) this will add an additional line item to the borrower's record?
Getting support from one of the available providers would be great, but Nigerian educational organisations just don't have the money.
-- Kevin O'Rourke ICT Coordinator, National Teachers' Institute, Kaduna, Nigeria 062 316972