Tag: Open Source

  • Cannot load MVC4 Web project in VS 2017 or VS 2019

    I have a web project, it could load fine in VS15, but in VS2019 it’s failing, saying the project is incompatible. The migration report contains the following message: ========== .csproj: The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?LinkID=299083&projecttype=E3E379DF-F4C6-4180-9B81-6769533ABE47 To resolve it: 1. Open…

  • How to Re-index Bibliographic Records in Koha

    Sometimes after entering Bibliographic (Books) data to Koha, they are not visible in the search. Due to this issue we need to rebuild the Koha index using command: sudo koha-rebuild-zebra -f -v instancename    

  • How to install Koha – A Library Software on Ubuntu

    Step 1: Execute the script by giving the following command: #!/bin/bash #export HTTP_PROXY_HOST=10.3.100.207 #export HTTP_PROXY_PORT=8080 wget -O- http://debian.koha-community.org/koha/gpg.asc | sudo apt-key add – echo deb http://debian.koha-community.org/koha stable main | sudo tee /etc/apt/sources.list.d/koha.list sudo apt-get update sudo apt-get install libgd-perl sudo apt-get upgrade sudo apt-get install koha-common Koha installation gives error related with apache2-mpm-itk issue. The…