Duda extensions Yiistrap

Hola,

Este es mi primer post y son mis primero pasos en Yii. He querido instalar primero la primera versión de Yii, la versión 1.1. La instalación ha ido bien pero tengo problemas al instalar la extension Yiistrap. Los widgets de Yiistrap me salen pero lo que es el formato pues…me da error.

En la consola del navegador sale el error:

Failed to load resource: the server responded with a status of 404 (Not Found) -> localhost/yiiFirst/assets/66939b9c/js/bootstrap.js

Failed to load resource: the server responded with a status of 404 (Not Found) -> localhost/yiiFirst/assets/66939b9c/css/bootstrap.css

El archivo main.php de la carpeta config, la configuración que tengo es:

<?php

// uncomment the following to define a path alias

// Yii::setPathOfAlias(‘local’,‘path/to/local-folder’);

Yii::setPathOfAlias(‘bootstrap’, dirname(FILE) . ‘/../extensions/bootstrap’);

// This is the main Web application configuration. Any writable

// CWebApplication properties can be configured here.

return array(

'basePath'=&gt;dirname(__FILE__).DIRECTORY_SEPARATOR.'..',


'name'=&gt;'My First Application',





// preloading 'log' component


'preload'=&gt;array('log'),





// autoloading model and component classes


'import'=&gt;array(


	'application.models.*',


	'application.components.*',


	'bootstrap.helpers.TbHtml',


	'bootstrap.components.*',


	'bootstrap.form.*',


    'bootstrap.helpers.*',


    'bootstrap.widgets.*',


),





// path aliases


'aliases' =&gt; array(


    'bootstrap' =&gt; realpath(__DIR__ . '/&#46;&#46;/extensions/bootstrap'), // change this if necessary


    'vendor.twbs.bootstrap.dist' =&gt; realpath(__DIR__ . '/&#46;&#46;/extensions/bootstrap'),


),





'modules'=&gt;array(


	// uncomment the following to enable the Gii tool


	


	'gii'=&gt;array(


		'class'=&gt;'system.gii.GiiModule',


		'password'=&gt;'Enter Your Password Here',


		// If removed, Gii defaults to localhost only. Edit carefully to taste.


		'ipFilters'=&gt;array('127.0.0.1','::1'),


		'generatorPaths' =&gt; array('bootstrap.gii'),


	),


	


),





// application components


'components'=&gt;array(





	'user'=&gt;array(


		// enable cookie-based authentication


		'allowAutoLogin'=&gt;true,


	),





	'bootstrap' =&gt; array(


        'class' =&gt; 'bootstrap.components.TbApi',   


    ),





	// uncomment the following to enable URLs in path-format


	


	'urlManager'=&gt;array(


		'urlFormat'=&gt;'path',


		'rules'=&gt;array(


			'&lt;controller:&#092;w+&gt;/&lt;id:&#092;d+&gt;'=&gt;'&lt;controller&gt;/view',


			'&lt;controller:&#092;w+&gt;/&lt;action:&#092;w+&gt;/&lt;id:&#092;d+&gt;'=&gt;'&lt;controller&gt;/&lt;action&gt;',


			'&lt;controller:&#092;w+&gt;/&lt;action:&#092;w+&gt;'=&gt;'&lt;controller&gt;/&lt;action&gt;',


		),


	),


	





	// database settings are configured in database.php


	'db'=&gt;require(dirname(__FILE__).'/database.php'),





	'errorHandler'=&gt;array(


		// use 'site/error' action to display errors


		'errorAction'=&gt;'site/error',


	),





	'log'=&gt;array(


		'class'=&gt;'CLogRouter',


		'routes'=&gt;array(


			array(


				'class'=&gt;'CFileLogRoute',


				'levels'=&gt;'error, warning',


			),


			// uncomment the following to show log messages on web pages


			/*


			array(


				'class'=&gt;'CWebLogRoute',


			),


			*/


		),


	),





),





// application-level parameters that can be accessed


// using Yii::app()-&gt;params['paramName']


'params'=&gt;array(


	// this is used in contact page


	'adminEmail'=&gt;'webmaster@example.com',


),

);

Y luego en el archivo de main.php de views/layouts tengo insertado la línea:

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

He seguido los mismo pasos de su página web pero no encuentro la forma de solucionarlo.

También me he bajado los archivos de bootstrap y metido en la carpeta assets del proyecto pero aún así nada.

Podriais ayudarme para poder solucionar el error?

Muchas gracias de antemano.