Theme directory "/acancs0web/www/w_coding/themes" does not exist.
/acancs0web/www/pkg/yii/framework/base/CModule.php(105)
093 /** 094 * Getter magic method. 095 * This method is overridden to support accessing application components 096 * like reading module properties. 097 * @param string $name application component or property name 098 * @return mixed the named property value 099 */ 100 public function __get($name) 101 { 102 if($this->hasComponent($name)) 103 return $this->getComponent($name); 104 else 105 return parent::__get($name); 106 } 107 108 /** 109 * Checks if a property value is null. 110 * This method overrides the parent implementation by checking 111 * if the named application component is loaded. 112 * @param string $name the property name or the event name 113 * @return boolean whether the property value is null 114 */ 115 public function __isset($name) 116 { 117 if($this->hasComponent($name))
#0 |
+
–
/acancs0web/www/pkg/yii/framework/web/CThemeManager.php(98): CThemeManager->setBasePath("/acancs0web/www/w_coding/themes") 093 * @return string the base path for all themes. Defaults to "WebRootPath/themes". 094 */ 095 public function getBasePath() 096 { 097 if($this->_basePath===null) 098 $this->setBasePath(dirname(Yii::app()->getRequest()->getScriptFile()).DIRECTORY_SEPARATOR.self::DEFAULT_BASEPATH); 099 return $this->_basePath; 100 } 101 102 /** 103 * @param string $value the base path for all themes. |
#1 |
+
–
/acancs0web/www/pkg/yii/framework/web/CThemeManager.php(60): CThemeManager->getBasePath() 55 * @param string $name name of the theme to be retrieved 56 * @return CTheme the theme retrieved. Null if the theme does not exist. 57 */ 58 public function getTheme($name) 59 { 60 $themePath=$this->getBasePath().DIRECTORY_SEPARATOR.$name; 61 if(is_dir($themePath)) 62 { 63 $class=Yii::import($this->themeClass, true); 64 return new $class($name,$themePath,$this->getBaseUrl().'/'.$name); 65 } |
#2 |
+
–
/acancs0web/www/pkg/yii/framework/web/CWebApplication.php(257): CThemeManager->getTheme("abound") 252 * @return CTheme the theme used currently. Null if no theme is being used. 253 */ 254 public function getTheme() 255 { 256 if(is_string($this->_theme)) 257 $this->_theme=$this->getThemeManager()->getTheme($this->_theme); 258 return $this->_theme; 259 } 260 261 /** 262 * @param string $value the theme name |
#3 |
+
–
/acancs0web/www/pkg/yii/framework/base/CComponent.php(111): CWebApplication->getTheme() 106 */ 107 public function __get($name) 108 { 109 $getter='get'.$name; 110 if(method_exists($this,$getter)) 111 return $this->$getter(); 112 elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 113 { 114 // duplicating getEventHandlers() here for performance 115 $name=strtolower($name); 116 if(!isset($this->_e[$name])) |
#4 |
+
–
/acancs0web/www/pkg/yii/framework/base/CModule.php(105): CComponent->__get("theme") 100 public function __get($name) 101 { 102 if($this->hasComponent($name)) 103 return $this->getComponent($name); 104 else 105 return parent::__get($name); 106 } 107 108 /** 109 * Checks if a property value is null. 110 * This method overrides the parent implementation by checking |
#5 |
+
–
/acancs0web/www/w_coding/wp-content/themes/exambank/index.php(131): CModule->__get("theme") 126 <ul> 127 <li><div class="modal-txt ">프로그램 구동을 위해 <span class="blue">.Net Framework 4.5</span>가 필요합니다.</div></li> 128 <li><div class="modal-txt">.Net Framework 4.5가 설치되어 있지 않을 시 아래와 같이 오류가 나타날 수 있습니다.</div></li> 129 <br/> 130 <p class="text-center"> 131 <img src="<?php echo Yii::app()->theme->baseUrl; ?>/img/warning.png" > 132 </p> 133 <li><div class="modal-txt">.Net Framework 4.5를 다운받아 설치하십시오.</div></li> 134 <br/> 135 <p class="text-center"> 136 <a href="http://oapass.com/pub/ketri/2017/coding-class/scratch/common/dotnetfx45_full_x86_x64.exe"><button type="button" class="btn btn-success btn-sm" >.Net Framework 4.5 프로그램 다운로드</button></a> |
#6 |
+
–
/acancs0web/www/w_coding/wp-includes/template-loader.php(74): include("/acancs0web/www/w_coding/wp-content/themes/exambank/index.php") 69 * @since 3.0.0 70 * 71 * @param string $template The path of the template to include. 72 */ 73 if ( $template = apply_filters( 'template_include', $template ) ) 74 include( $template ); 75 return; 76 endif; |
#7 |
+
–
/acancs0web/www/w_coding/wp-blog-header.php(16): require_once("/acancs0web/www/w_coding/wp-includes/template-loader.php") 11 12 require_once( dirname(__FILE__) . '/wp-load.php' ); 13 14 wp(); 15 16 require_once( ABSPATH . WPINC . '/template-loader.php' ); 17 18 } |
#8 |
+
–
/acancs0web/www/w_coding/index.php(18): require("/acancs0web/www/w_coding/wp-blog-header.php") 13 * @var bool 14 */ 15 define('WP_USE_THEMES', true); 16 17 /** Loads the WordPress Environment and Template */ 18 require( dirname( __FILE__ ) . '/wp-blog-header.php' ); |