[Koha] problems when Running the Koha installer

2012-07-05 Thread jackymasibo
hi guys ,

thanks alot for your support but now i have a nother issue,

i am trying to run the koha installer and when i type the following command:

$ perl Makefile.PL

i get the following:

Can't open perl script "Makefile.PL": No such file or directory

any idea on what i am supposed to do will be appreciated.

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


Re: [Koha] problems when Running the Koha installer

2012-07-05 Thread Chris Cormack
On 5 July 2012 20:00, jackymasibo  wrote:
> hi guys ,
>
> thanks alot for your support but now i have a nother issue,
>
> i am trying to run the koha installer and when i type the following command:
>
> $ perl Makefile.PL
>
> i get the following:
>
> Can't open perl script "Makefile.PL": No such file or directory
>
> any idea on what i am supposed to do will be appreciated.
>
Sounds to me like you aren't the right directory.

You need to be in the directory that that file is in.

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


Re: [Koha] Statistics in 3.6

2012-07-05 Thread Chris Cormack
On 4 July 2012 11:49, Paul Nielsen  wrote:
> I am glad I am not alone Jo, thanks.
>
>
>
> Chris, I only use the Circulation Statistics Wizard so not sure if that is
> what you mean about the table?
>

Ah ha, that will be the problem that wizard doesn't work right since 3.4.x

You will want to use a saved report in the reports, I'll email you a
good one to use when I'm back at work.

(I checked the db, this year is actually up about 30 thousand on last
year (june to july))

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


[Koha] opaccloud syspref

2012-07-05 Thread mourik jan heupink
Hi,

I can't find the OpacCloud syspref. Has this been removed? (koha 3.8.2,
from debian apt repository)

I currently have two links in my opac that don't work: 'Tag Cloud' and
'Subject Cloud'. I'm not sure what exactly they do, so I wanted to
disable them for now...

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


Re: [Koha] opaccloud syspref

2012-07-05 Thread Chris Cormack
On 5 July 2012 22:46, mourik jan heupink  wrote:
> Hi,
>
> I can't find the OpacCloud syspref. Has this been removed? (koha 3.8.2,
> from debian apt repository)
>
> I currently have two links in my opac that don't work: 'Tag Cloud' and
> 'Subject Cloud'. I'm not sure what exactly they do, so I wanted to
> disable them for now...

OpacBrowser is for the subject cloud
If you want the Tag cloud not to show you have to turn tags off. With
TagsEnabled

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


[Koha] Search Results without items

2012-07-05 Thread ggardei
Greetings Koha Guru's

We are currently in the progress of migrating from Follett Destiny to Koha.
One of the issues that we are having is that a bunch of biblio items are
being imported that do not have an item (and some that are). I have run the
SQL query to remove biblio without items; however the biblio records are
still showing up when I search in OPAC. When you click on one of these
items, a page with error 404 appears


Here is the script I ran to remove the biblio items

INSERT into deletedbiblio (SELECT * FROM biblio where biblionumber NOT
IN (SELECT biblionumber from items));
INSERT into deletedbiblioitems (SELECT * FROM biblioitems where
biblionumber NOT IN (SELECT biblionumber from items));
DELETE FROM biblio where biblionumber NOT IN (SELECT biblionumber from
items); 



--
View this message in context: 
http://koha.1045719.n5.nabble.com/Search-Results-without-items-tp5718603.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


Re: [Koha] Koha Digest, Vol 81, Issue 9

2012-07-05 Thread Colin Campbell
On Wed, Jul 04, 2012 at 09:03:13PM +0530, pankaj delnet wrote:
> I installed this proses but there is some problem
> 
> 1).. (To redirect output in individual file add following to
> /etc/syslog.conf) there is no syslog.conf file ..
> 
> using this command --
> 
> perl C4/SIP/SIPServer.pm C4/SIP/SIPconfig.xml
> 
> then given Error ..
> 
> Can't locate Sip/Constants.pm in @INC (@INC contains: /etc/perl
> /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5
> /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10
> /usr/local/lib/site_perl .) at C4/SIP/SIPServer.pm line 14.
> 
> BEGIN failed--compilation aborted at C4/SIP/SIPServer.pm line 14.

The SIPServer requires to add its own module path to that in @INC.

If as appears you are running the above command from the directory 
containing C4 then

perl -M./C4/SIP C4/SIP/SIPServer.pm C4/SIP/SIPconfig.xml

Should do it. There is a patch in the queue for master which will remove
the need for this.

Cheers
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


Re: [Koha] Koha Digest, Vol 81, Issue 9

2012-07-05 Thread Colin Campbell
On Thu, Jul 05, 2012 at 04:32:03PM +0100, Colin Campbell wrote:
> 
> perl -M./C4/SIP C4/SIP/SIPServer.pm C4/SIP/SIPconfig.xml
> 
Sorry that should be
 perl -I./C4/SIP C4/SIP/SIPServer.pm C4/SIP/SIPconfig.xml

(In my defence, the sun just came out and in the kind of 
summer we're experiencing that generates shock and confusion)

C.

-- 
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


[Koha] BibLibre efforts on reversing developments and you

2012-07-05 Thread Claire Hernandez

Hello,

We continue to invest a lot of time and energy to this task (and signoff 
and qa) but it seems that today, the goal fixed at the beginning of the 
year can't be reached, because in 3 months no progress is  really 
noticable... Have a look 
https://docs.google.com/a/biblibre.com/spreadsheet/ccc?key=0AuZF5Y_c4pIxdHE3S0RXMjJqSzZ3d1BVUmxpRnRVUUE#gid=11


I found 37 bugs assigned to BibLibre people which are in a "Needs 
Signoff" status. I follow 25 of them with a special attention in the 
google doc: 
https://docs.google.com/a/biblibre.com/spreadsheet/ccc?key=0AuZF5Y_c4pIxdHE3S0RXMjJqSzZ3d1BVUmxpRnRVUUE#gid=0

https://trello.com/board/community-biblibre-koha-devs/4f1d247284210f0e6300d7d7

We could continue (would like) to provide more patches and features 
(serials and all others). I would like to keep the queue under 20-30 to 
avoid rebasing all the time.


There is also a dependency "problem".

Today, we really would like to see these 3 bugzilla moving forward:
- 5335 More granular VAT => I know that not everybody is interested in 
and this is a big patch and big work

- 5342 Serial claiming improvement
- 7294 status "in order" (not in needs signoff today but soon, keep an 
eye on it)


Thanks in advance for your committment for signing patches,

Claire;





On 05/03/2012 17:12, Claire Hernandez wrote:

Hello all,

I wrote a blog post about our developments and the community 
integration. You can read it here: 
http://drupal.biblibre.com/en/blog/entry/biblibre-developpments-rebase-and-you


It is about:
- 2012 goals development rebases
- Vision and roadmap
- Progress and learnt of january and february
- Why the community needs you

The purpose was to make visible our work and explain how people can 
invest into this development integration (for example for our french 
customers).


If you have questions, juste ask.

Have a good day,
Claire;


___
Koha-devel mailing list
koha-de...@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


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


[Koha] KohaCon 13 Survey Problem

2012-07-05 Thread Nicole Engard
Hello all,

I wasn't clear when I sent out the survey for KohaCon and per a
discussion in #koha I'm coming to you to see if you'd like me to rerun
the survey so you can update your votes.  Here's how it works - and
how it worked in previous years:

If you vote for someplace as #1 it gets 5 points, #2 it gets 4 points,
and so on.  In the end we tally the points to see where the conference
takes place. That way if everyone picks one place as #1 but more
people pick it as second and third it still might win.  So basically
if you won't go somewhere no matter what then don't vote for that
location and it will get no points from you.

This means that those of you who didn't know the rules - because I
didn't make it clear at all (my fault) might not have voted the way
you would have if you knew the rules.  So my question to you all is
... should I close voting and put out a new call for votes explaining
the procedure more clearly - or do we just carry on as we are?

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


Re: [Koha] KohaCon 13 Survey Problem

2012-07-05 Thread Keener, Nancy
I vote for a do-over.

Nancy Keener
Systems Librarian
I.T.O.S.C Chair
Washoe County Library System
Reno, Nevada
775 327-8347
nkee...@washoecounty.us


-Original Message-
From: koha-boun...@lists.katipo.co.nz [mailto:koha-boun...@lists.katipo.co.nz] 
On Behalf Of Nicole Engard
Sent: Thursday, July 05, 2012 10:31 AM
To: Koha; Koha Devel
Subject: [Koha] KohaCon 13 Survey Problem

Hello all,

I wasn't clear when I sent out the survey for KohaCon and per a discussion in 
#koha I'm coming to you to see if you'd like me to rerun the survey so you can 
update your votes.  Here's how it works - and how it worked in previous years:

If you vote for someplace as #1 it gets 5 points, #2 it gets 4 points, and so 
on.  In the end we tally the points to see where the conference takes place. 
That way if everyone picks one place as #1 but more people pick it as second 
and third it still might win.  So basically if you won't go somewhere no matter 
what then don't vote for that location and it will get no points from you.

This means that those of you who didn't know the rules - because I didn't make 
it clear at all (my fault) might not have voted the way you would have if you 
knew the rules.  So my question to you all is ... should I close voting and put 
out a new call for votes explaining the procedure more clearly - or do we just 
carry on as we are?

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

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


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Nicole Engard
You are right.  And it is my fault. I'm just waiting to hear from a
few others about what their opinions are.

Nicole

On Thu, Jul 5, 2012 at 2:07 PM, Marc Balmer  wrote:
> As I understand, I could have given points only to one location, not giving
> points to any of the other locations, right?
>
> I was under the impression that I must pick five locations, which seems not
> to be the case.
>
>
> --
> Marc Balmer
> micro systems, http://www.msys.ch/
> Tel. +41 61 383 05 10, Fax +41 61 383 05 12
>
> Am 05.07.2012 um 19:38 schrieb Jared Camins-Esakov
> :
>
> Marc,
>
>> Yes, please restart the vote.  I was not aware that I could only give
>> points to one location.
>
>
> Every location you vote for gets points. It's just that it gets a different
> number of points depending on whether you rank it 1..5.
>
> Regards,
> Jared
>
> --
> Jared Camins-Esakov
> Bibliographer, C & P Bibliography Services, LLC
> (phone) +1 (917) 727-3445
> (e-mail) jcam...@cpbibliography.com
> (web) http://www.cpbibliography.com/
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Chris Cormack
* Scott Kushner (skush...@mplmain.mtpl.org) wrote:
> Yes..let's have a new vote!

Maybe I'll be the only dissenting voice. But by doing a new vote we
have to be very careful we aren't just creating a new injustice trying
to fix one.

We need to make sure that everyone who has voted knows they have to
vote again. So we would have to email them each I would imagine, as
well as a new mail to the mailing list.

Also we are we revoting? Our choice isn't winning?

(That's a question that is going to be asked, and if the revote
significantly changes the decision ... quite validly as well)

Chris
> 
> -Original Message-
> From: koha-devel-boun...@lists.koha-community.org
> [mailto:koha-devel-boun...@lists.koha-community.org] On Behalf Of Nicole
> Engard
> Sent: Thursday, July 05, 2012 1:31 PM
> To: Koha; Koha Devel
> Subject: [Koha-devel] KohaCon 13 Survey Problem
> 
> Hello all,
> 
> I wasn't clear when I sent out the survey for KohaCon and per a
> discussion in #koha I'm coming to you to see if you'd like me to rerun
> the survey so you can update your votes.  Here's how it works - and how
> it worked in previous years:
> 
> If you vote for someplace as #1 it gets 5 points, #2 it gets 4 points,
> and so on.  In the end we tally the points to see where the conference
> takes place. That way if everyone picks one place as #1 but more people
> pick it as second and third it still might win.  So basically if you
> won't go somewhere no matter what then don't vote for that location and
> it will get no points from you.
> 
> This means that those of you who didn't know the rules - because I
> didn't make it clear at all (my fault) might not have voted the way you
> would have if you knew the rules.  So my question to you all is ...
> should I close voting and put out a new call for votes explaining the
> procedure more clearly - or do we just carry on as we are?
> 
> Nicole
> ___
> Koha-devel mailing list
> koha-de...@lists.koha-community.org
> http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
> website : http://www.koha-community.org/ git :
> http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
> 
> ___
> Koha-devel mailing list
> koha-de...@lists.koha-community.org
> http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
> website : http://www.koha-community.org/
> git : http://git.koha-community.org/
> bugs : http://bugs.koha-community.org/

-- 
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
http://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Koha SIP2 server setup

2012-07-05 Thread pankaj delnet
Dear All of koha user .Please help me ..

start server---*(1) -- root@RFID:~/koha/koha-3.8.2# perl -IC4/SIP/ -MILS
C4/SIP/SIPServer.pm etc/SIPconfig.xml

SIPServer config:
$VAR1 = bless( {
 'xmlns' => 'http://openncip.org/acs-config/1.0/',
 'institutions' => {
 'CPL' => bless( {
 'implementation' =>
'ILS',
 'policy' => {
 'checkout'
=> 'true',
 'retries'
=> '5',
 'checkin'
=> 'true',
 'timeout'
=> '25',

'status_update' => 'false',
 'offline'
=> 'false',
 'renewal'
=> 'true'
   },
 'id' => 'CPL',
 'parms' => ''
   },
'Sip::Configuration::Institution' ),
 'MAIN' => bless( {
  'implementation' =>
'ILS',
  'policy' => {

'checkout' => 'true',
  'retries'
=> '5',
  'checkin'
=> 'true',
  'timeout'
=> '100',

'status_update' => 'false',
  'offline'
=> 'false',
  'renewal'
=> 'true'
},
  'id' => 'MAIN',
  'parms' => ''
},
'Sip::Configuration::Institution' ),
 'kohalibrary' => bless( {

'implementation' => 'ILS',
 'policy' => {

'checkout' => 'true',

'retries' => '5',

'checkin' => 'true',

'timeout' => '100',

'status_update' => 'false',

'offline' => 'false',

'renewal' => 'false'
   },
 'id' =>
'kohalibrary',
 'parms' => ''
   },
'Sip::Configuration::Institution' ),
 'LPL' => bless( {
 'implementation' =>
'ILS',
 'policy' => {
 'checkout'
=> 'true',
 'retries'
=> '5',
 'checkin'
=> 'true',
 'timeout'
=> '100',
 'renewal'
=> 'false'
   },
 'id' => 'LPL'
   },
'Sip::Configuration::Institution' ),
 'kohalibrary2' => bless( {

'implementation' => 'ILS',
  'policy' => {

'checkout' => 'true',

'retries' => '3',

'checkin' => 'true',

'timeout' => '100',

'renewal' => 'false'
},
  'id' =>
'kohalibrary2',
  'parms' => ''
},
'Sip::Configuration::Institution' )
   },
 'server-params' => {
'syslog_ident' => 'koha_sip',
'min_servers' => '1',
'min_spare_servers' => '0',
'log_file' => 'Sys::Syslog',
'syslog_facility' => 'local6'
  },
 'error-detect' => 'true',
 'listeners' => {
  '127.0.0.1:6001/tcp' =

Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Jared Camins-Esakov
Marc,

Yes, please restart the vote.  I was not aware that I could only give
> points to one location.
>

Every location you vote for gets points. It's just that it gets a different
number of points depending on whether you rank it 1..5.

Regards,
Jared

-- 
Jared Camins-Esakov
Bibliographer, C & P Bibliography Services, LLC
(phone) +1 (917) 727-3445
(e-mail) jcam...@cpbibliography.com
(web) http://www.cpbibliography.com/
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Marc Balmer
Yes, please restart the vote.  I was not aware that I could only give points to 
one location.

-- 
Marc Balmer
micro systems, http://www.msys.ch/
Tel. +41 61 383 05 10, Fax +41 61 383 05 12

Am 05.07.2012 um 19:31 schrieb Nicole Engard :

> Hello all,
> 
> I wasn't clear when I sent out the survey for KohaCon and per a
> discussion in #koha I'm coming to you to see if you'd like me to rerun
> the survey so you can update your votes.  Here's how it works - and
> how it worked in previous years:
> 
> If you vote for someplace as #1 it gets 5 points, #2 it gets 4 points,
> and so on.  In the end we tally the points to see where the conference
> takes place. That way if everyone picks one place as #1 but more
> people pick it as second and third it still might win.  So basically
> if you won't go somewhere no matter what then don't vote for that
> location and it will get no points from you.
> 
> This means that those of you who didn't know the rules - because I
> didn't make it clear at all (my fault) might not have voted the way
> you would have if you knew the rules.  So my question to you all is
> ... should I close voting and put out a new call for votes explaining
> the procedure more clearly - or do we just carry on as we are?
> 
> Nicole
> ___
> Koha-devel mailing list
> koha-de...@lists.koha-community.org
> http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
> website : http://www.koha-community.org/
> git : http://git.koha-community.org/
> bugs : http://bugs.koha-community.org/
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Marc Balmer
As I understand, I could have given points only to one location, not giving 
points to any of the other locations, right?

I was under the impression that I must pick five locations, which seems not to 
be the case.


-- 
Marc Balmer
micro systems, http://www.msys.ch/
Tel. +41 61 383 05 10, Fax +41 61 383 05 12

Am 05.07.2012 um 19:38 schrieb Jared Camins-Esakov :

> Marc,
> 
> Yes, please restart the vote.  I was not aware that I could only give points 
> to one location.
> 
> Every location you vote for gets points. It's just that it gets a different 
> number of points depending on whether you rank it 1..5.
> 
> Regards,
> Jared
>  
> -- 
> Jared Camins-Esakov
> Bibliographer, C & P Bibliography Services, LLC
> (phone) +1 (917) 727-3445
> (e-mail) jcam...@cpbibliography.com
> (web) http://www.cpbibliography.com/
> 
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Scott Kushner
Yes..let's have a new vote!

-Original Message-
From: koha-devel-boun...@lists.koha-community.org
[mailto:koha-devel-boun...@lists.koha-community.org] On Behalf Of Nicole
Engard
Sent: Thursday, July 05, 2012 1:31 PM
To: Koha; Koha Devel
Subject: [Koha-devel] KohaCon 13 Survey Problem

Hello all,

I wasn't clear when I sent out the survey for KohaCon and per a
discussion in #koha I'm coming to you to see if you'd like me to rerun
the survey so you can update your votes.  Here's how it works - and how
it worked in previous years:

If you vote for someplace as #1 it gets 5 points, #2 it gets 4 points,
and so on.  In the end we tally the points to see where the conference
takes place. That way if everyone picks one place as #1 but more people
pick it as second and third it still might win.  So basically if you
won't go somewhere no matter what then don't vote for that location and
it will get no points from you.

This means that those of you who didn't know the rules - because I
didn't make it clear at all (my fault) might not have voted the way you
would have if you knew the rules.  So my question to you all is ...
should I close voting and put out a new call for votes explaining the
procedure more clearly - or do we just carry on as we are?

Nicole
___
Koha-devel mailing list
koha-de...@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
website : http://www.koha-community.org/ git :
http://git.koha-community.org/ bugs : http://bugs.koha-community.org/

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


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Fischer, Katrin
I think we should finish the vote as it is. 
Everyone could have asked before voting how the winner will be determined, only 
noone did.
And we are not using a new system, it's the same that we used before.

Katrin


-Ursprüngliche Nachricht-
Von: koha-devel-boun...@lists.koha-community.org im Auftrag von Scott Kushner
Gesendet: Do 05.07.2012 20:19
An: Nicole Engard; Koha; Koha Devel
Betreff: Re: [Koha-devel] KohaCon 13 Survey Problem
 
Yes..let's have a new vote!

-Original Message-
From: koha-devel-boun...@lists.koha-community.org
[mailto:koha-devel-boun...@lists.koha-community.org] On Behalf Of Nicole
Engard
Sent: Thursday, July 05, 2012 1:31 PM
To: Koha; Koha Devel
Subject: [Koha-devel] KohaCon 13 Survey Problem

Hello all,

I wasn't clear when I sent out the survey for KohaCon and per a
discussion in #koha I'm coming to you to see if you'd like me to rerun
the survey so you can update your votes.  Here's how it works - and how
it worked in previous years:

If you vote for someplace as #1 it gets 5 points, #2 it gets 4 points,
and so on.  In the end we tally the points to see where the conference
takes place. That way if everyone picks one place as #1 but more people
pick it as second and third it still might win.  So basically if you
won't go somewhere no matter what then don't vote for that location and
it will get no points from you.

This means that those of you who didn't know the rules - because I
didn't make it clear at all (my fault) might not have voted the way you
would have if you knew the rules.  So my question to you all is ...
should I close voting and put out a new call for votes explaining the
procedure more clearly - or do we just carry on as we are?

Nicole
___
Koha-devel mailing list
koha-de...@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
website : http://www.koha-community.org/ git :
http://git.koha-community.org/ bugs : http://bugs.koha-community.org/

___
Koha-devel mailing list
koha-de...@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/



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


Re: [Koha] BibLibre efforts on reversing developments and you

2012-07-05 Thread Chris Cormack
* Claire Hernandez (claire.hernan...@biblibre.com) wrote:
> Hello,
> 
> We continue to invest a lot of time and energy to this task (and
> signoff and qa) but it seems that today, the goal fixed at the
> beginning of the year can't be reached, because in 3 months no
> progress is  really noticable... Have a look 
> https://docs.google.com/a/biblibre.com/spreadsheet/ccc?key=0AuZF5Y_c4pIxdHE3S0RXMjJqSzZ3d1BVUmxpRnRVUUE#gid=11


To that end, I have been creating the statistics of signoffs

http://blog.bigballofwax.co.nz/2012/04/01/bug-statistics-for-march-2012/
http://blog.bigballofwax.co.nz/2012/05/04/statistics-for-koha-april-2012/
http://blog.bigballofwax.co.nz/2012/06/01/bugenh-statistics-for-may-2012/
http://blog.bigballofwax.co.nz/2012/07/01/bugzilla-statistics-for-june-2012/

So people can recognise the hard work of the people doing sign offs

Do some sign offs, become famous!! Save some kittens!

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
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Search Results without items

2012-07-05 Thread Chris Cormack
* ggardei (ggar...@gbs.edu) wrote:
> Greetings Koha Guru's
> 
> We are currently in the progress of migrating from Follett Destiny to Koha.
> One of the issues that we are having is that a bunch of biblio items are
> being imported that do not have an item (and some that are). I have run the
> SQL query to remove biblio without items; however the biblio records are
> still showing up when I search in OPAC. When you click on one of these
> items, a page with error 404 appears
> 
> 
> Here is the script I ran to remove the biblio items
> 
> INSERT into deletedbiblio (SELECT * FROM biblio where biblionumber NOT
> IN (SELECT biblionumber from items));
> INSERT into deletedbiblioitems (SELECT * FROM biblioitems where
> biblionumber NOT IN (SELECT biblionumber from items));
> DELETE FROM biblio where biblionumber NOT IN (SELECT biblionumber from
> items); 
> 
Hiya

So what you have done is fine, but the step you are missing is to do a
full zebra reindex, because you have deleted stuff, but not told zebra
of that fact.

So if you do a full zebra reindex they will drop out of your search
results

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
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Mirko
schrieb Chris Cormack am 05.07.2012 20:37:
> * Scott Kushner (skush...@mplmain.mtpl.org) wrote:
>> Yes..let's have a new vote!
> 
> Maybe I'll be the only dissenting voice. But by doing a new vote we
> have to be very careful we aren't just creating a new injustice trying
> to fix one.
> 
> We need to make sure that everyone who has voted knows they have to
> vote again. So we would have to email them each I would imagine, as
> well as a new mail to the mailing list.

I'd like to escalate this scenario one step. We have bids from all
around the world and internet access is not equally easy to have in
all these places. For me it is very unlikely to have no internet
access for just one whole day in my day to day life. That might be
very different in other places and to be fair we would have to make
sure that everybody who voted the first time has internet access to
1) know about the second voting
2) vote

It is impossible to just check that unless somebody volunteers to
send and answer emails to almost 300 people. That is not going to
happen, so we would probably have to delay the whole thing for some
arbitrary amount of time until we vote again.

Also I am surely not the only one who watched the results since he
voted himself, so now that you got an idea of the results you might
all just change for some crazy tactical voting scheme.

I agree that it is a problem that the situation was unclear. But
just starting again is not going to make that any better or fairer,
it will raise a lot of questions and problems.

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


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread glaws
So that's how preference voting works. Guess I mis-understood. I think
we should have a lengthy, detailed debate on the 1,204 different nuances
of preference voting w/ mjray, marshall, and a designated NZ
representative. Please include all relevant advanced statistical
analysis. The last discussion about a year ago was enlightening. Really.
Now I'm ready for more.

Greg


-- 
Greg Lawson
Network Administrator
Rolling Hills Consolidated Library
1912 N. Belt Highway
St. Joseph, MO 64506
---



On 07/05/2012 12:38 PM, Jared Camins-Esakov wrote:
> Marc,
>
> Yes, please restart the vote.  I was not aware that I could only give
>> points to one location.
>>
> Every location you vote for gets points. It's just that it gets a different
> number of points depending on whether you rank it 1..5.
>
> Regards,
> Jared
>

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


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Nicole Engard
Most people in #koha are saying it's too likely we'll miss people if
we redo.  So, if it's a big deal to you (any of you) email me offlist
with the email address and name (and date if you remember) you used on
the survey and I'll delete your vote so you can vote again.

Nicole

On Thu, Jul 5, 2012 at 4:06 PM, Marc Balmer  wrote:
> So lets repeat the vote, please.
>
>
> --
> Marc Balmer
> micro systems, http://www.msys.ch/
> Tel. +41 61 383 05 10, Fax +41 61 383 05 12
>
> Am 05.07.2012 um 22:00 schrieb Lori Bowen Ayre :
>
> I was under that impression too and would not have voted the way I did had I
> known otehrwise.
>
> Lori
>
>
>
> On Thu, Jul 5, 2012 at 11:07 AM, Marc Balmer  wrote:
>>
>> As I understand, I could have given points only to one location, not
>> giving points to any of the other locations, right?
>>
>> I was under the impression that I must pick five locations, which seems
>> not to be the case.
>>
>>
>> --
>> Marc Balmer
>> micro systems, http://www.msys.ch/
>> Tel. +41 61 383 05 10, Fax +41 61 383 05 12
>>
>> Am 05.07.2012 um 19:38 schrieb Jared Camins-Esakov
>> :
>>
>> > Marc,
>> >
>> > Yes, please restart the vote.  I was not aware that I could only give
>> > points to one location.
>> >
>> > Every location you vote for gets points. It's just that it gets a
>> > different number of points depending on whether you rank it 1..5.
>> >
>> > Regards,
>> > Jared
>> >
>> > --
>> > Jared Camins-Esakov
>> > Bibliographer, C & P Bibliography Services, LLC
>> > (phone) +1 (917) 727-3445
>> > (e-mail) jcam...@cpbibliography.com
>> > (web) http://www.cpbibliography.com/
>> >
>> ___
>> Koha mailing list  http://koha-community.org
>> Koha@lists.katipo.co.nz
>> http://lists.katipo.co.nz/mailman/listinfo/koha
>
>
>
> ___
> Koha-devel mailing list
> koha-de...@lists.koha-community.org
> http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
> website : http://www.koha-community.org/
> git : http://git.koha-community.org/
> bugs : http://bugs.koha-community.org/
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Search Results without items

2012-07-05 Thread Mason James

On 2012-07-6, at 3:22 AM, ggardei wrote:

> Greetings Koha Guru's
> 
> We are currently in the progress of migrating from Follett Destiny to Koha.
> One of the issues that we are having is that a bunch of biblio items are
> being imported that do not have an item (and some that are). I have run the
> SQL query to remove biblio without items;

did you rebuild your zebra after?



> however the biblio records are
> still showing up when I search in OPAC. When you click on one of these
> items, a page with error 404 appears
> 
> 
> Here is the script I ran to remove the biblio items
> 
> INSERT into deletedbiblio (SELECT * FROM biblio where biblionumber NOT
> IN (SELECT biblionumber from items));
> INSERT into deletedbiblioitems (SELECT * FROM biblioitems where
> biblionumber NOT IN (SELECT biblionumber from items));
> DELETE FROM biblio where biblionumber NOT IN (SELECT biblionumber from
> items); 
> 

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


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Lori Bowen Ayre
I was under that impression too and would not have voted the way I did had
I known otehrwise.

Lori



On Thu, Jul 5, 2012 at 11:07 AM, Marc Balmer  wrote:

> As I understand, I could have given points only to one location, not
> giving points to any of the other locations, right?
>
> I was under the impression that I must pick five locations, which seems
> not to be the case.
>
>
> --
> Marc Balmer
> micro systems, http://www.msys.ch/
> Tel. +41 61 383 05 10, Fax +41 61 383 05 12
>
> Am 05.07.2012 um 19:38 schrieb Jared Camins-Esakov <
> jcam...@cpbibliography.com>:
>
> > Marc,
> >
> > Yes, please restart the vote.  I was not aware that I could only give
> points to one location.
> >
> > Every location you vote for gets points. It's just that it gets a
> different number of points depending on whether you rank it 1..5.
> >
> > Regards,
> > Jared
> >
> > --
> > Jared Camins-Esakov
> > Bibliographer, C & P Bibliography Services, LLC
> > (phone) +1 (917) 727-3445
> > (e-mail) jcam...@cpbibliography.com
> > (web) http://www.cpbibliography.com/
> >
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> http://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Marc Balmer
So lets repeat the vote, please.

-- 
Marc Balmer
micro systems, http://www.msys.ch/
Tel. +41 61 383 05 10, Fax +41 61 383 05 12

Am 05.07.2012 um 22:00 schrieb Lori Bowen Ayre :

> I was under that impression too and would not have voted the way I did had I 
> known otehrwise.
> 
> Lori
> 
> 
> 
> On Thu, Jul 5, 2012 at 11:07 AM, Marc Balmer  wrote:
> As I understand, I could have given points only to one location, not giving 
> points to any of the other locations, right?
> 
> I was under the impression that I must pick five locations, which seems not 
> to be the case.
> 
> 
> --
> Marc Balmer
> micro systems, http://www.msys.ch/
> Tel. +41 61 383 05 10, Fax +41 61 383 05 12
> 
> Am 05.07.2012 um 19:38 schrieb Jared Camins-Esakov 
> :
> 
> > Marc,
> >
> > Yes, please restart the vote.  I was not aware that I could only give 
> > points to one location.
> >
> > Every location you vote for gets points. It's just that it gets a different 
> > number of points depending on whether you rank it 1..5.
> >
> > Regards,
> > Jared
> >
> > --
> > Jared Camins-Esakov
> > Bibliographer, C & P Bibliography Services, LLC
> > (phone) +1 (917) 727-3445
> > (e-mail) jcam...@cpbibliography.com
> > (web) http://www.cpbibliography.com/
> >
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> http://lists.katipo.co.nz/mailman/listinfo/koha
> 
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Chris Cormack
* Marc Balmer (m...@msys.ch) wrote:
>So lets repeat the vote, please.
> 
You are volunteering to email all those people, including the ones
Mirko made a good point about not having reliable internet?

To make sure they know to vote again?

Chris




>-- 
>Marc Balmer
>micro systems, http://www.msys.ch/
>Tel. +41 61 383 05 10, Fax +41 61 383 05 12
>Am 05.07.2012 um 22:00 schrieb Lori Bowen Ayre :
> 
>  I was under that impression too and would not have voted the way I did
>  had I known otehrwise.
>  Lori
> 
>  On Thu, Jul 5, 2012 at 11:07 AM, Marc Balmer  wrote:
> 
>As I understand, I could have given points only to one location, not
>giving points to any of the other locations, right?
> 
>I was under the impression that I must pick five locations, which
>seems not to be the case.
> 
>--
>Marc Balmer
>micro systems, http://www.msys.ch/
>Tel. +41 61 383 05 10, Fax +41 61 383 05 12
> 
>Am 05.07.2012 um 19:38 schrieb Jared Camins-Esakov
>:
>> Marc,
>>
>> Yes, please restart the vote.  I was not aware that I could only
>give points to one location.
>>
>> Every location you vote for gets points. It's just that it gets a
>different number of points depending on whether you rank it 1..5.
>>
>> Regards,
>> Jared
>>
>> --
>> Jared Camins-Esakov
>> Bibliographer, C & P Bibliography Services, LLC
>> (phone) +1 (917) 727-3445
>> (e-mail) jcam...@cpbibliography.com
>> (web) http://www.cpbibliography.com/
>>
>___
>Koha mailing list  http://koha-community.org
>Koha@lists.katipo.co.nz
>http://lists.katipo.co.nz/mailman/listinfo/koha

> ___
> Koha-devel mailing list
> koha-de...@lists.koha-community.org
> http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
> website : http://www.koha-community.org/
> git : http://git.koha-community.org/
> bugs : http://bugs.koha-community.org/


-- 
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
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Statistics in 3.6

2012-07-05 Thread Paul Nielsen
Great thanks Chris,

Good to know the old gut instinct is still intact. 
So, is the wizard unreliable for other reports too, especially membership?

Paul
-Original Message-
From: Chris Cormack [mailto:ch...@bigballofwax.co.nz] 
Sent: Thursday, 5 July 2012 9:42 p.m.
To: Paul Nielsen
Cc: Joann Ransom; koha@lists.katipo.co.nz
Subject: Re: [Koha] Statistics in 3.6

On 4 July 2012 11:49, Paul Nielsen  wrote:
> I am glad I am not alone Jo, thanks.
>
>
>
> Chris, I only use the Circulation Statistics Wizard so not sure if 
> that is what you mean about the table?
>

Ah ha, that will be the problem that wizard doesn't work right since 3.4.x

You will want to use a saved report in the reports, I'll email you a good one 
to use when I'm back at work.

(I checked the db, this year is actually up about 30 thousand on last year 
(june to july))

Chris

#
DISCLAIMER:

This e-mail message and accompanying data may contain information that is 
confidential and subject to privilege.
If you are not the intended recipient, you are notified that any use, 
dissemination, distribution or copying of this message or data is prohibited.
If you have received this e-mail in error please notify the sender or Hauraki 
District Council at mailmars...@hauraki-dc.govt.nz immediately and delete all 
material pertaining to this e-mail. 
#
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Statistics in 3.6

2012-07-05 Thread Chris Cormack
Yep, that's what I think anyway. I'm in at work today (been on leave for
school holidays) So I'll do some new reports for you.

Chris
On Jul 6, 2012 8:33 AM, "Paul Nielsen"  wrote:

> Great thanks Chris,
>
> Good to know the old gut instinct is still intact.
> So, is the wizard unreliable for other reports too, especially membership?
>
> Paul
> -Original Message-
> From: Chris Cormack [mailto:ch...@bigballofwax.co.nz]
> Sent: Thursday, 5 July 2012 9:42 p.m.
> To: Paul Nielsen
> Cc: Joann Ransom; koha@lists.katipo.co.nz
> Subject: Re: [Koha] Statistics in 3.6
>
> On 4 July 2012 11:49, Paul Nielsen  wrote:
> > I am glad I am not alone Jo, thanks.
> >
> >
> >
> > Chris, I only use the Circulation Statistics Wizard so not sure if
> > that is what you mean about the table?
> >
>
> Ah ha, that will be the problem that wizard doesn't work right since 3.4.x
>
> You will want to use a saved report in the reports, I'll email you a good
> one to use when I'm back at work.
>
> (I checked the db, this year is actually up about 30 thousand on last year
> (june to july))
>
> Chris
>
>
> #
> DISCLAIMER:
>
> This e-mail message and accompanying data may contain information that is
> confidential and subject to privilege.
> If you are not the intended recipient, you are notified that any use,
> dissemination, distribution or copying of this message or data is
> prohibited.
> If you have received this e-mail in error please notify the sender or
> Hauraki District Council at mailmars...@hauraki-dc.govt.nz immediately
> and delete all material pertaining to this e-mail.
>
> #
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Overdue notices only list the first book/item that's late

2012-07-05 Thread Steven Nickerson
Hello everyone,

   We've noticed that the email overdue notices that go out only seem to
list the 1st item that is overdue, and not all overdue items.  For example,
if I checked out 2 books on the same date/time, I only get an overdue notice
for one of the two items.Anyone have any ideas?  I would think that both
items should be in the same email or at least two different emails should be
generated.

 

Thanks, as always!

Steve

 

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


Re: [Koha] KohaCon 13 Survey Problem

2012-07-05 Thread Joann Ransom
My vote is a rerun as I didn't understand how it works.

On 6 July 2012 05:31, Nicole Engard  wrote:

> Hello all,
>
> I wasn't clear when I sent out the survey for KohaCon and per a
> discussion in #koha I'm coming to you to see if you'd like me to rerun
> the survey so you can update your votes.  Here's how it works - and
> how it worked in previous years:
>
> If you vote for someplace as #1 it gets 5 points, #2 it gets 4 points,
> and so on.  In the end we tally the points to see where the conference
> takes place. That way if everyone picks one place as #1 but more
> people pick it as second and third it still might win.  So basically
> if you won't go somewhere no matter what then don't vote for that
> location and it will get no points from you.
>
> This means that those of you who didn't know the rules - because I
> didn't make it clear at all (my fault) might not have voted the way
> you would have if you knew the rules.  So my question to you all is
> ... should I close voting and put out a new call for votes explaining
> the procedure more clearly - or do we just carry on as we are?
>
> Nicole
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> http://lists.katipo.co.nz/mailman/listinfo/koha
>



-- 
Joann Ransom RLIANZA
Chief Executive
Te Horowhenua Trust.
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] [Koha-devel] KohaCon 13 Survey Problem

2012-07-05 Thread Mason James

On 2012-07-6, at 6:35 AM, Fischer, Katrin wrote:

> I think we should finish the vote as it is.
> Everyone could have asked before voting how the winner will be determined, 
> only noone did.
> And we are not using a new system, it's the same that we used before.
> 
> Katrin

as usual, i strongly agree :)


