You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
272 B
10 lines
272 B
12 years ago
|
<?php
|
||
|
define('YII_DEBUG', true);
|
||
|
|
||
|
$yii = __DIR__.'/../framework/yii.php';
|
||
|
require $yii;
|
||
|
$config = require dirname(__DIR__).'/protected/config/main.php';
|
||
|
|
||
|
$basePath = dirname(__DIR__).'/protected';
|
||
|
$app = new \yii\web\Application('webapp', $basePath, $config);
|
||
|
$app->run();
|