How to change the name framework in Yii FW!

i want change name folder framework in Yii, now how do i?

thank you very much!

Change the folder of yii is simple. After changing, you have to modify you index.php file:


<?php


// change the following paths if necessary

$yii='/path/to/framework/yii.php';

$config='/path/to/protected/config/main.php';


// remove the following line when in production mode

// defined('YII_DEBUG') or define('YII_DEBUG',true);


require_once($yii);

Yii::createWebApplication($config)->run();



Thank you very much! :rolleyes:

You can also change the Yii to Y if you want… just extends the Yii class and call it Y :lol: