eeStock project is a Web application for managing an inventory.
eeStock is a free software which allows you to manage your stocks (items).
It's written in PHP4 and uses a PostgreSQL or MySQL database to store data.
It's divided in 2 sections:
- a user section
- an administration section
In the Stock managing section, users can:
.browse items by manufacturer, category, owner or location
.search items using a keyword
.borrow an item if this one is free
.return their items
.access to their profile
In the Administration section you can (if you have administrator or superuser rights):
.create, modify, duplicate, delete items
.browse all items (list)
.create, modify, delete categories (each category can have a parent category)
.create, modify, delete locations (each location can have a parent location)
.create, modify, delete manufacturers
.create, modify, delete users who will be owners of item(s) (only superusers)
Requirements:
· Apache (required)
· PHP (required)
· MySQL (optional)
· PostgreSQL (optional)
Install database
Create the eestock database (MySQL root user password required)
$ mysqladmin -h localhost -u root -p create eestock
Create the user "eestock" (MySQL root user password required)
$ mysql -h localhost -u root -D mysql -p < admin/utils/mysql/create_user.mysql
Create tables (MySQL root user password required)
$ mysql -h localhost -u root -D eestock -p < admin/utils/mysql/init_db.mysql
Edit file admin/config.inc to change the eestock user password.
Requirements:
· Finished LDAP connection support
Product's homepage