7 lines
178 B
PHP
7 lines
178 B
PHP
|
<?php
|
||
|
|
||
|
// include Yii bootstrap file
|
||
|
require_once(dirname(__FILE__).'/../../framework/yii.php');
|
||
|
|
||
|
// create a Web application instance and run
|
||
|
Yii::createWebApplication()->run();
|