Re: [Koha-devel] MariaDB and Auto Increment - it's the good news

2018-03-26 Thread Indranil Das Gupta
Liz++ :D On Tue 27 Mar, 2018, 6:09 AM Liz Rea, wrote: > I was quite nosing around looking for something else, and came across this: > > > Until MariaDB 10.2.3, InnoDB and XtraDB used an auto-increment counter that > > is stored in memory. When the server restarts, the

[Koha-devel] MariaDB and Auto Increment - it's the good news

2018-03-26 Thread Liz Rea
I was quite nosing around looking for something else, and came across this: |> Until MariaDB 10.2.3, InnoDB and XtraDB used an auto-increment counter that is stored in memory. When the server restarts, the counter is re-initialized to the highest value used in the table, which cancels the effects

Re: [Koha-devel] User password reset question

2018-03-26 Thread Jonathan Druart
Hi Stephen, You need to hash it before, takes a look at members/member-password.pl In master, it will be something like: my $digest = Koha::AuthUtils::hash_password( $new_password ); Koha::Patrons->find( $borrowernumber )->update_password($uid, $digest); The method is badly named as it could

Re: [Koha-devel] Centralize and move to gitlab

2018-03-26 Thread Fridolin SOMERS
Thanks a lot Victor for theses checks. So an up-to-date version will be cool :) Le 26/01/2018 à 18:18, Victor Grousset a écrit : +1 On 25/01/2018 15:57, Fridolin SOMERS wrote: > We at Biblibre are using gitlab for some time : http://git.biblibre.com/ > > Its fun but we have some issues. >

Re: [Koha-devel] User password reset question

2018-03-26 Thread Josef Moravec
Hi Stephen, you can use Koha::AuthUtils::hash_password to encode password and then Koha::Patron->update_password($userid, $newPassword) you can see it in members/member-password.pl script on lines 73 and 76 in 16.11 code Hope that helps Josef po 26. 3. 2018 v 17:09 odesílatel Graham, Stephen

[Koha-devel] User password reset question

2018-03-26 Thread Graham, Stephen
Hi All - if I wanted to programmatically change a user's password what would the best way of doing this? I've just been looking at the various Perl modules for our version of Koha (16.11). modules such as C4:Members, C4:Member:Attributes etc, but cannot see any methods that can reset the

[Koha-devel] RFC for MARC holdings record support

2018-03-26 Thread Ere Maijala
Hi Everyone, I've written an RFC for adding support for MARC holdings records, available here: . I'd be grateful for any feedback on this. I know there have been some initiatives to add (back) holdings records, but this proposal