22/05/2020

How to Install Java, Tomcat, MySQL, phpMyAdmin on Ubuntu 20.04 in GCP/AWS Intance

Before you deploy any Web Application on your Ubuntu Server, You have to install Java , Tomcat Server, MySql Database, phpMyAdmin etc. First of all open Terminal on GCP Ubuntu Instance OR connect your AWS Ubuntu Instance in Putty Software through SSH. Login as root and update > sudo su > apt-get update Install JAVA (OpenJDK) Run below command to install OpenJDK 11 > sudo […]

14/05/2020

DSpace Customization

DSpace Customization : Change header image in Dspace JSPUI InterfacePrepare a header image and place in Dspace foldere.g. cp header.png /opt/tomcat/webapps/jspui/image Hide Dspace brand headingOpen header-default.jsp file using Terminal. Apply following commands, sudo sugedit /opt/tomcat/webapps/jspui/layout/header-default.jsp Find following lines Replace the red marked code with Save and close the file.

06/02/2020

Koha Auto Increment Fix | How to fix Koha Auto Increment Problem

Follow these steps to apply the solution for the “library” instance for Koha Auto Increment Fix: sudo gedit /etc/mysql/my.cnf Locate the [mysqld] section and add: init-file=/var/lib/mysql/init-file_koha_fix.sql sudo gedit /var/lib/mysql/init-file_koha_fix.sql Copy following code and paste into “init-file_koha_fix.sql” file. USE koha_library;   SET @new_AI_borrowers = ( SELECT GREATEST( IFNULL( ( SELECT MAX(borrowernumber) FROM borrowers ), 0 ), IFNULL( ( SELECT MAX(borrowernumber) FROM deletedborrowers ), 0 ) ) + […]

30/01/2020

How to install Koha In Out Management System | Attendance Management System in Koha 20.05

How to Install Koha In Out Management System | Attendance Management System (Gate Register) in Koha Software “Koha In Out Management System” is designed in php framework which works along with koha software. This koha plugin is used to track user entry time and exit time in a particular location of library. It generates various types of reports as per requirement. You can install PHP […]

29/01/2020

Koha Data Migration in Koha Software | How to Convert Excel File into MARC Format (Part: #2)

Koha Data Migration Process: How to Convert Excel File into MARC for Data Migration in Koha 20.04/20.11/21.05 In this video, we will convert Excel Data into Marc Format for importing the Bibliographic Records of Books to Koha Software (Open Source Library Software). You can download Excel File Format from Above Download Button for MARC Conversion   Also Read: How to Customize MARC Framework in Koha […]

25/01/2020

Display Book Cover Images in Koha OPAC | Enable Book Cover Images in Koha OPAC

Enabling Amazon Indian Book Cover Images in Koha Koha can display book cover images in search results by fetching the images from Amazon, if you enable the OPACAmazonCoverImages preference in Koha. Furthermore, clicking on the image sends the user to the Amazon site for find more details about the book like author name and ISBN and so on. Follow the below steps to Display Book […]

04/12/2019

Install Koha Software on Ubuntu 16.04 & 18.04 LTS

Open Terminal and get ready for installation Update Ubuntu sudo su  apt-get update apt-get upgrade Install Leafpad text editor apt-get install leafpad Add Koha community repository echo deb http://debian.koha-community.org/koha oldstable main | sudo tee /etc/apt/sources.list.d/koha.list wget -O- http://debian.koha-community.org/koha/gpg.asc | sudo apt-key add – Update the software repository sudo apt update Install Koha sudo apt install koha-common Server Configuration In this step, need to edit network […]

06/09/2019

RFID Library Automation Videos

Please click on below links for watching RFID Library Automation Videos: RFID Library Management & Security System Installed at Morigaon College, Assam Attendance Management System using Barcode in Library (Gate Entry Register with Koha Software) RFID Book Tagging Process in CIT Kokrajhar Library using SOUL 2.0 Software (RFID LIBRARY-RFID TAG)

27/03/2019

Install JBoss as Service in Windows | How to Run JBoss 7 as Windows Service

This is short article How to Install JBoss as Service in Windows. You can easily run JBoss 7 as Windows Service by following below steps. 1. Open a command prompt as Administrator. 2. Change directories to the <JBOSS_HOME>bin directory. 3. Type the command: service.bat install and press Enter. 4. A message displays stating “Service <JBoss Version> installed” . 5. You can now start and stop JBoss from the Windows Services […]

18/03/2019

Koha Backup | How to Setup Automatic Backup in Koha 21.05

Create Shell Script for Daily Koha Backup To setup Automatic Daily Koha Backup, Follow the below Commands. First of all, Login to root user and create directory for backup. sudo su Enter Login password when prompted. Next, Create Koha Backup directory mkdir koha_backup Allow write permission to this folder sudo chmod 777 koha_backup (Now, Exit from root directory) Create a backup file. sudo gedit koha_backup/backup.sh Copy below text into […]