Skip to content

Commit 219ee6c

Browse files
author
Rob Myers
committed
Build fixes - add needed permissions to apache config, make sure cc.engine is built, fix maria db character encoding.
1 parent e3a7207 commit 219ee6c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

config/apache.conf

+5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
# (e.g. www.${host}, etc).
3333
UseCanonicalName On
3434

35+
<Directory "${dir}/docroot">
36+
Require all granted
37+
</Directory>
38+
3539
<Location /licenses>
3640
DirectoryIndex deed
3741
DefaultType text/html
@@ -41,6 +45,7 @@
4145
<Location /ccengine-fcgi>
4246
DefaultType text/html
4347
AddDefaultCharset utf-8
48+
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
4449
</Location>
4550

4651
<Location /cc.engine-cache>

docroot/wp-config-local.php.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ define('DB_NAME', '@dbname@');
77
define('DB_USER', '@dbuser@');
88
define('DB_PASSWORD', '@dbpass@');
99
define('DB_HOST', 'localhost');
10-
define('DB_CHARSET', 'iso-8859-1');
10+
//define('DB_CHARSET', 'iso-8859-1');
1111
define('DB_COLLATE', '');
1212

1313
define('AUTH_KEY', 'replace with random, secret phrases / strings');
@@ -27,4 +27,4 @@ if (WP_DEBUG) {
2727
define('WP_DEBUG_LOG', true);
2828
define('WP_DEBUG_DISPLAY', false);
2929
define('SCRIPT_DEBUG', true);
30-
}
30+
}

scripts/bootstrap_checkout.sh

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ do
6666
fi
6767
done
6868

69+
REPOS+=(cc.engine)
6970
for i in "${REPOS[@]}"
7071
do
7172
pushd "${i}"

0 commit comments

Comments
 (0)