[Koha] OPAC open in new window

2017-10-09 Thread Marian May A. Marquez
Hi!
At the backend cataloguing of koha, whenever I click "open in new window" to 
view the opac of a record, the page won't load.
Please help.
Thanks!
















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


Re: [Koha] Adding an independent branch

2017-10-09 Thread Josef Moravec
Hi Elaine,

maybe a report like this could be useful for you, it searches for
candidates to merging and have buttons to merge found records. Candidates
are grouped by author, title, part number and volume title:

SELECT GROUP_CONCAT(bi.isbn) as isbns, b.author,
CONCAT_WS(" ", ExtractValue(bm.metadata,
'//datafield[@tag="245"]/subfield[@code="a"]'), ExtractValue(bm.metadata,
'//datafield[@tag="245"]/subfield[@code="b"]'), ExtractValue(bm.metadata,
'//datafield[@tag="245"]/subfield[@code="p"]'), ExtractValue(bm.metadata,
'//datafield[@tag="245"]/subfield[@code="n"]')) as title_norm,
CONCAT_WS("", ExtractValue(bm.metadata,
'//datafield[@tag="260"]/subfield[@code="c"]'), ExtractValue(bm.metadata,
'//datafield[@tag="264"]/subfield[@code="c"]')) as year_norm,
bi.place, bi.publishercode, b.copyrightdate, COUNT(*) as recordscount ,
CONCAT_WS("", " Search") as Search,
CONCAT_WS("", " Merge") AS Merge
FROM biblio b
JOIN biblioitems bi ON b.biblionumber = bi.biblionumber
JOIN biblio_metadata bm ON b.biblionumber = bm.biblionumber
GROUP BY title_norm, b.author, year_norm, frameworkcode
having recordscount > 1 AND year_norm != ""
order by isbns, b.author




Josef

po 9. 10. 2017 v 18:37 odesílatel Elaine Bradtke  napsal:

> We have a sister library with very similar content that would like to be
> added as an independent branch. I estimate the duplication rate of their
> material with ours is 95% or better.  But most of this material does not
> have an ISBN number. Their data, in its raw state is quite messy, and needs
> cleaning up, but much of this work could be avoided by linking to biblio
> records already in our catalogue.
>
> Given that they have a part time professional librarian on a limited
> contrantract (and I'm only part time on another limited contract) we're
> trying to work out the most efficient way to add their records as an
> independent branch.
>
> Plan A) I have uploaded their data into our test site, with the item
> records designated as their branch - If they did the linking and
> corrections in the test site, could I export only their branch's records
> (mostly item records, but perhaps some biblios) and import them into our
> main site? We use the 999c in record matching because so much of our
> material doesn't have ISBN.
>
> Plan B) Upload their data directly to the main site, but mark them all as
> Hide in OPAC until they can edit them. Simpler, but we're worried how much
> access we'll have to grant to our biblio records.
>
> Because we're keeping the branches very separate, would they be able to add
> items to our bib records if they are limited to editing records from their
> own branch? The problem is their cataloguing is done by volunteers and
> especially after the professional librarian's contract ends,  we want to
> very strictly limit what they can do to our records.
>
> What's the best way to add items belonging to another branch if you have to
> do it manually (because of no ISBN numbers?) Do you use the merge function?
> I think this will require a lot of experimentation, but I'd love to hear
> from anyone who's had experience with this process.
> Thanks!
>
> Elaine Bradtke
>
> VWML
> English Folk Dance and Song Society | http://www.efdss.org
> Cecil Sharp House, 2 Regent's Park Road, London NW1 7AY
> 
> Tel+44 (0) 20 7485 2206 <+44%2020%207485%202206> (This number is for
> the English Folk Dance and
> Song Society in London, England. If you wish to phone me personally, send
> an e-mail first. I work off site)
> --
> Registered Company No. 297142
> Charity Registered in England and Wales No. 305999
> ---
> "Writing about music is like dancing about architecture"
> --Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)
> ___
> 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] Help needed with SQL report

2017-10-09 Thread Elaine Bradtke
Thanks everyone!
I added the limit by biblio number and this works:
SELECT  biblioitems.biblionumber,biblio.title,biblio.copyrightdate,
ExtractValue(m.metadata, '//datafield[@tag="260"]/subfield[@code="c"]') AS
text FROM items LEFT JOIN biblioitems on
(items.biblioitemnumber=biblioitems.biblioitemnumber) LEFT JOIN biblio on
(biblioitems.biblionumber=biblio.biblionumber) LEFT JOIN  biblio_metadata m
ON (biblio.biblionumber=m.biblionumber) WHERE items.biblionumber >= '17920'
AND items.biblionumber <= '17959'  ORDER BY biblio.copyrightdate asc

