Re: [Koha] Koha users in Malaysia (Southeast Asia ) ...

2014-10-04 Thread BWS Johnson

Salvete!

There's also a list here:

http://wiki.koha-community.org/wiki/KohaUsers/SoutheastAsia

It is what you make of it! I've been trying to improve these little by 
little since they end up quite long, but please, please, please add or update 
your information. This is one of the most frequent questions we get, and Koha 
gets better by leaps and bounds each time we talk to one another. :)

Cheers,
Brooke

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


Re: [Koha] Downgrade koha database from 3.16.x to 3.14.x

2014-10-04 Thread Dibyendra Hyoju
Thanks both of you for your response! I will postpone the idea of
downgrading the database for a while.

Zeno, I'll take a look at code to find out the exact problem, but
looking at the snippet code in the email, this could be because of
malformed ISBN, I guess.

I will write to the list, if I come up with solutions.

Thanks!
--
Dibyendra

On 10/4/14, Zeno Tajoli  wrote:
> Hi,
>
>
>>(http://permalink.gmane.org/gmane.comp.misc.koha/36671) mentioned
>>earlier in the Koha general mailing list, I am thinking to downgrade
>>the database structure of Koha 3.16.4 to 3.14.x.
>
> I suggest you to not do this operation,
> the error is inside this code:
>
>  Software error:
>> Can't call method "as_string" on an undefined value at
>> /usr/share/koha/lib/C4/Koha.pm line 1608.
>
> 1586
> 1587 sub NormalizeISBN {
> 1588 my ($params) = @_;
> 1589
> 1590 my $string= $params->{isbn};
> 1591 my $strip_hyphens = $params->{strip_hyphens};
> 1592 my $format= $params->{format};
> 1593
> 1594 return unless $string;
> 1595
> 1596 my $isbn = Business::ISBN->new($string);
> 1597
> 1598 if ( $isbn && $isbn->is_valid() ) {
> 1599
> 1600 if ( $format eq 'ISBN-10' ) {
> 1601 $isbn = $isbn->as_isbn10();
> 1602 }
> 1603 elsif ( $format eq 'ISBN-13' ) {
> 1604 $isbn = $isbn->as_isbn13();
> 1605 }
> 1606
> 1607 if ($strip_hyphens) {
> 1608 $string = $isbn->as_string( [] );
> 1609 } else {
> 1610 $string = $isbn->as_string();
> 1611 }
> 1612
> 1613 return $string;
> 1614 }
> 1615 }
>
>
> Probably you have an 020 tag without data or same other problem.
> To understand better the situation you can try:
> -- find a search on opac that gives the error
> -- insert the swith -d in the opac-search.pl
> -- start opac-search.pl on command line and use
>perl debugger to find the exact problem
>
> Bye
>
>
>
>
>


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


Re: [Koha] Downgrade koha database from 3.16.x to 3.14.x

2014-10-04 Thread Zeno Tajoli
Hi,


>(http://permalink.gmane.org/gmane.comp.misc.koha/36671) mentioned
>earlier in the Koha general mailing list, I am thinking to downgrade
>the database structure of Koha 3.16.4 to 3.14.x.

I suggest you to not do this operation,
the error is inside this code:

 Software error:
> Can't call method "as_string" on an undefined value at
> /usr/share/koha/lib/C4/Koha.pm line 1608.

1586
1587 sub NormalizeISBN {
1588 my ($params) = @_;
1589
1590 my $string= $params->{isbn};
1591 my $strip_hyphens = $params->{strip_hyphens};
1592 my $format= $params->{format};
1593
1594 return unless $string;
1595
1596 my $isbn = Business::ISBN->new($string);
1597
1598 if ( $isbn && $isbn->is_valid() ) {
1599
1600 if ( $format eq 'ISBN-10' ) {
1601 $isbn = $isbn->as_isbn10();
1602 }
1603 elsif ( $format eq 'ISBN-13' ) {
1604 $isbn = $isbn->as_isbn13();
1605 }
1606
1607 if ($strip_hyphens) {
1608 $string = $isbn->as_string( [] );
1609 } else {
1610 $string = $isbn->as_string();
1611 }
1612
1613 return $string;
1614 }
1615 }


Probably you have an 020 tag without data or same other problem.
To understand better the situation you can try:
-- find a search on opac that gives the error
-- insert the swith -d in the opac-search.pl
-- start opac-search.pl on command line and use
   perl debugger to find the exact problem

Bye




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


Re: [Koha] Downgrade koha database from 3.16.x to 3.14.x

2014-10-04 Thread Arslan Farooq
Hi Dibyendra,

The guys are probably travelling or busy preparing for travel for KohaCon 
2014 so you might have to wait for a bit before someone can guide you.

Arslan

On October 4, 2014 2:25:48 PM GMT+05:00, Dibyendra Hyoju  
wrote:
>Hi all,
>
>With reference to issue on searching
>(http://permalink.gmane.org/gmane.comp.misc.koha/36671) mentioned
>earlier in the Koha general mailing list, I am thinking to downgrade
>the database structure of Koha 3.16.4 to 3.14.x.
>
>While using the 3.16 database with Koha 3.14 software, it works,
>surprisingly, maybe both are stable release and their database schema
>don't have big changes. However, I have only tested searching and have
>not tested other functionalities.
>
>What I am thinking now is to create a database schema of version 3.14
>and import only the data of Koha 3.16 database by disabling create
>table and drop table statements.
>
>If anyone have done this kind of task or have a better idea, please
>kindly suggest.
>
>Thank you.
>
>Regards,
>Dibyendra
>
>-- 
>Dibyendra Hyoju
>___
>Koha mailing list  http://koha-community.org
>Koha@lists.katipo.co.nz
>http://lists.katipo.co.nz/mailman/listinfo/koha

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Downgrade koha database from 3.16.x to 3.14.x

2014-10-04 Thread Dibyendra Hyoju
Hi all,

With reference to issue on searching
(http://permalink.gmane.org/gmane.comp.misc.koha/36671) mentioned
earlier in the Koha general mailing list, I am thinking to downgrade
the database structure of Koha 3.16.4 to 3.14.x.

While using the 3.16 database with Koha 3.14 software, it works,
surprisingly, maybe both are stable release and their database schema
don't have big changes. However, I have only tested searching and have
not tested other functionalities.

What I am thinking now is to create a database schema of version 3.14
and import only the data of Koha 3.16 database by disabling create
table and drop table statements.

If anyone have done this kind of task or have a better idea, please
kindly suggest.

Thank you.

Regards,
Dibyendra

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


Re: [Koha] Problem in search

2014-10-04 Thread Dibyendra Hyoju
Hi again,

Earlier, actually I used the database of Koha 3.16.01 and used it with
Koha 3.14. I thought I used the database of version 3.14, but still
the database worked okay. There is no searching problem while plugging
the database of version 3.16 with Koha 3.14. But when I connect the
database of 3.16 with Koha 3.16.x, the error appears again. Can I use
database of Koha 3.16 with Koha 3.14? I also have to test it
thoroughly to see the result.

I'd appreciate if anyone of you can share your experience on fixing this issue.

Thanks.

Regards,
Dibyendra

On 10/4/14, Dibyendra Hyoju  wrote:
> Hi Colin,
>
> Thanks for your response.
>
> I upgraded the Koha already to version 3.16.4, but the problem is
> still there. So, I tested the earlier database backups of koha 3.14 in
> a different machine having Koha 3.14 and there is no such problem with
> searching.
>
> So, from the test, I can say that either the database is not upgraded
> properly to 3.16 while upgrading the Koha, or the problem could be
> specific to Koha 3.16.
>
> Regards,
> Dibyendra
>
>
> On 10/3/14, Colin Campbell  wrote:
>> On Fri, Oct 03, 2014 at 07:33:24PM +0545, Dibyendra Hyoju wrote:
>>> Hi all,
>>>
>>> I've been facing the same issue from last 2-3 months, most probably
>>> after upgrading Koha from version 3.14 to 3.16. From OPAC, when I
>>> search for terms like "Business", "accounting", "economics", I get the
>>> similar error:
>>>
>>> Software error:
>>> Can't call method "as_string" on an undefined value at
>>> /usr/share/koha/lib/C4/Koha.pm line 1608.
>>> For help, please send mail to the webmaster ([no address given]),
>>> giving this error message and the time and date of the error.
>>>
>>
>> There are fixes in the latest 3.16 release for this error. Try upgrading
>> to the latest 3.16.4 release
>>
>> Colin
>>
>> --
>> Colin Campbell
>> Chief Software Engineer,
>> PTFS Europe Limited
>> Content Management and Library Solutions
>> +44 (0) 800 756 6803 (phone)
>> +44 (0) 7759 633626  (mobile)
>> colin.campb...@ptfs-europe.com
>> skype: colin_campbell2
>>
>> http://www.ptfs-europe.com
>> ___
>> Koha mailing list  http://koha-community.org
>> Koha@lists.katipo.co.nz
>> http://lists.katipo.co.nz/mailman/listinfo/koha
>>
>
>
> --
> Dibyendra Hyoju
>


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


Re: [Koha] IndependentBranches - Administration option

2014-10-04 Thread Alexede
Hi,

no one have an idea how to solve this?
It is important also for me to know if, turning on (to "prevent") this
feature after have using koha, can I have compromise my installation.

Thank in advance
Alessio




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