YIIプロジェクトをサーバーで実行すると、このエラーが発生します。CAssetManager.basePath "/ assets"が無効です。ディレクトリが存在し、Webサーバープロセスによって書き込み可能であることを確認してください。
CException
CAssetManager.basePath "/var/www/html/v2/assets" is invalid. Please make sure the directory exists and is writable by the Web server process.
/var/www/html/v2/yii/framework/web/CAssetManager.php(116)
104 }
105
106 /**
107 * Sets the root directory storing published asset files.
108 * @param string $value the root directory storing published asset files
109 * @throws CException if the base path is invalid
110 */
111 public function setBasePath($value)
112 {
113 if(($basePath=realpath($value))!==false && is_dir($basePath) && is_writable($basePath))
114 $this->_basePath=$basePath;
115 else
116 throw new CException(Yii::t('yii','CAssetManager.basePath "{path}" is invalid. Please make sure the directory exists and is writable by the Web server process.',
117 array('{path}'=>$value)));
118 }
119
120 /**
121 * @return string the base url that the published asset files can be accessed.
122 * Note, the ending slashes are stripped off. Defaults to '/AppBaseUrl/assets'.
123 */
124 public function getBaseUrl()
125 {
126 if($this->_baseUrl===null)
127 {
128 $request=Yii::app()->getRequest();
解決方法を教えてください。解決方法を教えてください。
これは
assets
protected <-- Yii app
js
css
yii
'/ var/www/html/v2/assets'が存在する場合、 – Ezze
あなたは今何をすべきですか? – unknownbits
ディレクトリが存在する場合、あなたは書き込みを許可する必要があります – Ezze