This article is outdated and may not work correctly for current operating systems or software.
Yii is a PHP framework that allows you to develop applications more quickly and easily. Installing Yii on Ubuntu is straightforward, as you will learn exactly how in this article.
This guide assumes that you already have a web server, PHP installed, and that you know your web root path (e.g. /var/www
).
Navigate to your web root path:
cd /var/www
Download Yii by using wget
:
wget http://yii.googlecode.com/files/yii-1.1.13.e9e4a0.zip
In order to unzip the file, we'll need to install the unzip tool:
apt-get install unzip
Unzip:
unzip yii-1.1.13.e9e4a0.zip
Yii can create the base of an application for you. In order to do this, execute:
php yii-1.1.13.e9e4a0/framework/yiic webapp ApplicationName
Naturally, replace ApplicationName
with a sufficient name for your application. This will generate a new application.
In your web browser, navigate to http://YourServerIP/ApplicationName
.
You will see a homepage here which Yii has generated. You can login with the username and password admin
.
Congratulations! You now have your first Yii application setup.