Elaine Bradtke
Data Wrangler
VWML
English Folk Dance and Song Society | http://www.efdss.org
Cecil Sharp House, 2 Regent's Park Road, London NW1 7AY
Tel+44 (0) 20 7485 2206 (This number is for the English Folk Dance and
Song Society in London, England. If you wish to phone me personally, send
an e-mail first. I work off site)
--
Registered Company No. 297142
Charity Registered in England and Wales No. 305999
---
"Writing about music is like dancing about architecture"
--Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)

On Mon, Oct 9, 2017 at 9:42 AM, Jonathan Druart <
jonathan.dru...@bugs.koha-community.org> wrote:

> Sorry,  I badly pasted the query.
> Try:
> SELECT  biblioitems.biblionumber,biblio.title,biblio.copyrightdate,
>  ExtractValue(m.metadata, '//datafield[@tag="260"]/subfield[@code="c"]')
> AS text FROM items LEFT JOIN biblioitems on 
> (items.biblioitemnumber=biblioitems.biblioitemnumber)
> LEFT JOIN biblio on (biblioitems.biblionumber=biblio.biblionumber) LEFT
> JOIN  biblio_metadata m ON (biblio.biblionumber=m.biblionumber)  ORDER BY
> biblio.copyrightdate asc;
>
>
> On Mon, 9 Oct 2017 at 13:10 Elaine Bradtke  wrote:
>
>> this time it says: You have an error in your SQL syntax; check the
>> manual that corresponds to your MySQL server version for the right syntax
>> to use near 'JOIN biblio_metadata m ON (biblio.biblionumber=m.biblionumber)
>> ORDER BY biblio' at line 7
>> I think we're getting closer.
>>
>> Elaine Bradtke
>> Data Wrangler
>> VWML
>> English Folk Dance and Song Society | http://www.efdss.org
>> Cecil Sharp House, 2 Regent
>> 
>> 's Park Road, London NW1 7AY
>> 
>> Tel+44 (0) 20 7485 2206 <+44%2020%207485%202206> (This number is for
>> the English Folk Dance and Song Society in London, England. If you wish to
>> phone me personally, send an e-mail first. I work off site)
>> 
>> --
>> Registered Company No. 297142
>> Charity Registered in England and Wales No. 305999
>> 
>> ---
>> "Writing about music is like dancing about architecture"
>> --Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)
>>
>> On Thu, Oct 5, 2017 at 8:11 AM, Jonathan Druart <
>> jonathan.dru...@bugs.koha-community.org> wrote:
>>
>>> Since 17196 (17.05) you need to join on biblio_metadata
>>> Try the following query:
>>> SELECT  biblioitems.biblionumber, biblio.title, biblio.copyrightdate,
>>>   ExtractValue(m.metadata, 
>>> '//datafield[@tag="260"]/subfield[@code="c"]')
>>> AS text
>>> FROM items
>>> LEFT JOIN biblioitems on (items.biblioitemnumber=
>>> biblioitems.biblioitemnumber)
>>> LEFT JOIN biblio on (biblioitems.biblionumber=
>>> LEFT JOIN  biblio_metadata m ON (biblio.biblionumber=m.biblionumber)
>>> ORDER BY biblio.copyrightdate asc;
>>>
>>> On Thu, 5 Oct 2017 at 11:43 Elaine Bradtke  wrote:
>>>
 It gives the error message:
 *The following error was encountered:*
 The database returned the following error:
 Unknown column 'biblioitems.marcxml' in 'field list'

 Elaine Bradtke
 Data Wrangler
 VWML
 English Folk Dance and Song Society | http://www.efdss.org
 Cecil Sharp House, 2 Regent's Park Road, London NW1 7AY
 
 Tel+44 (0) 20 7485 2206 <+44%2020%207485%202206> (This number is
 for the English Folk Dance and
 Song Society in London, England. If you wish to phone me personally,
 send
 an e-mail first. I work off site)
 
 --
 Registered Company No. 297142
 Charity Registered in England and Wales No. 305999
 
 ---
 "Writing about music is like dancing about architecture"
 --Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)

 On Thu, Oct 5, 2017 at 3:16 PM, Holger Meissner <
 holger.meiss...@hs-gesundheit.de> wrote:

Re: [Koha] Help needed with SQL report

2017-10-09 Thread Elaine Bradtke
OK, that works.  Now I just need to limit it to the range of biblio
numbers.  I think I can manage that.

Elaine Bradtke
Data Wrangler
VWML
English Folk Dance and Song Society | http://www.efdss.org
Cecil Sharp House, 2 Regent's Park Road, London NW1 7AY
Tel+44 (0) 20 7485 2206 (This number is for the English Folk Dance and
Song Society in London, England. If you wish to phone me personally, send
an e-mail first. I work off site)
--
Registered Company No. 297142
Charity Registered in England and Wales No. 305999
---
"Writing about music is like dancing about architecture"
--Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)

