From 5d64a1f0d633eb00f9f2b80d66b7299776287a50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Henrique=20Moretti=20Pellissari?= Date: Tue, 17 Oct 2017 13:14:16 -0200 Subject: [PATCH 1/2] Add .bat and .exe to .gitattributes --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitattributes b/.gitattributes index 926a808..d3b8d1e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -34,3 +34,5 @@ *.mo binary *.pdf binary *.phar binary +*.exe binary +*.bat binary From df8f71821c31d8bcbc7de3799df65e138caecb85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Henrique=20Moretti=20Pellissari?= Date: Tue, 17 Oct 2017 13:16:01 -0200 Subject: [PATCH 2/2] path to css, img and js adjusted with '/webroot' --- config/app.default.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/app.default.php b/config/app.default.php index 2f2245b..f7d3536 100644 --- a/config/app.default.php +++ b/config/app.default.php @@ -45,9 +45,9 @@ return [ 'wwwRoot' => WWW_ROOT, // 'baseUrl' => env('SCRIPT_NAME'), 'fullBaseUrl' => false, - 'imageBaseUrl' => 'img/', - 'cssBaseUrl' => 'css/', - 'jsBaseUrl' => 'js/', + 'imageBaseUrl' => '/webroot/img/', + 'cssBaseUrl' => '/webroot/css/', + 'jsBaseUrl' => '/webroot/js/', 'paths' => [ 'plugins' => [ROOT . DS . 'plugins' . DS], 'templates' => [APP . 'Template' . DS],