Posts

Showing posts from April, 2023

AI Tools for Academic Assistance

Koha Email Check in Basic Receipt

Image
  <!DOCTYPE html> <html lang="en"> <head>     <style>         body{                     }         h1,h2,h3,h4,h5,h6{             margin: 0;             padding: 0;         }         p{             margin: 0;             padding: 0;         }         .container{             width: 90%;     ...

Koha Plugin

Image
Software:   Apache (Already there in koha server)   PHP   MySQL (Already there in koha server)  Any text editor like vim/mousepad/leafpad/gedit Hardware:  A computer system with a widescreen monitor  Automatic barcode scanner Installation: PHP Installation:  for Debian 10 & Ubuntu 20.04 LTS Open a terminal and enter the following commands. sudo apt-get install -y git php libapache2-mod-php php-{bcmath,bz2,intl,gd,mbstring,mysql,zip,cli,fpm,opcache,xml,curl,intl,xsl,soap,json} cd /usr/share/koha/opac/htdocs sudo git clone https://github.com/omkar2403/inout.git sudo chmod 777 -R inout Setup the database: Go to MySQL shell and create a database, user, and password for inout   sudo su mysql -uroot -p [Enter MySQL Root password] CREATE database libinout; CREATE USER 'libinout'@'localhost' IDENTIFIED BY 'libinout123'; GRANT ALL PRIVILEGES ON *.* TO 'libinout'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES; quit...