Download In Out management: https://github.com/omkar2403/inout/releases

Old Inout Management Step-by-step Installation Notes Click here

Latest In-Out management Installation Process.

INSTALLATION OF PHP 7.4

Open terminal and execute commands.

sudo apt-get update
sudo apt -y install software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt -y install php7.4
php -v

Setup the OPAC folder

First, download the package of the software which contains two main files and copy it into the Home directory.

Now we have to copy the inout directory into OPAC htdocs directory. 

Open the terminal in the Home directory and apply the following commands.

sudo su
sudo mv /home/inout /usr/share/koha/opac/htdocs
cd /usr/share/koha/opac/htdocs
sudo chmod 777 -R inout

Setup the database:
Open the terminal and apply the following commands.

sudo su
mysql -uroot -p
[Enter MySQL Root password]
create database lib;
grant all privileges on lib.* to 'root'@'localhost'identified by'mysqlroot';
flush privileges;
Quit;

Where ‘root’ is the username and ‘mysqlroot’ is the password.

Inout sample datas restore 

Copy the inout.sql sample database file. 

File location  inout/ DB/ inout.sql (copy this file) and Paste to koha home directory.

Now restore the sample database which is present in the ‘inout’ directory by applying
the following command in the terminal (Open Terminal in ‘inout’ directory).

sudo su

mysql -uroot -p lib < inout.sql

[Enter MySQL Root password]

Replace your MySqL password and koha database name in the file dbconn.php located in ‘inout/functions/dbconn.php’ directory at the line number 3 & 5. ( If you have changed the names of any other files apart from these two files please change them as shown in the image below)

sudo mousepad /usr/share/koha/opac/htdocs/inout/functions/dbconn.php


Restart Apache

sudo systemctl reload apache2 && sudo systemctl restart apache2

The system is ready now.
You can access it at address given below:

How to use it?
Logins:
There are 3 users for In Out System.

1. Operator (Controls Display Screen / main screen)
username : user
password : 123456

2. Admin of library (Controls Single library / location admin panel and reports)
username : admin
password : library

3. Master ( Controls all the library / location admin panel and reports)
username : master
password : superuser

In out Management Problem Solving,  Blank Screen After Installation and Logout After 20 Minute Issue.

How to In out Management Auto Backup in Dropbox.

Information courtesy: Mr. Omkar Kakeru https://omkar2403.github.io/its_me/