You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- install the application in a virtualhost as recommended by the chosen distro
8
9
- set `$baseUrl` in **config/autoload/local.php** to the address of the virtualhost
9
-
- set the permissions for the data folder
10
+
- set the permissions for the `data` folder
10
11
11
12
```shell
12
-
chmod -R 777 data
13
+
chmod -R 777 ./data
13
14
```
14
15
15
16
- set the permissions for the log folder
16
17
17
18
```shell
18
-
chmod -R 777 log
19
+
chmod -R 777 ./log
19
20
```
20
21
21
22
- run the application by opening the virtualhost address in your browser
@@ -25,7 +26,7 @@ You should see the `Dotkernel Light` welcome page.
25
26
> If you are getting exceptions or errors regarding some missing services, try running the following command:
26
27
27
28
```shell
28
-
sudo php bin/clear-config-cache.php
29
+
sudo php ./bin/clear-config-cache.php
29
30
```
30
31
31
32
> If `data/cache/config-cache.php` is present, that config will be loaded regardless of the `ConfigAggregator::ENABLE_CACHE` configuration in `config/autoload/mezzio.global.php`
0 commit comments