if you want to change your bad vote, why not ask the survey-admin (Nicole) 
nicely to remove your current vote, so you can to it again...


sorry, your mistake is not enough reason to void the current survey
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Overdue notices only list the first book/item that's late

2012-07-05 Thread Chris Cormack
On 6 July 2012 07:50, Steven Nickerson  wrote:
> Hello everyone,
>
>We've noticed that the email overdue notices that go out only seem to
> list the 1st item that is overdue, and not all overdue items.  For example,
> if I checked out 2 books on the same date/time, I only get an overdue notice
> for one of the two items.Anyone have any ideas?  I would think that both
> items should be in the same email or at least two different emails should be
> generated.
>
>
>
Hey Steve

What version of Koha ? I'm pretty sure I saw a bug report for this and
a fix for it in the recentish past.

Ill go hunting

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


[Koha] [KOHA] Problem when uprgade koha 3.6.6 to 3.8.2

2012-07-05 Thread kamild
Hi,
ale make upgrade koha 3.6.6 to 3.8.2 but when i finish upgrade - Login to
Koha staff client to complete the upgradation I get 

Can't locate Koha/DateUtils.pm in @INC (@INC contains: /usr/share/koha/lib
/etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1
/usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10
/usr/local/lib/site_perl .) at /usr/share/koha/lib/C4/Reserves.pm line 40.
BEGIN failed--compilation aborted at /usr/share/koha/lib/C4/Reserves.pm line
40.
Compilation failed in require at /usr/share/koha/lib/C4/Circulation.pm line
27.
BEGIN failed--compilation aborted at /usr/share/koha/lib/C4/Circulation.pm
line 27.
Compilation failed in require at /usr/share/koha/lib/C4/Overdues.pm line 26.
BEGIN failed--compilation aborted at /usr/share/koha/lib/C4/Overdues.pm line
26.
Compilation failed in require at /usr/share/koha/lib/C4/Members.pm line 30.
BEGIN failed--compilation aborted at /usr/share/koha/lib/C4/Members.pm line
30.
Compilation failed in require at /usr/share/koha/lib/C4/Letters.pm line 26.
BEGIN failed--compilation aborted at /usr/share/koha/lib/C4/Letters.pm line
26.
Compilation failed in require at /usr/share/koha/lib/C4/Suggestions.pm line
31.
BEGIN failed--compilation aborted at /usr/share/koha/lib/C4/Suggestions.pm
line 31.
Compilation failed in require at
/usr/share/koha/intranet/cgi-bin/mainpage.pl line 29.
BEGIN failed--compilation aborted at
/usr/share/koha/intranet/cgi-bin/mainpage.pl line 29.

I install all required modules perl. Can anybody helps?

--
View this message in context: 
http://koha.1045719.n5.nabble.com/KOHA-Problem-when-uprgade-koha-3-6-6-to-3-8-2-tp5718691.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