13/02/2021

How to Install Koha on Ubuntu 20.04 LTS | Install Koha on Ubuntu (with easy steps)

You can easily install Koha on Ubuntu Operating system using below process. In this process we will install latest stable version of Koha on Ubuntu. Open Terminal in your Ubuntu machine for Koha Installation. Update Ubuntu OS using below commands: sudo su apt-get update apt-get upgrade Install Leafpad Text Editor apt-get install leafpad Add Koha Community Repository & Trusted Repository Key sudo echo deb http://debian.koha-community.org/koha […]

16/09/2021

Dspace Backup Commands | How to Setup Automatic Daily Backup of Dspace Database & Files

Create a script for daily automatic DSpace backup of Database & Repository using Dspace Backup Commands in Terminal. Here is how you take the backup of your Dspace Server. In this process we will create dspace backup file for below 3 things:   1. PostgreSQL Database.   2. Dspace File System (dspace/assetstore directory).   3. Dspace Log Files. (dspace/log directory). To setup Automatic Daily Dspace […]

09/09/2021

How to Customize MARC Framework in Koha Software| Download Customize Bibliographic Framework

Download Customized Bibliographic Framework Koha MARC Framework Customization:  Before we start cataloging in Koha Software, we need a customized MARC bibliographic framework. MARC Framework is a templates for creating new bibliographic records in Koha Software. Koha comes with some predefined marc frameworks and librarians can create their own frameworks for content specific to their libraries. Predefined frameworks has lots of fields and all these fields are […]

23/01/2021

Install Anydesk on Ubuntu | Install Teamviewer on Ubuntu 18.04/20.04/21.04

Install Anydesk on Ubuntu Run the following commands as root user: sudo su Enter login password when prompt. sudo apt-get update && sudo apt-get upgrade wget -qO – https://keys.anydesk.com/repos/DEB-GPG-KEY | apt-key add – echo “deb http://deb.anydesk.com/ all main” > /etc/apt/sources.list.d/anydesk-stable.list sudo apt update sudo apt install anydesk That’s it, Anydesk is ready to use. Uninstall Anydesk on Ubuntu sudo apt-get purge anydesk Install TeamViewer 0n Ubuntu Run […]

13/09/2020

How to Disable Directory Browsing in WordPress using cPanel | 403 Permission Denied

You can protect your Website from hackers by Disable Directory Browsing in WordPress | Disable Directory Listing in cPanel | Disable directory listing htaccess wordpress | Preventing a Directory Listing If you want to disable directory browsing in WordPress website, just follow the below steps. First of all, Login to your Web Hosting Account and go to cPanel. Next, Go to Files section and click on File Manager. (as […]

02/09/2020

How to Install OPAC in SOUL | Configure Web OPAC in SOUL2.0 Software

Note: Before you Install OPAC in SOUL2.0 please check that IIS 6 or higher has been enabled in your SOUL server. To install OPAC in SOUL 2.0 Server, Execute setup.exe in “S20WEB” folder from SOUL2.0 Installation CD . There are instances that some of IIS configuration may not allow direct installation of WebOPAC due to authentication issues. In such cases, please copy entire ‘WebOPAC’ folder […]

28/08/2020

Koha OPAC Customization | How to Change OPAC Header in Koha 20.05

Koha OPAC Customization is very simple process in latest version of Koha. Koha OPAC has many sections i.e. Header, Left Navigation(Upper & Bottom), Main User Block, Right Navigation and Footer. We can easily customize these sections using HTML & CSS.(see below image) The above sections can be customized using Koha Administration->Global System Preferences->OPAC Preferences and Koha News Modules. Change Banner of Koha OPAC Header: 1. […]

27/08/2020

Koha Reports – SQL Reports for Koha 20.05, 20.11 & 21.05

Koha Reports: You can easily add customized SQL reports in Koha Report Module. Accession Register – Sorted by Barcode SELECT CONCAT(”,biblio.biblionumber,”) AS biblionumbers, items.barcode, items.itemcallnumber, biblioitems.isbn, biblio.author, biblio.title, biblioitems.pages, biblioitems.publishercode, biblioitems.place, biblio.copyrightdate,items.price FROM items LEFT JOIN biblioitems ON (items.biblioitemnumber=biblioitems.biblioitemnumber) LEFT JOIN biblio ON (biblioitems.biblionumber=biblio.biblionumber) ORDER BY LPAD (items.barcode,40,’ ‘) ASC Detailed Accession Register SELECT oo.dateaccessioned AS ‘Date’, oo.barcode AS ‘Acc. No./Barcode’, ooo.title AS ‘Title’, ooo.author […]

04/08/2020

Enable SIP2 Server in Koha | How to Start SIP Server in Koha Software

You have to Enable SIP2 Server in Koha Software to integrate RFID System in your Library. Use following command to Enable SIP2 Server. Open Terminal and run below command to enable SIP2 Server sudo koha-enable-sip library (Here ‘library’ is instance name) Next, Start SIP2 Server sudo koha-start-sip library To Stop SIP2 Server, You can use below command sudo koha-stop-sip library OR Manual Start SIP2 Server […]

06/07/2020

Add Local Repository to BitBucket/GitHub

Create an account on BitBucket/GitHub. Create new respository in BitBucket/GitHub. And you will get a http clone url with .git extension as below.git clone https://github.com/user_name/myrepository.git Next go to your local project/directory in Git Bash Terminal. cd /path_to_local_folder/repo Init your project as git repository git init Connect your local repository to remote git repository. [Change below link as per your remote git repository.] git remote add […]