Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/theprivileges/address-book

A simple address book application written in Zend Framework
https://github.com/theprivileges/address-book

Last synced: 9 days ago
JSON representation

A simple address book application written in Zend Framework

Awesome Lists containing this project

README

        

Address Book
==

This directory should be used to place project specfic documentation including
but not limited to project notes, generated API/phpdoc documentation, or
manual files generated or hand written. Ideally, this directory would remain
in your development environment only and should not be deployed with your
application to it's final production location.

NOTE:
This application requires the Zend Framework. Please make sure Zend Framework
is available in your php_includes directory.

Setting Up Your VHOST
=====================

The following is a sample VHOST you might want to consider for your project.

Please replace the DocumentRoot path with the one where the application has been
extracted to.


# Update this line according to your system
DocumentRoot "/usr/local/apache2/htdocs/php/addressbook/public"
ServerName addressbook.local

# This should be omitted in the production environment
SetEnv APPLICATION_ENV development

# Update this line according to your system

Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all

Next you need to edit your hosts file, add the following line to it.

`127.0.0.1 addressbook.local`

Setting Up Your Database
========================

The next step is to import the file addressbook.db.setup.sql into your MySQL Server

This will create the necessary table used by the application.

Configure MySQL Credentials
===========================

Update lines 11, 12 of application.ini file located in application/configs/
Insert the credentials of a MySQL user that has access to the addressbook table.