How to install and set up Yii framework application to your hosting.
Get and Upload Yii Framework:
Get a stable version of Yii.
Upload LICENCE, framework and requirements.
Test if Your Hosting Meets the Requirements:
http://example.com/requirements/index.php
If you pass then you may remove requirements directory, but when you switch hosting then you might need it again.
Create a Skeleton for Your Application:
Yii comes with a command line tool called "yiic" that can create a skeleton Yii application for you to start with.
On command line, type in the following commands:
Windows(You need PHP CLI):
Source code viewer
cd YiiPath\framework yiic webapp ..\app-nameProgramming Language: Bash
Linux:
Source code viewer
sudo apt-get install php5-cli cd YiiPath/framework ./yiic webapp ../app-nameProgramming Language: Bash
You can access it from the following URL: http://example.com/app-name
Now that yii framework is set up, you can find some fine tutorials from Yii websites resources page.