On Mon, Oct 9, 2017 at 9:42 AM, Jonathan Druart <
jonathan.dru...@bugs.koha-community.org> wrote:

> Sorry,  I badly pasted the query.
> Try:
> SELECT  biblioitems.biblionumber,biblio.title,biblio.copyrightdate,
>  ExtractValue(m.metadata, '//datafield[@tag="260"]/subfield[@code="c"]')
> AS text FROM items LEFT JOIN biblioitems on 
> (items.biblioitemnumber=biblioitems.biblioitemnumber)
> LEFT JOIN biblio on (biblioitems.biblionumber=biblio.biblionumber) LEFT
> JOIN  biblio_metadata m ON (biblio.biblionumber=m.biblionumber)  ORDER BY
> biblio.copyrightdate asc;
>
>
> On Mon, 9 Oct 2017 at 13:10 Elaine Bradtke  wrote:
>
>> this time it says: You have an error in your SQL syntax; check the
>> manual that corresponds to your MySQL server version for the right syntax
>> to use near 'JOIN biblio_metadata m ON (biblio.biblionumber=m.biblionumber)
>> ORDER BY biblio' at line 7
>> I think we're getting closer.
>>
>> Elaine Bradtke
>> Data Wrangler
>> VWML
>> English Folk Dance and Song Society | http://www.efdss.org
>> Cecil Sharp House, 2 Regent
>> 
>> 's Park Road, London NW1 7AY
>> 
>> Tel+44 (0) 20 7485 2206 <+44%2020%207485%202206> (This number is for
>> the English Folk Dance and Song Society in London, England. If you wish to
>> phone me personally, send an e-mail first. I work off site)
>> 
>> --
>> Registered Company No. 297142
>> Charity Registered in England and Wales No. 305999
>> 
>> ---
>> "Writing about music is like dancing about architecture"
>> --Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)
>>
>> On Thu, Oct 5, 2017 at 8:11 AM, Jonathan Druart <
>> jonathan.dru...@bugs.koha-community.org> wrote:
>>
>>> Since 17196 (17.05) you need to join on biblio_metadata
>>> Try the following query:
>>> SELECT  biblioitems.biblionumber, biblio.title, biblio.copyrightdate,
>>>   ExtractValue(m.metadata, 
>>> '//datafield[@tag="260"]/subfield[@code="c"]')
>>> AS text
>>> FROM items
>>> LEFT JOIN biblioitems on (items.biblioitemnumber=
>>> biblioitems.biblioitemnumber)
>>> LEFT JOIN biblio on (biblioitems.biblionumber=
>>> LEFT JOIN  biblio_metadata m ON (biblio.biblionumber=m.biblionumber)
>>> ORDER BY biblio.copyrightdate asc;
>>>
>>> On Thu, 5 Oct 2017 at 11:43 Elaine Bradtke  wrote:
>>>
 It gives the error message:
 *The following error was encountered:*
 The database returned the following error:
 Unknown column 'biblioitems.marcxml' in 'field list'

 Elaine Bradtke
 Data Wrangler
 VWML
 English Folk Dance and Song Society | http://www.efdss.org
 Cecil Sharp House, 2 Regent's Park Road, London NW1 7AY
 
 Tel+44 (0) 20 7485 2206 <+44%2020%207485%202206> (This number is
 for the English Folk Dance and
 Song Society in London, England. If you wish to phone me personally,
 send
 an e-mail first. I work off site)
 
 --
 Registered Company No. 297142
 Charity Registered in England and Wales No. 305999
 
 ---
 "Writing about music is like dancing about architecture"
 --Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)

 On Thu, Oct 5, 2017 at 3:16 PM, Holger Meissner <
 holger.meiss...@hs-gesundheit.de> wrote:

 > Hi Elaine,
 >
 > how about this:
 >
 > SELECT
 > biblioitems.biblionumber,
 > biblio.title,
 > ExtractValue(biblioitems.marcxml, '//datafield[@tag="260"]/
 subfield[@code="c"]')
 > AS text
 > FROM items
 > LEFT JOIN biblioitems on (items.biblioitemnumber=
 > biblioitems.biblioitemnumber)
 > LEFT JOIN biblio on (biblioitems.biblionumber=biblio.biblionumber)
 > 

Re: [Koha] Help needed with SQL report

2017-10-09 Thread Jonathan Druart
Sorry,  I badly pasted the query.
Try:
SELECT  biblioitems.biblionumber,biblio.title,biblio.copyrightdate,
 ExtractValue(m.metadata, '//datafield[@tag="260"]/subfield[@code="c"]') AS
text FROM items LEFT JOIN biblioitems on
(items.biblioitemnumber=biblioitems.biblioitemnumber) LEFT JOIN biblio on
(biblioitems.biblionumber=biblio.biblionumber) LEFT JOIN  biblio_metadata m
ON (biblio.biblionumber=m.biblionumber)  ORDER BY biblio.copyrightdate asc;

On Mon, 9 Oct 2017 at 13:10 Elaine Bradtke  wrote:

> this time it says: You have an error in your SQL syntax; check the manual
> that corresponds to your MySQL server version for the right syntax to use
> near 'JOIN biblio_metadata m ON (biblio.biblionumber=m.biblionumber) ORDER
> BY biblio' at line 7
> I think we're getting closer.
>
> Elaine Bradtke
> Data Wrangler
> VWML
> English Folk Dance and Song Society | http://www.efdss.org
> Cecil Sharp House, 2 Regent
> 
> 's Park Road, London NW1 7AY
> 
> Tel+44 (0) 20 7485 2206 <+44%2020%207485%202206> (This number is for
> the English Folk Dance and Song Society in London, England. If you wish to
> phone me personally, send an e-mail first. I work off site)
> --
> Registered Company No. 297142
> Charity Registered in England and Wales No. 305999
> ---
> "Writing about music is like dancing about architecture"
> --Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)
>
> On Thu, Oct 5, 2017 at 8:11 AM, Jonathan Druart <
> jonathan.dru...@bugs.koha-community.org> wrote:
>
>> Since 17196 (17.05) you need to join on biblio_metadata
>> Try the following query:
>> SELECT  biblioitems.biblionumber, biblio.title, biblio.copyrightdate,
>>   ExtractValue(m.metadata,
>> '//datafield[@tag="260"]/subfield[@code="c"]') AS text
>> FROM items
>> LEFT JOIN biblioitems on
>> (items.biblioitemnumber=biblioitems.biblioitemnumber)
>> LEFT JOIN biblio on (biblioitems.biblionumber=
>> LEFT JOIN  biblio_metadata m ON (biblio.biblionumber=m.biblionumber)
>> ORDER BY biblio.copyrightdate asc;
>>
>> On Thu, 5 Oct 2017 at 11:43 Elaine Bradtke  wrote:
>>
>>> It gives the error message:
>>> *The following error was encountered:*
>>> The database returned the following error:
>>> Unknown column 'biblioitems.marcxml' in 'field list'
>>>
>>> Elaine Bradtke
>>> Data Wrangler
>>> VWML
>>> English Folk Dance and Song Society | http://www.efdss.org
>>> Cecil Sharp House, 2 Regent's Park Road, London NW1 7AY
>>> 
>>> Tel+44 (0) 20 7485 2206 <+44%2020%207485%202206> (This number is
>>> for the English Folk Dance and
>>> Song Society in London, England. If you wish to phone me personally, send
>>> an e-mail first. I work off site)
>>>
>>> --
>>> Registered Company No. 297142
>>> Charity Registered in England and Wales No. 305999
>>>
>>> ---
>>> "Writing about music is like dancing about architecture"
>>> --Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)
>>>
>>> On Thu, Oct 5, 2017 at 3:16 PM, Holger Meissner <
>>> holger.meiss...@hs-gesundheit.de> wrote:
>>>
>>> > Hi Elaine,
>>> >
>>> > how about this:
>>> >
>>> > SELECT
>>> > biblioitems.biblionumber,
>>> > biblio.title,
>>> > ExtractValue(biblioitems.marcxml,
>>> '//datafield[@tag="260"]/subfield[@code="c"]')
>>> > AS text
>>> > FROM items
>>> > LEFT JOIN biblioitems on (items.biblioitemnumber=
>>> > biblioitems.biblioitemnumber)
>>> > LEFT JOIN biblio on (biblioitems.biblionumber=biblio.biblionumber)
>>> > WHERE
>>> > items.biblionumber >= '17920' AND items.biblionumber <= '17959'
>>> > ORDER BY text ASC
>>> >
>>> >
>>> > -Ursprüngliche Nachricht-
>>> > Von: Koha [mailto:koha-boun...@lists.katipo.co.nz] Im Auftrag von
>>> Elaine
>>> > Bradtke
>>> > Gesendet: Donnerstag, 5. Oktober 2017 15:08
>>> > An: koha
>>> > Betreff: [Koha] Help needed with SQL report
>>> >
>>> > I need a report that gives bib number, title and 260$c from a set of
>>> > records within a range of biblio numbers.
>>> >
>>> > This is what the wizard gives me:
>>> > SELECT  biblioitems.biblionumber,biblio.title,biblio.copyrightdate FROM
>>> > items LEFT JOIN biblioitems on
>>> > (items.biblioitemnumber=biblioitems.biblioitemnumber) LEFT JOIN biblio
>>> on
>>> > (biblioitems.biblionumber=biblio.biblionumber)   WHERE
>>> items.biblionumber
>>> > >= '17920' AND items.biblionumber <= '17959' ORDER BY
>>> > >biblio.copyrightdate
>>> > asc
>>> >
>>> > But it's only giving the year (presumably from the 008?)  I need the
>>> > actual  text 

