[Koha] OPAC self registration - userid non-Latin characters problem

2016-10-03 Thread Michał Dudzik
Hi,
when a user registrates from OPAC, KOHA generates login automatically
(firstname.surname). If login has non-Latin characters, it changes them to
character "x". Where can I search for the reason?
KOHA 16.05.03 
PERL 5.020002
Linux koha 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt25-2+deb8u3 (2016-07-02)
x86_

Regards
Michal



--
View this message in context: 
http://koha.1045719.n5.nabble.com/OPAC-self-registration-userid-non-Latin-characters-problem-tp5905724.html
Sent from the Koha-general mailing list archive at Nabble.com.
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha Performance Issue

2016-10-03 Thread Martin House
Out of curiosity, does the amount of RAM make a significant difference?
I've been trying to troubleshoot performance issues because of both network
lag at our location. In trying to optimize the page-load speed during
checkout, I've also upped the serve RAM to from 1gig to 4gigs. While that
obviously doesn't address actual network lag (eg. bad pings or lost
packets) it can at least help me verify if the issue is with my Koha server
or with the building network. We are in a leased building, and have no
control over the network infrastructure, so if I can rule out the server as
a speed hindrance, then I can restart the conversation with IT.

Thanks,

Martin

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


On Mon, Oct 3, 2016 at 2:50 PM, Chris Cormack 
wrote:

> * rfblanchard (rfblanch...@hotmail.com) wrote:
> > I'm building a new koha server to replace our old koha 3.0.0 with koha
> > 16.5.4. The new server has better specs than the old one. Towards the
> end of
> > my work I started doing some basic testing of the screens compared to the
> > old system. I noticed the new system is slower (much slower) than our old
> > 3.0 koha. Basically any screen is 5x to 10x slower on the new version of
> > koha. That includes anything from searching to loading the landing page
> of
> > the opac. I checked on some of the koha demo sites and also noticed they
> are
> > quite slow. Has koha just become bloated over time or have I
> misconfigured
> > something?
> >
> > I didn't build the original server, but I compared apache and mysql
> settings
> > and didn't notice anything that the new install was missing. I tried
> using
> > memcached but that did nothing useful as far as I noticed.
> >
> > Does anyone have any insite into speeding up koha performance? caching?
> etc?
> >
> Koha now uses a database independent layer an ORM (Object relationship
> model).
> This allows (in theory) Koha to be run on different database engines, it
> also allows
> for more Object Oriented code, which a lot of people like.
>
> It does have the downside of being quite a bit slower than straight SQL
> though, this
> accounts for most of the slow down you are noticing.
>
> Did you install Koha via packages? If so, you will want to switch plack on
>
> sudo koha-plack --enable 
> sudo koha-plack --start 
>
> Then restart apache. You will want to set up memcache as well. To enable
> caching
> to occur. This should speed things up considerably.
>
> Chris
> --
> Chris Cormack
> Catalyst IT Ltd.
> +64 4 803 2238
> PO Box 11-053, Manners St, Wellington 6142, New Zealand
>
> ___
> 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] Koha Performance Issue

2016-10-03 Thread Chris Cormack
* rfblanchard (rfblanch...@hotmail.com) wrote:
> I'm building a new koha server to replace our old koha 3.0.0 with koha
> 16.5.4. The new server has better specs than the old one. Towards the end of
> my work I started doing some basic testing of the screens compared to the
> old system. I noticed the new system is slower (much slower) than our old
> 3.0 koha. Basically any screen is 5x to 10x slower on the new version of
> koha. That includes anything from searching to loading the landing page of
> the opac. I checked on some of the koha demo sites and also noticed they are
> quite slow. Has koha just become bloated over time or have I misconfigured
> something?
> 
> I didn't build the original server, but I compared apache and mysql settings
> and didn't notice anything that the new install was missing. I tried using
> memcached but that did nothing useful as far as I noticed.
> 
> Does anyone have any insite into speeding up koha performance? caching? etc?
> 
Koha now uses a database independent layer an ORM (Object relationship model).
This allows (in theory) Koha to be run on different database engines, it also 
allows
for more Object Oriented code, which a lot of people like.

It does have the downside of being quite a bit slower than straight SQL though, 
this
accounts for most of the slow down you are noticing.

Did you install Koha via packages? If so, you will want to switch plack on

sudo koha-plack --enable 
sudo koha-plack --start 

Then restart apache. You will want to set up memcache as well. To enable caching
to occur. This should speed things up considerably.

Chris
-- 
Chris Cormack
Catalyst IT Ltd.
+64 4 803 2238
PO Box 11-053, Manners St, Wellington 6142, New Zealand


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


[Koha] Koha Performance Issue

2016-10-03 Thread rfblanchard
I'm building a new koha server to replace our old koha 3.0.0 with koha
16.5.4. The new server has better specs than the old one. Towards the end of
my work I started doing some basic testing of the screens compared to the
old system. I noticed the new system is slower (much slower) than our old
3.0 koha. Basically any screen is 5x to 10x slower on the new version of
koha. That includes anything from searching to loading the landing page of
the opac. I checked on some of the koha demo sites and also noticed they are
quite slow. Has koha just become bloated over time or have I misconfigured
something?

I didn't build the original server, but I compared apache and mysql settings
and didn't notice anything that the new install was missing. I tried using
memcached but that did nothing useful as far as I noticed.

Does anyone have any insite into speeding up koha performance? caching? etc?





--
View this message in context: 
http://koha.1045719.n5.nabble.com/Koha-Performance-Issue-tp5905752.html
Sent from the Koha-general mailing list archive at Nabble.com.
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Translating the manual : workflow

2016-10-03 Thread Francois Charbonnier

Hello everyone,

Is there an up-to-date workflow to translate the manual ?

Should I use http://translate.koha-community.org/ ? Who's in charge to 
add new translation files ?


Here, with inLibro, we want to work on the french translation for koha 
16.05. There are sligh differences in the french and french-canadian 
vocabularies we use in libraries. We can base the french-canadian 
version on the last french version of the manual and starts from here.


If anyone could help use to get started, it will be much appreciated!

Thanks!

François

--
François Charbonnier,
Bibl. prof. / Chef de produits

Tél.  : (888) 604-2627
francois.charbonn...@inlibro.com 

inLibro | Spécialistes en technologies documentaires | www.inLibro.com 


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


[Koha] Koha World Tour

2016-10-03 Thread Magnus Enger
Dear Community,

I just sent Joann off to Stockholm (by way of Oslo), after her visit in Norway.

In Oslo we had two presentations (one very well attended one for
library school students) and one visit in a library that uses Koha.
The Koha community in Norway is small and scattered, but interest is
steadily growing.

We spent the weekend exploring areas nort of the Polar Circle,
including Bodø and the Lofoten Island.

Looking forward to meeting her - and lots of other cool Koha geeks -
again in Marseille in one week!

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