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
You will be prompted with the below message to choose whether you want to inject ConfigProviders:
49
49
```shell
50
50
Please selectwhich config file you wish to inject 'Laminas\Validator\ConfigProvider' into:
51
51
[0] Do not inject
52
52
[1] config/config.php
53
53
Make your selection (default is 1):
54
54
```
55
55
56
-
Type 0 to select**[0] Do not inject**.
57
-
No other Config Providers need to be injected.
56
+
Type `0` to select**[0] Do not inject** and hit `Enter`.
58
57
59
-
We choose 0 because Dotkernel includes its own ConfigProvider which already contains the prompted configurations.
60
-
If you choose **[1] config/config.php**, an extra ConfigProvider will be injected.
58
+
We choose not to inject any ConfigProvider because Dotkernel Admin comes with all the required ConfigProviders already injected in`config/config.php`.
59
+
Choosing to inject any extra ConfigProvider would cause having duplicates which are not allowed and would crash the application.
61
60
62
61
### Development mode
63
62
@@ -197,12 +196,13 @@ npm run prod
197
196
198
197
### Test the installation
199
198
200
-
If you are using virtual hosts as described in the [Dotkernel documentation] (https://docs.dotkernel.org/development/) you need you modify the permissions of the **data** and **log** folders:
199
+
If you are using virtual hosts as described in the [Dotkernel documentation] (https://docs.dotkernel.org/development/) you need you modify the permissions of the `data`, `public/uploads` and `log` folders:
201
200
202
201
```shell
203
-
chmod 777 data/
204
-
chmod 777 log/
205
-
chmod 777 data/cache/
202
+
chmod -R 777 data
203
+
chmod -R 777 public/uploads
204
+
chmod -R 777 log
205
+
chmod -R 777 data/cache
206
206
```
207
207
208
208
Run the following command in your project's directory to start PHPs built-in server:
0 commit comments