[Koha] Adding an independent branch

2017-10-09 Thread Elaine Bradtke
We have a sister library with very similar content that would like to be
added as an independent branch. I estimate the duplication rate of their
material with ours is 95% or better.  But most of this material does not
have an ISBN number. Their data, in its raw state is quite messy, and needs
cleaning up, but much of this work could be avoided by linking to biblio
records already in our catalogue.

Given that they have a part time professional librarian on a limited
contrantract (and I'm only part time on another limited contract) we're
trying to work out the most efficient way to add their records as an
independent branch.

Plan A) I have uploaded their data into our test site, with the item
records designated as their branch - If they did the linking and
corrections in the test site, could I export only their branch's records
(mostly item records, but perhaps some biblios) and import them into our
main site? We use the 999c in record matching because so much of our
material doesn't have ISBN.

Plan B) Upload their data directly to the main site, but mark them all as
Hide in OPAC until they can edit them. Simpler, but we're worried how much
access we'll have to grant to our biblio records.

Because we're keeping the branches very separate, would they be able to add
items to our bib records if they are limited to editing records from their
own branch? The problem is their cataloguing is done by volunteers and
especially after the professional librarian's contract ends,  we want to
very strictly limit what they can do to our records.

What's the best way to add items belonging to another branch if you have to
do it manually (because of no ISBN numbers?) Do you use the merge function?
I think this will require a lot of experimentation, but I'd love to hear
from anyone who's had experience with this process.
Thanks!

