Top Banner
Installation of OpenBiblio on Windows XP using EasyPHP Rupesh Kumar A [email protected]
58

Installation of OpenBiblio on Windows XP using EasyPHP

Nov 13, 2014

Download

Self Improvement

Rupesh Kumar

This presentation demonstrates the installation of OpenBiblio Integrated Library Software on Windows XP using EasyPHP (A Windows-Apache-MySQL-PHP Bundle). File size ~1.85 MB.
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Installation of OpenBiblio on Windows XP using EasyPHP

Installation of OpenBiblio on Windows XP using EasyPHP

Rupesh Kumar [email protected]

Page 2: Installation of OpenBiblio on Windows XP using EasyPHP

OpenBiblio

• OpenBiblio is an open-source ILS (Integrated Library Software) containing OPAC, circulation, cataloging, and staff administration functionality.

Page 3: Installation of OpenBiblio on Windows XP using EasyPHP

EasyPHP

• EasyPHP is a WAMP (Windows-Apache-MySQL-PHP) bundle. Using EasyPHP, it is easy to manage any web application built on Apache-MySQL-PHP.

Page 4: Installation of OpenBiblio on Windows XP using EasyPHP

Download EasyPHP & OpenBiblio

• EasyPHPhttp://www.easyphp.org/

• OpenBibliohttp://obiblio.sourceforge.net/

Page 5: Installation of OpenBiblio on Windows XP using EasyPHP

Software Versions used in this illustration

• EasyPHP 5.2.10• OpenBiblio 0.6.1

Page 6: Installation of OpenBiblio on Windows XP using EasyPHP

Step 1: Install EasyPHP

Page 7: Installation of OpenBiblio on Windows XP using EasyPHP

Install EasyPHP

• Double Click the EasyPHP setup file.

Page 8: Installation of OpenBiblio on Windows XP using EasyPHP

Select Setup Language

• I chose English (default).

Page 9: Installation of OpenBiblio on Windows XP using EasyPHP

Click “Next”

Page 10: Installation of OpenBiblio on Windows XP using EasyPHP

Click on ‘I accept the agreement’ and click “Next”

Page 11: Installation of OpenBiblio on Windows XP using EasyPHP

Click “Next”

Page 12: Installation of OpenBiblio on Windows XP using EasyPHP

This is the installation location. Click “Next”

Page 13: Installation of OpenBiblio on Windows XP using EasyPHP

Start Menu Folder. Click “Next”

Page 14: Installation of OpenBiblio on Windows XP using EasyPHP

Click “Install” to begin Installation

Page 15: Installation of OpenBiblio on Windows XP using EasyPHP

Installation complete. Click “Finish”

Page 16: Installation of OpenBiblio on Windows XP using EasyPHP

EasyPHP will be launched

• Apache and MySQL both should be showing ‘Started’

Page 17: Installation of OpenBiblio on Windows XP using EasyPHP

EasyPHP can be started anytime

• Start > Program > EasyPHP x.y.z > EasyPHP x.y.z

Page 18: Installation of OpenBiblio on Windows XP using EasyPHP

If EasyPHP is started, the EasyPHP Icon

appears on the System Tray

Page 19: Installation of OpenBiblio on Windows XP using EasyPHP

Right Click on the EasyPHP IconAnd click on “Administration”

Page 20: Installation of OpenBiblio on Windows XP using EasyPHP

EasyPHP Components

• EasyPHP has the following components:• Apache (Local Web)• MySQL (database management system)• phpMyAdmin (graphical tool to manage

database)

Page 21: Installation of OpenBiblio on Windows XP using EasyPHP
Page 22: Installation of OpenBiblio on Windows XP using EasyPHP

Step 2: Create openbiblio database

Page 23: Installation of OpenBiblio on Windows XP using EasyPHP

Create a new databaseusing phpMyAdmin

Click PHPMYADMIN

Page 24: Installation of OpenBiblio on Windows XP using EasyPHP

Typeopenbiblio

and click

“Create”

Page 25: Installation of OpenBiblio on Windows XP using EasyPHP

Typeopenbiblio

and click

“Create”

Page 26: Installation of OpenBiblio on Windows XP using EasyPHP

Databaseopenbibliohas beencreated

Page 27: Installation of OpenBiblio on Windows XP using EasyPHP

