Simple Multiple Environments with Default Yii Installation

You are viewing revision #1 of this wiki article.
This version may not be up to date with the latest version.
You may want to view the differences to the latest version.

next (#2) »

After installing Yii basic application on our systems, most of the time we want to have multiple environment such as local, dev and live setup. Most of the times when we want to make changes to configuration file, we have to over-write configurations file for each environment.

We can make this process simple, while creating config file for each environment and adding a constant variable to index.php file to active a specific environment.

Following are the steps:

Step # 1

Add the following code to index.php

define(ENV, 'local');

// change the following paths if necessary
$yii=dirname(__FILE__).'/../yiiroot/framework/yii.php';

if (ENV == 'local') $config=dirname(__FILE__).'/protected/config/main-local.php';
if (ENV == 'dev')   $config=dirname(__FILE__).'/protected/config/main-dev.php';
if (ENV == 'live')  $config=dirname(__FILE__).'/protected/config/main.php';
Setp # 2

Create two files 'main-local.php' and 'main-dev.php' inside '/protected/config/' folder. These two files should be exact copy of main.php file.

Setp # 3

Make changes to each configuration file according to your requirements and then in 'index.php' set the constant variable to either

  • local
  • dev
  • live

as per environment setup.

As we know that there are many other advance approaches available, but this is a simple way to work with multiple environment.

2 0
8 followers
Viewed: 16 775 times
Version: Unknown (update)
Category: How-tos
Written by: Ibrar Turi
Last updated by: CeBe
Created on: Jan 27, 2014
Last updated: 10 years ago
Update Article

Revisions

View all history

Related Articles