Elaine Bradtke

VWML
English Folk Dance and Song Society | http://www.efdss.org
Cecil Sharp House, 2 Regent's Park Road, London NW1 7AY
Tel+44 (0) 20 7485 2206 (This number is for the English Folk Dance and
Song Society in London, England. If you wish to phone me personally, send
an e-mail first. I work off site)
--
Registered Company No. 297142
Charity Registered in England and Wales No. 305999
---
"Writing about music is like dancing about architecture"
--Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Who created records

2017-10-09 Thread schnydszch
Hi! You can check this post:
http://koha.1045719.n5.nabble.com/Staff-activity-report-td5906107.html#a5906146
and this one:
http://koha.1045719.n5.nabble.com/REport-that-displays-the-bib-record-with-items-that-has-been-accomplished-by-each-staff-td5827651.html#a5827656
Vikram was right in saying you can check the log viewer. If your Koha
version is less 16.05 or older or the Koha version that biblio_metadata has
not been introduced in the Koha ILS mysql tables, the reports mentioned in
the links will work. This, provided that the log for cataloging has been
enabled. HTH!



--
Sent from: http://koha.1045719.n5.nabble.com/Koha-general-f3047918.html
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Help Me

2017-10-09 Thread King, Fred
We use Digital Ocean for our Authors Catalog. They have a site in Bangalore. 
We're closest to the New York site, but I've run test versions in Toronto and 
San Francisco and I didn't see any delays.

Fred King
Medical Librarian, MedStar Washington Hospital Center
fred.k...@medstar.net
202-877-6670
ORCID -0001-5266-0279
MedStar Authors Catalog: http://medstarauthors.org

Sometimes I’m so oblique, even I don’t know what I’m talking about.
--Shelley Berman, 1925-2017

-Original Message-
From: Koha [mailto:koha-boun...@lists.katipo.co.nz] On Behalf Of Martin House
Sent: Monday, October 09, 2017 9:03 AM
To: Tim Young
Cc: KOHA
Subject: Re: [Koha] Help Me

I should have more clear on my response. I use the Dedicated Server solution at 
https://urldefense.proofpoint.com/v2/url?u=http-3A__atlantic.net=DwIGaQ=RvBXVp2Kc-itN3g6r3sN0QK_zL4whPpndVxj8-bJ04M=vKh6XwOmjyC51IkP1OfsdjQZoWT2vpi6VZl8El8EPRI=q-zT4vWFaIIRUzRuUUmZbSWHeg911X5rFL1O3eJ16qc=Ilb03uJd-Q0v_3y9moKMg9C5MKiBN8MDowJ2PIzgvjs=,
 but my actual server is hosted in Canada. It seems that the closest server 
solution near you would be Singapore, not sure that's close enough. But I do 
think that you need to find a dedicated server solution in your country and 
install it there using ssh. The newest version of Koha makes this much easier 
than in the past. Post more details if you have them, so we can help you.

Martin House
martin.ho...@gmail.com
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.martindhouse.com=DwIGaQ=RvBXVp2Kc-itN3g6r3sN0QK_zL4whPpndVxj8-bJ04M=vKh6XwOmjyC51IkP1OfsdjQZoWT2vpi6VZl8El8EPRI=q-zT4vWFaIIRUzRuUUmZbSWHeg911X5rFL1O3eJ16qc=U7Z8q_UA7xYJa1vspyDfXqGiCs9W-surDNHuw93_TNU=
704-996-0297
"An unexamined life is not worth living."


