File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -319,10 +319,12 @@ add or remove code in the ```./webserver/extra/httpd-vhosts.conf``` file for cus
319319
320320see [ Redis Cache] ( https://book.cakephp.org/5/en/core-libraries/caching.html#redisengine-options ) options and must add below code to config file.
321321
322+ modify redis cache configuration values in the ``` ./cakephp/config/app_local.php ``` file.
323+
322324```
323325 /**
324- * Configure the cache adapters.
325- */
326+ * Configure the cache adapters.
327+ */
326328 'Cache' => [
327329 'default' => [
328330 'className' => 'Redis',
@@ -333,9 +335,9 @@ see [Redis Cache](https://book.cakephp.org/5/en/core-libraries/caching.html#redi
333335 ],
334336
335337 /**
336- * Configure the cache used for general framework caching.
337- * Translation cache files are stored with this configuration.
338- */
338+ * Configure the cache used for general framework caching.
339+ * Translation cache files are stored with this configuration.
340+ */
339341 '_cake_core_' => [
340342 'className' => 'Redis',
341343 'prefix' => 'myapp_cake_core_',
@@ -365,11 +367,13 @@ see [Redis Cache](https://book.cakephp.org/5/en/core-libraries/caching.html#redi
365367 ],
366368```
367369
368- modify redis cache configuration values in the ``` ./cakephp/config/app_local.php ``` file.
369-
370370### DebugKit
371371
372- [ https://book.cakephp.org/debugkit/5/en/index.html#configuration ] ( https://book.cakephp.org/debugkit/5/en/index.html#configuration )
372+ [ book.cakephp.org/debugkit/5/en/index.html#configuration] ( https://book.cakephp.org/debugkit/5/en/index.html#configuration )
373+
374+ If debugkit not showing and get error "This request has been blocked; the content must be served over HTTPS"
375+
376+ add code snippet ``` <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> ``` in the ``` ./cakephp/templates/Pages/home.php ``` file.
373377
374378### phpMyAdmin
375379
You can’t perform that action at this time.
0 commit comments