Re: [Koha] I can not use OPAC URL without the port number

2017-05-25 Thread Mark Tompsett
Greetings,

When you specify a port other than 80, you have to put the port number.
Apache documentation is useful reading.
http://httpd.apache.org/docs/current/vhosts/

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


[Koha] I can not use OPAC URL without the port number

2017-05-25 Thread Luis Moises Rojas
Hi everybody.

We still can not use the OPAC without the port number.
we still have to type: biblio.suddomain.domain:port number

In the koha-sites we have:

DOMAIN="suddomain.domain"
INTRAPORT=""
INTRASUFFIX='-intra"
OPACPORT:
OPACPREFIX="Thename"
OPACSUFFIX=""

but when we type the URL: OPACPREFIX.DOMAIN it does not works, we have to
type the OPACPORT: OPACPREFIX.DOMAIN:



-- 
*Luis Moisés Rojas P.*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Mark an item as invisible in OPAC

2017-05-25 Thread Owen Leonard
> I have a record with serveral items, let say: 5 items
> If one item i damaged, only one item: How do we tell OPAC to display 4
> items?

Take a look at the "OpacHiddenItems" system preference:

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

  -- Owen

-- 
Web Developer
Athens County Public Libraries
http://www.myacpl.org
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha 16.05.13 release

2017-05-25 Thread Mirko Tietgen
Mason James schrieb am 24.05.2017
> The Koha community is proud to announce the release of Koha 16.05.13
> 
> This is a maintenance release and includes 36 bugfixes, and Hea2 :0)
>  https://hea.koha-community.org/
> 
> The full release notes are available at
>  https://koha-community.org/koha-16.05.13-release/
> 
> Packages will be available soon.

The Debian package for Koha 16.05.13 is now available from the Koha
community repository.

Please note that this will be the last official Debian package for
the Koha 16.05.x branch.

With the release of Koha 17.05, Debian packages will be available for
Koha 17.05.x('stable')
Koha 16.11.x('oldstable')

Koha 16.05.x will continue to be maintained during the coming
release cycle and receive maintenance and security updates, but
there won't be official Debian packages available from the Koha
community repository any longer.

Cheers,

Mirko


--

Mirko Tietgen
mi...@abunchofthings.net
http://koha.abunchofthings.net
http://meinkoha.de

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


Re: [Koha] How can i count the total catalog entry by user wise

2017-05-25 Thread Anastes Mp
Lol...!
Worked like a charm. Thanks for your support.

On Thu, May 25, 2017 at 5:40 PM, Lennon Mazonde  wrote:

> Hi Anastes,
>
> You can  find SQL reports from the Koha SQL Reports wiki here
> .
> Go to More > Reports > Create from SQL. Give the report a name that will
> help you remember what it's for (or just copy and paste the details from
> the SQL Reports wiki).
>
> Then copy and paste the following under the SQL tab.
>
> SELECT concat(p.firstname, ' ', p.surname) AS staff, concat(a.action, ' ',
> a.info) AS action, count(a.timestamp) AS count
> FROM action_logs a
> LEFT JOIN borrowers p ON (a.user=p.borrowernumber)
> WHERE a.module='CATALOGUING' AND a.timestamp BETWEEN < (-mm-dd)|date>> AND <>
>   AND a.info IN ('item','biblio')
> GROUP BY p.borrowernumber, concat(a.action, ' ', a.info)
>
> Save the report and run it. Oh, you need to turn the CataloguingLog system
> preference on (More > Administration > Global System Preferences > Logs >
> CataloguingLog.
>
> Kind regards,
>
> Lennon Mazonde
>
> On 25/05/2017 13:48, Anastes Mp wrote:
>
> We've 4 staff in our library for catalog entry and each of them have koha
> librarian accounts. We would like analyze their work by counting the total
> number of books they entered.
> How can we count / generate report on the total number of books entered by
> a user?
>
>
>
>


-- 

Regards
Anastes Mp foranas...@gmail.com +91-9744949078 [image: Facebook]
 [image: Google]
 [image: LinkedIn] [image: Twitter]
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Mark an item as invisible in OPAC

2017-05-25 Thread Luis Moises Rojas
Hello everybody,

I have a record with serveral items, let say: 5 items
If one item i damaged, only one item: How do we tell OPAC to display 4
items?

thanks

-- 
*Luis Moisés Rojas P.*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] ICU Chains Configuration for Spanish

