0
人誰可以幫我解決這個問題.....之後我在yii2應用更新我的作曲家我得到這個錯誤.. Yii2得到錯誤信息
也是我得到的錯誤訊息話題是:
* @return array the path directory and the URL that the asset is published as.
* @throws InvalidParamException if the asset to be published does not exist.
*/
protected function publishDirectory($src, $options)
{
$dir = $this->hash($src);
$dstDir = $this->basePath . DIRECTORY_SEPARATOR . $dir;
if ($this->linkAssets) {
if (!is_dir($dstDir)) {
symlink($src, $dstDir);
}
} elseif (!empty($options['forceCopy']) || ($this->forceCopy && !isset($options['forceCopy'])) || !is_dir($dstDir)) {
$opts = array_merge(
$options,
[
'dirMode' => $this->dirMode,
'fileMode' => $this->fileMode,
]
);
我的第二個問題後,我跑作曲家診斷...我得到的消息: 檢查composer.json:失敗.. 實際上是什麼這個問題...
什麼路徑設置linkAssets – zack
我使用高級模板... – zack
如果在前端編碼然後 前端/配置/ main.php如果後端則後端/配置/主.php – RK12