2014-11-25 59 views
0

我按照這個教程(http://www.youtube.com/watch?v=xKhT1fISgAs)添加與Yii框架的引導,但得到這個錯誤Yii引導語法錯誤,意想不到的T_CONSTANT_ENCAPSED_STRING錯誤

解析錯誤:語法錯誤,在電子商務意外T_CONSTANT_ENCAPSED_STRING:\ XAMPP \ htdocs中\ yii_tuts \ tt \ protected \ config \ main.php on line 13

我遵循本教程中的每一步。但在視頻中一切都很好。

這裏是我的主配置代碼文件

<?php 

// uncomment the following to define a path alias 
// Yii::setPathOfAlias('local','path/to/local-folder'); 

// This is the main Web application configuration. Any writable 
// CWebApplication properties can be configured here. 
return array(
    'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 
    'name'=>'My Web Application', 

    'aliases'=>array(
     'bootstrap' => realpath(__DIR__'/../extension/yiibooster'), 
    ), 

    // preloading 'log' component 
    'preload'=>array('log', 'bootstrap'), 
    'theme'=>'heart', 
    // autoloading model and component classes 
    'import'=>array(
     'application.models.*', 
     'application.components.*', 
    ), 

你能指出錯誤

回答

2

你錯過了一個.。更改您的代碼,如下所示:

'aliases'=>array(
    'bootstrap' => realpath(__DIR__.'/../extension/yiibooster'), 
), 
相關問題