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
319
319
320
320
see [ Redis Cache] ( https://book.cakephp.org/5/en/core-libraries/caching.html#redisengine-options ) options and must add below code to config file.
321
321
322
+ modify redis cache configuration values in the ``` ./cakephp/config/app_local.php ``` file.
323
+
322
324
```
323
325
/**
324
- * Configure the cache adapters.
325
- */
326
+ * Configure the cache adapters.
327
+ */
326
328
'Cache' => [
327
329
'default' => [
328
330
'className' => 'Redis',
@@ -333,9 +335,9 @@ see [Redis Cache](https://book.cakephp.org/5/en/core-libraries/caching.html#redi
333
335
],
334
336
335
337
/**
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
+ */
339
341
'_cake_core_' => [
340
342
'className' => 'Redis',
341
343
'prefix' => 'myapp_cake_core_',
@@ -365,11 +367,13 @@ see [Redis Cache](https://book.cakephp.org/5/en/core-libraries/caching.html#redi
365
367
],
366
368
```
367
369
368
- modify redis cache configuration values in the ``` ./cakephp/config/app_local.php ``` file.
369
-
370
370
### DebugKit
371
371
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.
373
377
374
378
### phpMyAdmin
375
379
You can’t perform that action at this time.
0 commit comments