/home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CAssetManager.php(257)
245 { 246 CFileHelper::copyDirectory($src,$dstDir,array( 247 'exclude'=>$this->excludeFiles, 248 'level'=>$level, 249 'newDirMode'=>$this->newDirMode, 250 'newFileMode'=>$this->newFileMode, 251 )); 252 } 253 254 return $this->_published[$path]=$this->getBaseUrl().'/'.$dir; 255 } 256 } 257 throw new CException(Yii::t('yii','The asset "{asset}" to be published does not exist.', 258 array('{asset}'=>$path))); 259 } 260 261 /** 262 * Returns the published path of a file path. 263 * This method does not perform any publishing. It merely tells you 264 * if the file or directory is published, where it will go. 265 * @param string $path directory or file path being published 266 * @param boolean $hashByName whether the published directory should be named as the hashed basename. 267 * If false, the name will be the hash taken from dirname of the path being published and path mtime. 268 * Defaults to false. Set true if the path being published is shared among 269 * different extensions.
#0 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/application/models/AdminTheme.php(354): CAssetManager->publish() 349 */ 350 private function defineConstants() 351 { 352 // Define images url 353 if (!YII_DEBUG || self::$use_asset_manager || Yii::app()->getConfig('use_asset_manager')) { 354 define('LOGO_URL', App()->getAssetManager()->publish($this->path . '/images/logo.svg')); 355 define('LOGO_ICON_URL', App()->getAssetManager()->publish($this->path . '/images/logo_icon.png')); 356 } else { 357 define('LOGO_URL', $this->sTemplateUrl . '/images/logo.svg'); 358 define('LOGO_ICON_URL', $this->sTemplateUrl . '/images/logo_icon.png'); 359 } |
#1 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/application/models/AdminTheme.php(115): AdminTheme->defineConstants() 110 $this->config = json_decode(json_encode((array) simplexml_load_string($sXMLConfigFile), 1)); 111 112 // If developers want to test asset manager with debug mode on 113 self::$use_asset_manager = isset($this->config->engine->use_asset_manager_in_debug_mode) ? ($this->config->engine->use_asset_manager_in_debug_mode == 'true') : false; 114 115 $this->defineConstants(); // Define the (still) necessary constants 116 $this->registerStylesAndScripts(); // Register all CSS and JS 117 118 if (\PHP_VERSION_ID < 80000) { 119 libxml_disable_entity_loader($bOldEntityLoaderState); // Put back entity loader to its original state, to avoid contagion to other applications on the server 120 } |
#2 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/application/models/AdminTheme.php(261): AdminTheme->setAdminTheme() 256 */ 257 public static function getInstance() 258 { 259 if (empty(self::$instance)) { 260 self::$instance = new self(); 261 self::$instance->setAdminTheme(); 262 } 263 return self::$instance; 264 } 265 266 /** |
#3 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/application/controllers/AdminController.php(79): AdminTheme::getInstance() 74 if (!Yii::app()->getConfig("editedaction")) { 75 Yii::app()->setConfig("editedaction", returnGlobal('editedaction')); 76 } // for html editor integration 77 78 // This line is needed for template editor to work 79 $oAdminTheme = AdminTheme::getInstance(); 80 81 Yii::setPathOfAlias('lsadminmodules', Yii::app()->getConfig('lsadminmodulesrootdir')); 82 } 83 84 /** |
#4 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/application/core/LSYii_Controller.php(45): AdminController->customInit() 40 $this->loadHelper('globalsettings'); 41 // tracevar function 42 //$this->loadHelper('common'); 43 $this->loadHelper('expressions.em_manager'); 44 $this->loadHelper('replacements'); 45 $this->customInit(); 46 } 47 48 /** 49 * Check that installation was already done by looking for config.php 50 * Will redirect to the installer script if not exists. |
#5 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CWebApplication.php(359): LSYii_Controller->__construct() 354 require($classFile); 355 if(class_exists($className,false) && is_subclass_of($className,'CController')) 356 { 357 $id[0]=strtolower($id[0]); 358 return array( 359 new $className($controllerID.$id,$owner===$this?null:$owner), 360 $this->parseActionParams($route), 361 ); 362 } 363 return null; 364 } |
#6 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/application/core/LSYii_Application.php(530): CWebApplication->createController() 525 * @inheritdoc 526 * Special handling for SEO friendly URLs 527 */ 528 public function createController($route, $owner=null) 529 { 530 $controller = parent::createController($route, $owner); 531 532 // If no controller is found by standard ways, check if the route matches 533 // an existing survey's alias. 534 if (is_null($controller)) { 535 $controller = $this->createControllerFromShortUrl($route); |
#7 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CWebApplication.php(276): LSYii_Application->createController() 271 * @param string $route the route of the current request. See {@link createController} for more details. 272 * @throws CHttpException if the controller could not be created. 273 */ 274 public function runController($route) 275 { 276 if(($ca=$this->createController($route))!==null) 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); |
#8 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): CWebApplication->runController() 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#9 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/base/CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#10 |
+
–
/home/www/demonstrations/master.sondages.pro/htdocs/index.php(161): CApplication->run() 156 require_once APPPATH . 'core/LSYii_Application' . EXT; 157 158 $config = require_once(APPPATH . 'config/internal' . EXT); 159 160 Yii::$enableIncludePath = false; 161 Yii::createApplication('LSYii_Application', $config)->run(); 162 163 /* End of file index.php */ 164 /* Location: ./index.php */ |
Application Log | ||||
---|---|---|---|---|
Timestamp | Level | Category | Message | |
17:37:41.410687 | trace | system.CModule | Loading "log" application component |
|
17:37:41.410913 | trace | system.CModule | Loading "ETwigViewRenderer" application component |
|
17:37:41.411500 | trace | system.CModule | Loading "request" application component |
|
17:37:41.411698 | trace | system.CModule | Loading "session" application component |
|
17:37:41.416208 | trace | system.CModule | Loading "db" application component |
|
17:37:41.416378 | trace | system.db.CDbConnection | Opening DB connection |
|
17:37:41.417514 | trace | system.CModule | Loading "cache" application component |
|
17:37:41.417741 | trace | system.db.CDbCommand | Querying SQL: SHOW FULL COLUMNS FROM `lime_settings_global` |
|
17:37:41.419456 | trace | system.db.CDbCommand | Querying SQL: SHOW CREATE TABLE `lime_settings_global` |
|
17:37:41.420273 | trace | system.db.ar.CActiveRecord | SettingGlobal.findAll() |
|
17:37:41.420439 | trace | system.db.CDbCommand | Querying SQL: SELECT * FROM `lime_settings_global` `t` |
|
17:37:41.422318 | trace | system.CModule | Loading "assetManager" application component |
|
17:37:41.422445 | trace | system.CModule | Loading "urlManager" application component |
|
17:37:41.423130 | trace | system.CModule | Loading "user" application component |
|
17:37:41.423616 | trace | system.CModule | Loading "coreMessages" application component |
|
17:37:41.423728 | error | exception.CException | CException: The asset "/home/www/demonstrations/master.sondages.pro/htdocs/upload/admintheme/SondagesPro/images/logo.svg" to be published does not exist. in /home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CAssetManager.php:257 Stack trace: #0 /home/www/demonstrations/master.sondages.pro/htdocs/application/models/AdminTheme.php(354): CAssetManager->publish() #1 /home/www/demonstrations/master.sondages.pro/htdocs/application/models/AdminTheme.php(115): AdminTheme->defineConstants() #2 /home/www/demonstrations/master.sondages.pro/htdocs/application/models/AdminTheme.php(261): AdminTheme->setAdminTheme() #3 /home/www/demonstrations/master.sondages.pro/htdocs/application/controllers/AdminController.php(79): AdminTheme::getInstance() #4 /home/www/demonstrations/master.sondages.pro/htdocs/application/core/LSYii_Controller.php(45): AdminController->customInit() #5 /home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CWebApplication.php(359): LSYii_Controller->__construct() #6 /home/www/demonstrations/master.sondages.pro/htdocs/application/core/LSYii_Application.php(530): CWebApplication->createController() #7 /home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CWebApplication.php(276): LSYii_Application->createController() #8 /home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): CWebApplication->runController() #9 /home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/base/CApplication.php(185): CWebApplication->processRequest() #10 /home/www/demonstrations/master.sondages.pro/htdocs/index.php(161): CApplication->run() #11 {main} REQUEST_URI=/admin/ --- |
|
17:37:41.423763 | trace | system.CModule | Loading "errorHandler" application component |
Application Log | ||||
---|---|---|---|---|
Timestamp | Level | Category | Message | |
17:37:41.423728 | error | exception.CException | CException: The asset "/home/www/demonstrations/master.sondages.pro/htdocs/upload/admintheme/SondagesPro/images/logo.svg" to be published does not exist. in /home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CAssetManager.php:257 Stack trace: #0 /home/www/demonstrations/master.sondages.pro/htdocs/application/models/AdminTheme.php(354): CAssetManager->publish() #1 /home/www/demonstrations/master.sondages.pro/htdocs/application/models/AdminTheme.php(115): AdminTheme->defineConstants() #2 /home/www/demonstrations/master.sondages.pro/htdocs/application/models/AdminTheme.php(261): AdminTheme->setAdminTheme() #3 /home/www/demonstrations/master.sondages.pro/htdocs/application/controllers/AdminController.php(79): AdminTheme::getInstance() #4 /home/www/demonstrations/master.sondages.pro/htdocs/application/core/LSYii_Controller.php(45): AdminController->customInit() #5 /home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CWebApplication.php(359): LSYii_Controller->__construct() #6 /home/www/demonstrations/master.sondages.pro/htdocs/application/core/LSYii_Application.php(530): CWebApplication->createController() #7 /home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CWebApplication.php(276): LSYii_Application->createController() #8 /home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): CWebApplication->runController() #9 /home/www/demonstrations/master.sondages.pro/htdocs/vendor/yiisoft/yii/framework/base/CApplication.php(185): CWebApplication->processRequest() #10 /home/www/demonstrations/master.sondages.pro/htdocs/index.php(161): CApplication->run() #11 {main} REQUEST_URI=/admin/ --- |