On Mon, Oct 9, 2017 at 8:56 AM, Tim Young  wrote:

> Hi,
>
> I see that you do have a local Koha install.  I am assuming that 
> someone set it up for you and that you are trying to do something with 
> it now that you have it set up?
>
> I also see that you are coming from India.  You do well with your English.
>
> Kindly add more details.
>
> Am I right in thinking that you can log into your Koha page at 
> https://urldefense.proofpoint.com/v2/url?u=http-3A__192.168.1.82-3A808
> 0_-3F=DwIGaQ=RvBXVp2Kc-itN3g6r3sN0QK_zL4whPpndVxj8-bJ04M=vKh6XwO
> mjyC51IkP1OfsdjQZoWT2vpi6VZl8El8EPRI=q-zT4vWFaIIRUzRuUUmZbSWHeg911X5
> rFL1O3eJ16qc=RF1Rc3G8CXprE81wMXtDlYsJQmoZVTFxsxdofnykIg8=
>
> Once you get there, have you been able to configure your library settings?
>
> If your library is configured, have you been able to add items to your 
> library?
>
> - Tim Young
>
>
> On 10/9/2017 6:43 AM, Rajesh Shelar wrote:
>
>> Dears Friends,
>>  I am using the Koha Open Source library software ,so Please send 
>> me the Details of Library Catalog add in koha  cloud base . i humbly 
>> request please help me .
>>
>> My Koha Ip Address Is.   
>> https://urldefense.proofpoint.com/v2/url?u=http-3A__192.168.1.82-3A8080_=DwIGaQ=RvBXVp2Kc-itN3g6r3sN0QK_zL4whPpndVxj8-bJ04M=vKh6XwOmjyC51IkP1OfsdjQZoWT2vpi6VZl8El8EPRI=q-zT4vWFaIIRUzRuUUmZbSWHeg911X5rFL1O3eJ16qc=g0USOjNylhWlAoGQQF6x9Y9mMAqxKsWnw0SkLGe5vA8=
>>
>>
>>
> ___
> Koha mailing list  
> https://urldefense.proofpoint.com/v2/url?u=http-3A__koha-2Dcommunity.o
> rg=DwIGaQ=RvBXVp2Kc-itN3g6r3sN0QK_zL4whPpndVxj8-bJ04M=vKh6XwOmjy
> C51IkP1OfsdjQZoWT2vpi6VZl8El8EPRI=q-zT4vWFaIIRUzRuUUmZbSWHeg911X5rFL
> 1O3eJ16qc=loLnznvvPKuqP0tjJT4PXrBC8yeDCiBaIGreuUc_adQ=
> Koha@lists.katipo.co.nz
> https://urldefense.proofpoint.com/v2/url?u=https-3A__lists.katipo.co.n
> z_mailman_listinfo_koha=DwIGaQ=RvBXVp2Kc-itN3g6r3sN0QK_zL4whPpndVx
> j8-bJ04M=vKh6XwOmjyC51IkP1OfsdjQZoWT2vpi6VZl8El8EPRI=q-zT4vWFaIIRU
> zRuUUmZbSWHeg911X5rFL1O3eJ16qc=M3B0mUN-KffAZQkC7dTQZdOFvaYsgCo8WH77L
> vbK2v8=
>
___
Koha mailing list  
https://urldefense.proofpoint.com/v2/url?u=http-3A__koha-2Dcommunity.org=DwIGaQ=RvBXVp2Kc-itN3g6r3sN0QK_zL4whPpndVxj8-bJ04M=vKh6XwOmjyC51IkP1OfsdjQZoWT2vpi6VZl8El8EPRI=q-zT4vWFaIIRUzRuUUmZbSWHeg911X5rFL1O3eJ16qc=loLnznvvPKuqP0tjJT4PXrBC8yeDCiBaIGreuUc_adQ=
Koha@lists.katipo.co.nz
https://urldefense.proofpoint.com/v2/url?u=https-3A__lists.katipo.co.nz_mailman_listinfo_koha=DwIGaQ=RvBXVp2Kc-itN3g6r3sN0QK_zL4whPpndVxj8-bJ04M=vKh6XwOmjyC51IkP1OfsdjQZoWT2vpi6VZl8El8EPRI=q-zT4vWFaIIRUzRuUUmZbSWHeg911X5rFL1O3eJ16qc=M3B0mUN-KffAZQkC7dTQZdOFvaYsgCo8WH77LvbK2v8=
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Help Me

