I get the following errors in z3950-daemon.log after ./processz3950queue: Bareword "Net::Z3950::RecordSyntax::USMARC" not allowed while "strict subs" in use at ./processz3950queue line 260. Bareword "Net::Z3950::RecordSyntax::UNIMARC" not allowed while "strict subs" in use at ./processz3950queue line 261. Execution of ./processz3950queue aborted due to compilation errors. My template looks like this: <select name="syntax"> <option value="USMARC">USMARC</option> <option value="MARC21">MARC21</option> <option value="UNIMARC">UNIMARC</option> </select> I'm running Koha 2.2.5 on Dapper. I see that last month someone posted to the list concerning this same error. Any ideas? I've tried selecting different syntax for the z3950 servers including MARC21 without luck. --Jason
Jason Ronallo a écrit :
I get the following errors in z3950-daemon.log after ./processz3950queue:
Bareword "Net::Z3950::RecordSyntax::USMARC" not allowed while "strict subs" in use at ./processz3950queue line 260. Bareword "Net::Z3950::RecordSyntax::UNIMARC" not allowed while "strict subs" in use at ./processz3950queue line 261. Execution of ./processz3950queue aborted due to compilation errors.
My template looks like this: <select name="syntax"> <option value="USMARC">USMARC</option> <option value="MARC21">MARC21</option> <option value="UNIMARC">UNIMARC</option> </select>
I'm running Koha 2.2.5 on Dapper. I see that last month someone posted to the list concerning this same error. Any ideas? I've tried selecting different syntax for the z3950 servers including MARC21 without luck. --Jason _______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
install yaz and then type in a root console : perl -MCPAN -e "install Net::Z3950" this should work. HTH -- Henri-Damien LAURENT
I figured it out after some poking around. The problem I experienced was that I had Net::Z3950::ZOOM installed and it doesn't yet support the classic API. Initially I couldn't downgrade to Net::Z3950, but after grabbing cpanplus I was able to remove ZOOM cleanly. Then Net::Z3950 wouldn't install because I had a newer version of yaz than that in the Ubuntu repository. Once I downgraded yaz (2.1.8) everything took off just fine with running Koha's 2.2.5 z3950 search. It's still confusing that when running a z3950 search in the web interface that you get those two question marks that refresh several times before showing how many items are in the queue. --Jason On 10/13/06, Henri-Damien LAURENT <laurenthdl@alinto.com> wrote:
Jason Ronallo a écrit :
I get the following errors in z3950-daemon.log after ./processz3950queue:
Bareword "Net::Z3950::RecordSyntax::USMARC" not allowed while "strict subs" in use at ./processz3950queue line 260. Bareword "Net::Z3950::RecordSyntax::UNIMARC" not allowed while "strict subs" in use at ./processz3950queue line 261. Execution of ./processz3950queue aborted due to compilation errors.
My template looks like this: <select name="syntax"> <option value="USMARC">USMARC</option> <option value="MARC21">MARC21</option> <option value="UNIMARC">UNIMARC</option> </select>
I'm running Koha 2.2.5 on Dapper. I see that last month someone posted to the list concerning this same error. Any ideas? I've tried selecting different syntax for the z3950 servers including MARC21 without luck. --Jason _______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
install yaz and then type in a root console : perl -MCPAN -e "install Net::Z3950" this should work. HTH -- Henri-Damien LAURENT
participants (2)
-
Henri-Damien LAURENT -
Jason Ronallo