2017-05-25 Thread Barton Chittenden
I'm having issues searching for the Title

¿Tartamudeas? : una guía para adolescentes /

After a bit of poking around, I realized that searching for


¿Tartamudeas?

works, but a search for Tartamudeas or Tartamudeas? does not -- i.e. the
leading '¿' [Character 'INVERTED QUESTION MARK' (U+00BF)] is not being
counted as punctuation, and the resulting search string must match
'¿Tartamudea' exactly to get a hit.

I think this can be fixed via an icu_chain rule, as would be found in
https://wiki.koha-community.org/wiki/ICU_Chains_Library, but we don't have
anything on the wiki for locale="es".

Has anyone run into this /  have a rule that I can use?

Thanks,

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


Re: [Koha] How can i count the total catalog entry by user wise

2017-05-25 Thread Lennon Mazonde

Hi Anastes,

You can  find SQL reports from the Koha SQL Reports wiki here 
. 
Go to More > Reports > Create from SQL. Give the report a name that will 
help you remember what it's for (or just copy and paste the details from 
the SQL Reports wiki).


Then copy and paste the following under the SQL tab.

   SELECT concat(p.firstname, ' ', p.surname) AS staff,
   concat(a.action, ' ', a.info) AS action, count(a.timestamp) AS count
   FROM action_logs a
   LEFT JOIN borrowers p ON (a.user=p.borrowernumber)
   WHERE a.module='CATALOGUING' AND a.timestamp BETWEEN <> AND <>
  AND a.info IN ('item','biblio')
   GROUP BY p.borrowernumber, concat(a.action, ' ', a.info)

Save the report and run it. Oh, you need to turn the CataloguingLog 
system preference on (More > Administration > Global System Preferences 
> Logs > CataloguingLog.


Kind regards,

Lennon Mazonde

On 25/05/2017 13:48, Anastes Mp wrote:

We've 4 staff in our library for catalog entry and each of them have koha
librarian accounts. We would like analyze their work by counting the total
number of books they entered.
How can we count / generate report on the total number of books entered by
a user?



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


Re: [Koha] How can i count the total catalog entry by user wise

2017-05-25 Thread Indranil Das Gupta
Hi,

On Thu, May 25, 2017 at 5:18 PM, Anastes Mp  wrote:
> We've 4 staff in our library for catalog entry and each of them have koha
> librarian accounts. We would like analyze their work by counting the total
> number of books they entered.
> How can we count / generate report on the total number of books entered by
> a user?

Start looking at the reports from here
https://wiki.koha-community.org/wiki/SQL_Reports_Library#Count_of_items_added_by_cataloger
and modify as per your needs.

hope this helps

Indranil Das Gupta
L2C2 Technologies

Phone : +91-98300-20971
WWW  : http://www.l2c2.co.in
Blog: http://blog.l2c2.co.in
IRC : indradg on irc://irc.freenode.net
Twitter : indradg
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] How can i count the total catalog entry by user wise

2017-05-25 Thread Pedro Amorim
Hello Anastes,

By *books* you mean biblio records or items?
Either way, some available reports my help you, such as:

For *items*:
https://wiki.koha-community.org/wiki/SQL_Reports_Library#Count_of_items_added_by_cataloger

Or for *biblios*:
https://wiki.koha-community.org/wiki/SQL_Reports_Library#Count_of_bibs_modified_by_cataloger

GL,

Pedro Amorim

2017-05-25 11:48 GMT+00:00 Anastes Mp :

> We've 4 staff in our library for catalog entry and each of them have koha
> librarian accounts. We would like analyze their work by counting the total
> number of books they entered.
> How can we count / generate report on the total number of books entered by
> a user?
>
> --
>
> Regards
> Anastes Mp foranas...@gmail.com +91-9744949078 [image: Facebook]
>  [image: Google]
>  [image: LinkedIn] [image: Twitter]
> ___
> 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] How can i count the total catalog entry by user wise

2017-05-25 Thread Anastes Mp
We've 4 staff in our library for catalog entry and each of them have koha
librarian accounts. We would like analyze their work by counting the total
number of books they entered.
How can we count / generate report on the total number of books entered by
a user?

-- 

Regards
Anastes Mp foranas...@gmail.com +91-9744949078 [image: Facebook]
 [image: Google]
 [image: LinkedIn] [image: Twitter]
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha