CException – Updated Plugin, now site is dead!
-
I updated my plugin tonight on my site tonight and now the site is dead!
I am getting the below error:
CException Application runtime path "/hsphere/local/home/emlyvillage/emly.ie/wp-content/plugins/ose-firewall/protected/runtime" is not valid. Please make sure it is a directory writable by the Web server process. /hsphere/local/home/emlyvillage/emly.ie/wp-content/plugins/ose-firewall/framework/base/CApplication.php(278) 266 return $this->_runtimePath; 267 } 268 } 269 270 /** 271 * Sets the directory that stores runtime files. 272 * @param string $path the directory that stores runtime files. 273 * @throws CException if the directory does not exist or is not writable 274 */ 275 public function setRuntimePath($path) 276 { 277 if(($runtimePath=realpath($path))===false || !is_dir($runtimePath) || !is_writable($runtimePath)) 278 throw new CException(Yii::t('yii','Application runtime path "{path}" is not valid. Please make sure it is a directory writable by the Web server process.', 279 array('{path}'=>$path))); 280 $this->_runtimePath=$runtimePath; 281 } 282 283 /** 284 * Returns the root directory that holds all third-party extensions. 285 * @return string the directory that contains all extensions. Defaults to the 'extensions' directory under 'protected'. 286 */ 287 public function getExtensionPath() 288 { 289 return Yii::getPathOfAlias('ext'); 290 }
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘CException – Updated Plugin, now site is dead!’ is closed to new replies.