On 27/03/22 7:50 pm, Mason James wrote:
On 26/03/22 7:39 pm, Londhe Amar wrote:
I have installed Koha versions 18.05.00, 19.11.00, 20.11.06 But for Koha version 20.11.06 this problem appears.
Server : Ubuntu 16.04.4 LTS
Too many koha's installed on the server, if I delete the CPAN modules the other koha's do not work. I have installed all the dependencies listed by the following command
root@server:~/koha-20.11.06# ./koha_perl_deps.pl -m -u
Total modules reported: 0
***Is there a problem with the server version?
hi Londhe
you probably have a problem caused by some incompatible perl modules installed from CPAN
1/ i would suggest you move (or delete) your CPANed perl modules and install the koha-perldeps package...
$ sudo mv usr/local/share/perl /usr/local/share/perl.backup $ sudo apt install koha-perldeps $ sudo apt install koha-deps
2/ or... you could install the following specific perl modules from CPAN
$ sudo cpanm Mojolicious@8.12 $ sudo cpanm JSON::Validator@3.14 $ sudo cpanm Mojolicious::Plugin::OpenAPI@2.16
option 1 is best :0)
also, you'll need to add 'xenial' to your apt repo, as its old $ echo 'deb http://debian.koha-community.org/koha 20.11 main xenial' | sudo tee /etc/apt/sources.list.d/koha.list you can find more information in section 2.1.2.3 (Support for Koha on older versions of Debian/Ubuntu), here... https://wiki.koha-community.org/wiki/Koha_on_Debian <https://wiki.koha-community.org/wiki/Koha_on_Debian#Support_for_Koha_on_older_versions_of_Debian.2FUbuntu_.28Debian_8.2C_Ubuntu_18.04.2C_Ubuntu_16.04.29><https://wiki.koha-community.org/wiki/Koha_on_Debian#Support_for_Koha_on_older_versions_of_Debian.2FUbuntu_.28Debian_8.2C_Ubuntu_18.04.2C_Ubuntu_16.04.29>