Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/abtris/zf-examples-my-quickstart

Zend Framework Example with Add posts and comments
https://github.com/abtris/zf-examples-my-quickstart

Last synced: about 1 month ago
JSON representation

Zend Framework Example with Add posts and comments

Awesome Lists containing this project

README

        

1. Create structure

`zf create project`

2. Enable layout

`zf enable layout`

3. Create Controllers (index, auth, post)

`zf create controller auth 1`

`zf create action login auth 1`

`zf create action logout auth 1`

`zf create controller post 1`

`zf create action add post 1`

`zf create action edit post 1`

`zf create action delete post 1`

`zf create controller comment 1`

`zf create action add comment 1`

`zf create action reply comment 1`

`zf create action edit comment 1`

`zf create action delete comment 1`

4. SetUp Database connection (pgsql, mysql)

run sql script docs/createTables.sql

`$ mysql -u root -p