2017-10-09 Thread Martin House
I should have more clear on my response. I use the Dedicated Server
solution at atlantic.net, but my actual server is hosted in Canada. It
seems that the closest server solution near you would be Singapore, not
sure that's close enough. But I do think that you need to find a dedicated
server solution in your country and install it there using ssh. The newest
version of Koha makes this much easier than in the past. Post more details
if you have them, so we can help you.

Martin House
martin.ho...@gmail.com
www.martindhouse.com
704-996-0297
"An unexamined life is not worth living."


On Mon, Oct 9, 2017 at 8:56 AM, Tim Young  wrote:

> Hi,
>
> I see that you do have a local Koha install.  I am assuming that someone
> set it up for you and that you are trying to do something with it now that
> you have it set up?
>
> I also see that you are coming from India.  You do well with your English.
>
> Kindly add more details.
>
> Am I right in thinking that you can log into your Koha page at
> http://192.168.1.82:8080/?
>
> Once you get there, have you been able to configure your library settings?
>
> If your library is configured, have you been able to add items to your
> library?
>
> - Tim Young
>
>
> On 10/9/2017 6:43 AM, Rajesh Shelar wrote:
>
>> Dears Friends,
>>  I am using the Koha Open Source library software ,so Please send me
>> the
>> Details of Library Catalog add in koha  cloud base . i humbly request
>> please help me .
>>
>> My Koha Ip Address Is.   http://192.168.1.82:8080/
>>
>>
>>
> ___
> 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] Help Me

2017-10-09 Thread Martin House
I have been successfully running Koha on a cloud server over at
www.atlantic.net. The most basic setup will cost you about $10 per month
with backups. We are currently paying $50 for 4GB Ram and plenty of HD
space. Although, we are about to upgrade RAM to 8GB to increase speed.

Martin House
martin.ho...@gmail.com
www.martindhouse.com
704-996-0297
"An unexamined life is not worth living."


On Mon, Oct 9, 2017 at 8:56 AM, vikram zadgaonkar <
vikramczadgaon...@gmail.com> wrote:

> Dear Friend,
> You need koha cloud hosting service provider. Let me know if you need more
> details.
>
> On Oct 9, 2017 5:13 PM, "Rajesh Shelar"  wrote:
>
> > Dears Friends,
> > I am using the Koha Open Source library software ,so Please send me
> the
> > Details of Library Catalog add in koha  cloud base . i humbly request
> > please help me .
> >
> > My Koha Ip Address Is.   http://192.168.1.82:8080/
> >
> >
> > --
> > *​**Thanks & Regards*
> >
> >
> >
> > *Mr. Rajesh R.Shelar*
> > *Sadhu Vaswani Institute Of Management Studies For Girl's ( MBA )*
> > *Koregaon Road,Pune*
> > *Mob.No.8380941380*
> >
> > *Save Water..Conserve Life.*
> > ___
> > 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


Re: [Koha] Help Me

2017-10-09 Thread Tim Young

Hi,

I see that you do have a local Koha install.  I am assuming that someone 
set it up for you and that you are trying to do something with it now 
that you have it set up?


I also see that you are coming from India.  You do well with your English.

Kindly add more details.

Am I right in thinking that you can log into your Koha page at 
http://192.168.1.82:8080/?


Once you get there, have you been able to configure your library settings?

If your library is configured, have you been able to add items to your 
library?


    - Tim Young


On 10/9/2017 6:43 AM, Rajesh Shelar wrote:

Dears Friends,
 I am using the Koha Open Source library software ,so Please send me the
Details of Library Catalog add in koha  cloud base . i humbly request
please help me .

My Koha Ip Address Is.   http://192.168.1.82:8080/




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


Re: [Koha] Help Me

2017-10-09 Thread vikram zadgaonkar
Dear Friend,
You need koha cloud hosting service provider. Let me know if you need more
details.

On Oct 9, 2017 5:13 PM, "Rajesh Shelar"  wrote:

> Dears Friends,
> I am using the Koha Open Source library software ,so Please send me the
> Details of Library Catalog add in koha  cloud base . i humbly request
> please help me .
>
> My Koha Ip Address Is.   http://192.168.1.82:8080/
>
>
> --
> *​**Thanks & Regards*
>
>
>
> *Mr. Rajesh R.Shelar*
> *Sadhu Vaswani Institute Of Management Studies For Girl's ( MBA )*
> *Koregaon Road,Pune*
> *Mob.No.8380941380*
>
> *Save Water..Conserve Life.*
> ___
> 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] Help Me

2017-10-09 Thread Michael Kuhn

Hi Rajesh

> I am using the Koha Open Source library software ,so Please send me
> the Details of Library Catalog add in koha  cloud base . i humbly
> request please help me .

There is no such thing as an official "Koha cloud base". Maybe you are 
customer of a specific endor, so you should contact this vendor.


> My Koha Ip Address Is.   http://192.168.1.82:8080/

