Book Image

Yii Project Blueprints

By : Charles R. Portwood ll
Book Image

Yii Project Blueprints

By: Charles R. Portwood ll

Overview of this book

Table of Contents (15 chapters)
Yii Project Blueprints
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Initializing the project


To provide us with a common starting ground, a skeleton project has been included with the project resources for this chapter. Included with this skeleton project are the necessary migrations, data files, controllers, and views to get us started with developing. Also included in this skeleton project are the user authentication classes we worked on in Chapter 5, Creating a Microblogging Platform. Copy this skeleton project to your web server, configure it so that it responds to chapter6.example.com as outlined at the beginning of the chapter, and then perform the following steps to make sure everything is set up:

  1. Adjust the permissions on the assets and protected/runtime folders so that they are writable by your web server.

  2. In this chapter, we'll once again use the latest version of MySQL (at the time of writing MySQL 5.6). Make sure that your MySQL server is set up and running on your server. Then, create a username, password, and database for our project to use,...