0

我设法在我的测试 yii 安装上创建了“Testdrive”应用程序。我我已经安装了 Bootstrap。

更重要的是,我正在努力激活我想使用的主题。我已经浏览了所有我能找到的 Yii 教程,并且'theme' => 'xxxx'没有成功地更改过。

我仔细检查了文件/文件夹权限以消除明显的错误。

观看演示站点的网址是http://www.pureads.co.uk/testdrive

随便问我什么,我会尽我所能回答。

这是我的protected/config/main.php文件,我试图在其中调用我所坐的主题,/testdrive/themes但似乎没有工作。

    <?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',
    // preloading 'log' component
    'preload'=>array('log'),

    // autoloading model and component classes
    'import'=>array(
        'application.models.*',
        'application.components.*',
    ),
    'modules'=>array(
        // uncomment the following to enable the Gii tool

        'gii'=>array(
            'class'=>'system.gii.GiiModule',
            'password'=>'Enter Your Password Here',
            // If removed, Gii defaults to localhost only. Edit carefully to taste.
            'ipFilters'=>array('127.0.0.1','::1'),
        ),

    ),

    // application components
    'components'=>array(
        'user'=>array(
            // enable cookie-based authentication
            'allowAutoLogin'=>true,
        ),
        // uncomment the following to enable URLs in path-format
        /*
        'urlManager'=>array(
            'urlFormat'=>'path',
            'rules'=>array(
                '<controller:\w+>/<id:\d+>'=>'<controller>/view',
                '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
                '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
            ),
        ),
        */
        'db'=>array(
            'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',
        ),
        // uncomment the following to use a MySQL database
        /*
        'db'=>array(
            'connectionString' => 'mysql:host=localhost;dbname=testdrive',
            'emulatePrepare' => true,
            'username' => 'root',
            'password' => '',
            'charset' => 'utf8',
        ),
        */
        'errorHandler'=>array(
            // use 'site/error' action to display errors
            'errorAction'=>'site/error',
        ),
        'log'=>array(
            'class'=>'CLogRouter',
            'routes'=>array(
                array(
                    'class'=>'CFileLogRoute',
                    'levels'=>'error, warning',
                ),
                // uncomment the following to show log messages on web pages
                /*
                array(
                    'class'=>'CWebLogRoute',
                ),
                */
            ),
        ),
    ),

    // application-level parameters that can be accessed
    // using Yii::app()->params['paramName']
    'params'=>array(
        // this is used in contact page
        'adminEmail'=>'webmaster@example.com',
    ),
    'theme'=>'andia-agency', // requires you to copy the theme under your themes directory
    'modules'=>array(
        'gii'=>array(
            'generatorPaths'=>array(
                'bootstrap.gii',
            ),
        ),
    ),
    'components'=>array(
        'bootstrap'=>array(
            'class'=>'bootstrap.components.Bootstrap',
        ),
    ),
);
4

4 回答 4

2

您的主题文件夹应该与您的protected/views/文件夹具有相同的结构。所以你的主题应该设置如下(当然相对于根目录)。

  • 主题
    • 意见
    • 布局
    • 地点

我有时无法让“主题”配置选项正常工作。通常我在我的控制器中添加以下内容 CController::beforeAction($action);

Yii::app()->setTheme('andia-agency');
于 2013-02-28T21:16:28.993 回答
1

你有没有包括

    <?php Yii::app()->bootstrap->register(); ?>

进入你的<head></head>部分??

这对我有用。:)

于 2013-05-11T15:25:12.780 回答
1

对于 Yii 版本 1.xx ,请按照以下站点和 youtube 获取设置说明:

http://docs.siquo.net/yii-bootstrap/setup.html

https://www.youtube.com/watch?v=jw7hVR7EGHc

1)将主题目录复制到您的主题目录

将主题(引导程序)复制到主题(yii)文件夹的说明[确实如此,但]在翻译中不知何故丢失了。

2) Yii 项目 >> 保护 > 配置 > main.php

// Define a path alias for the Bootstrap extension as it's used internally.
// In this example we assume that you unzipped the extension under protected/extensions.

Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');

return array(
    'theme'=>'bootstrap', // requires you to copy the theme under your themes directory
    'modules'=>array(
        'gii'=>array(
            'generatorPaths'=>array(
                'bootstrap.gii',
            ),
        ),
    ),
    'components'=>array(
        'bootstrap'=>array(
            'class'=>'bootstrap.components.Bootstrap',
        ),
    ),
);
于 2018-11-22T03:13:17.390 回答
0

您的引导主题安装不正确。yii-bootstrap setup中描述了正确的方法。因此,如您所见,您必须在 config/main.php 文件的第一个文件中定义其地址,如下所示:

// Define a path alias for the Bootstrap extension as it's used internally.
// In this example we assume that you unzipped the extension under protected/extensions.
Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');
return array(
'theme'=>'bootstrap', // requires you to copy the theme under your themes directory
'modules'=>array(
    'gii'=>array(
        'generatorPaths'=>array(
            'bootstrap.gii',
        ),
    ),
),
'components'=>array(
    'bootstrap'=>array(
        'class'=>'bootstrap.components.Bootstrap',
    ),
),
);
于 2013-12-21T17:27:05.660 回答