The given address is part of a private IP address range that cannot be 
reached from the internet. So noone reading here will be able to access 
this address.


Hope this helps

Best wishes: Michael
--
Geschäftsführer · Diplombibliothekar BBS, Informatiker eidg. Fachausweis
Admin Kuhn GmbH · Pappelstrasse 20 · 4123 Allschwil · Schweiz
T 0041 (0)61 261 55 61 · E m...@adminkuhn.ch · W www.adminkuhn.ch
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Help Me

2017-10-09 Thread Rajesh Shelar
Dears Friends,
I am using the Koha Open Source library software ,so Please send me the
Details of Library Catalog add in koha  cloud base . i humbly request
please help me .

My Koha Ip Address Is.   http://192.168.1.82:8080/


-- 
*​**Thanks & Regards*



*Mr. Rajesh R.Shelar*
*Sadhu Vaswani Institute Of Management Studies For Girl's ( MBA )*
*Koregaon Road,Pune*
*Mob.No.8380941380*

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


Re: [Koha] Who created records

2017-10-09 Thread vikram zadgaonkar
Hi,
You can check in tools---logviewer.

Vikram Zadgaonkar

On Mon, Oct 9, 2017 at 2:18 PM, Ma. Victoria H. Silva-Manuel <
mavicsi...@gmail.com> wrote:

> Hi.
> How to know or to show who created records in cataloging module?
> There are records that I need to find out who created them.
>
> Thank you.
>
> --
> Ma. Victoria H. Silva-Manuel
> Registered Librarian, 3892
> ___
> 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] Who created records

2017-10-09 Thread Ma. Victoria H. Silva-Manuel
Hi.
How to know or to show who created records in cataloging module?
There are records that I need to find out who created them.

Thank you.

-- 
Ma. Victoria H. Silva-Manuel
Registered Librarian, 3892
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha und GND

2017-10-09 Thread Stowasser Rainer
Hallo Katrin

danke für die Antwort. 

Die Titeldaten funktionieren perfekt
(hier eine Anleitung wie der Zugang funktioniert 
http://abunchofthings.net/blog/freie-metadaten-von-der-dnb-per-sru/ )

Bin gerade dabei Kostenabschätzungen einzuholen um die Implementierung eines 
SRU für Normdaten in Koha abschätzen zu können (und bei mir für 2018 zu 
budgetieren ;-)

LG
Hofrat Mag. Rainer Stowasser
Head of Library ZAMG


Von: Katrin Fischer [katrin.fischer...@web.de]
Gesendet: Montag, 09. Oktober 2017 08:10
An: Stowasser Rainer
Betreff: Re: Koha und GND

Hallo Rainer,

Koha kann im Moment meines Wissens Normdaten leider nur über Z39.50
übernehmen. Ich habe dazu einmal ein enhancement aufgenommen, da wir
auch immer wieder über dieses Problem stolpern:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19436

Das BSZ bietet einen Z39.50-Zugang zur OGND an, der frei genutzt werden
kann:

z3950n.bsz-bw.de:20210
Datenbank: swb104
kein Passwort
UTF-8

Einige weitere Informationen findest du hier:
https://wiki.bsz-bw.de/doku.php?id=v-team:daten:z39.50neu

Allerdings haben wir einige Probleme mit der Suche festgestellt, da die
Suchattribute bei uns anders als von Koha erwartet oder nicht
implementiert sind. Dies kann aktuell leider auch nicht geändert werden.

Generell Fragen immer lieber auf eine der Mailinglisten. Auf der
deutschen Mailingliste ist zwar nicht viel los, aber in der Regel kommt
auf eine Frage schnell eine Antwort:
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-de

Viele Grüße,

Katrin Fischer


On 04.10.2017 14:20, Stowasser Rainer wrote:
> Hallo Kathrin
>
> wir haben uns beim Koha Vortrag Bibliothekarstag Linz gesehen
> und soweit ich das verstanden habe bist Du die "Koha Deutsch Spezialistin".
>
> Deshalb technische Frage (geht sowas eigentlich auch über die Koha Liste ?)
>
> Habe mir einen Zugang zu den Titeldaten und der GND der DNB organisiert.
>
> Die Einrichtung des SRU für die Titeldaten ist kein Problem und funktioniert 
> super.
>
> Bei den Normdaten will Koha aber einen z39.50 Server  ...?
>
> Habe keine Möglichkeit gefunden  die
>
> MARC21-xmlxml  type="Authority">
>
> einzurichten da dies ja bei der DNB ja auch ein sru/gnd ist
>
> Kann man die GND direkt in Koha verwenden ?
>
> Gibts da einen Trick ?
>
> (Dr Google hat hier nicht weitergeholfen ;-)
>
> Vielen Dank.
>
> LG
> Hofrat Mag. Rainer Stowasser
> Head of Library ZAMG

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