国産baserCMS Made In Japan

baserCMSを使ってみよう!ブログでも使えるbaserCMSを活用しよう。コーポレートサイトに最適。

3.0.10+win+xampp

windowsでversion3.0.10を

 

使おうと思うと、インストールが

 

できない問題が出てきます。

 

その時の簡易的だそうですが、

 

回避方法を書いておきます。

 

 

basercms/lib/Baser/Controller/Component/BcManagerComponent.phpの1102行

$targetPath = WWW_ROOT . 'theme' . DS . $theme;
$sourcePath = BASER_CONFIGS . 'theme' . DS . $theme;
// 以下2行を追加
$targetPath = str_replace("/", DS, $targetPath);
$sourcePath = str_replace("/", DS, $sourcePath);
$Folder->delete($targetPath);

 

basercms\app\webroot/index.phpの58行

 

$p = dirname(dirname(dirname($fileName)));
$p = str_replace("/", DS, $p);
define('ROOT', $p);
// define('ROOT', dirname(dirname(dirname($fileName))));

 

この追記と変更をすると、

 

windowsで使えるようになりました。