Step 3: Create openbiblio database user

Page 28: Installation of OpenBiblio on Windows XP using EasyPHP

Click on“Privileges”

Page 29: Installation of OpenBiblio on Windows XP using EasyPHP

Click on“Add a new

User”

Page 30: Installation of OpenBiblio on Windows XP using EasyPHP

TypeUser name:openbiblio

Host:localhost

AndType yourPassword

I have used ‘openbiblio’as the password

Page 31: Installation of OpenBiblio on Windows XP using EasyPHP

Click on“Grant allprivileges

on database“openbiblio”

Page 32: Installation of OpenBiblio on Windows XP using EasyPHP

UnderGlobal

Privileges,Click

“Check All”

Page 33: Installation of OpenBiblio on Windows XP using EasyPHP

AllPrivilegesSelected.

Now, scrolldown and

Click “Go”

Page 34: Installation of OpenBiblio on Windows XP using EasyPHP

Click “Go”

Page 35: Installation of OpenBiblio on Windows XP using EasyPHP

You haveadded a new

Useropenbiblio

Page 36: Installation of OpenBiblio on Windows XP using EasyPHP

Step 4: Extract openbiblio files to web server

Page 37: Installation of OpenBiblio on Windows XP using EasyPHP

Extract openbiblioZip file using any

Extracting utility suchas winzip or winrar or 7zip

Page 38: Installation of OpenBiblio on Windows XP using EasyPHP

Extract to your local web root folder

• Extract to C:\Program Files\easyphp x.y.z\www folder

Page 39: Installation of OpenBiblio on Windows XP using EasyPHP

Extracted openbiblio folder

Page 40: Installation of OpenBiblio on Windows XP using EasyPHP

Step 5: Enter database name and database user settings

Page 41: Installation of OpenBiblio on Windows XP using EasyPHP

Open database_constants.php file using wordpad or any other text editor

Page 42: Installation of OpenBiblio on Windows XP using EasyPHP

Enter database name,database usernameand password here

Page 43: Installation of OpenBiblio on Windows XP using EasyPHP

In this illustration,Database name, Username and

Password all areopenbiblio.

After entering, Save the file and close

Page 44: Installation of OpenBiblio on Windows XP using EasyPHP

Create a new folder‘tmp’ in C drive to

hold PHP session data

Page 45: Installation of OpenBiblio on Windows XP using EasyPHP

tmp folder created

Page 46: Installation of OpenBiblio on Windows XP using EasyPHP

Step 6: Set tmp folder to hold php session data

Page 47: Installation of OpenBiblio on Windows XP using EasyPHP

Go to Conf_files folder & open php.ini file with wordpad or other text editor• C:\Program Files\easyphp x.y.z\conf_files

Page 48: Installation of OpenBiblio on Windows XP using EasyPHP

Find out the line;session.save_path = “/tmp”

Remove semicolon at the beginningand add c: before /tmp

Page 49: Installation of OpenBiblio on Windows XP using EasyPHP

Save the file and Close

Page 50: Installation of OpenBiblio on Windows XP using EasyPHP

Step 6: Run Installation script

Page 51: Installation of OpenBiblio on Windows XP using EasyPHP

Open any web browser such asInternet Explorer or Mozilla Firefox and typehttp://localhost/openbiblio/install/index.php

Click “Go” or the arrow or press Enter

Page 52: Installation of OpenBiblio on Windows XP using EasyPHP

Database connection is good.Click “Install” to install openbiblio.

If you want some sample records to beinstalled, check “Install Test Data” and then

Click “Install”

Page 53: Installation of OpenBiblio on Windows XP using EasyPHP

Openbiblio has been installed successfully.Click start using OpenBiblio to login

Page 54: Installation of OpenBiblio on Windows XP using EasyPHP

OpenBiblio Home Page.Click “Login” to login

Page 55: Installation of OpenBiblio on Windows XP using EasyPHP

Default:Username: adminPassword: admin

Page 56: Installation of OpenBiblio on Windows XP using EasyPHP
Page 57: Installation of OpenBiblio on Windows XP using EasyPHP

OpenBiblio Modules

OpenBiblio Modules and functions are self explanatory.

• Circulation• Cataloging• Admin• Reports

Page 58: Installation of OpenBiblio on Windows XP using EasyPHP

Thank You

Comments & [email protected]