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
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
The message `We found conflicting component dependencies` displays if Composer cannot determine which components to install or update. To resolve component dependency issues, you should be a technical person who thoroughly understands how Composer works.
14
14
15
15
Following is a sample failure message:
16
16
17
-
We found conflicting component dependencies.
18
-
19
-
You are trying to update package(s) magento/module-sample-data to 1.0.0-beta
20
-
We've detected conflicts with the following packages:
21
-
- magento/sample-data version 0.74.0-beta15. Please try to update it to one of the following package versions: 0.74.0-beta16, 0.74.0-beta14, 0.74.0-beta13, 0.74.0-beta12, 0.74.0-beta11, 0.74.0-beta10, 0.74.0-beta9, 0.74.0-beta8, 0.74.0-beta7
17
+
```terminal
18
+
We found conflicting component dependencies.
19
+
You are trying to update package(s) magento/module-sample-data to 1.0.0-beta
20
+
We've detected conflicts with the following packages:
21
+
- magento/sample-data version 0.74.0-beta15. Please try to update it to one of the following package versions: 0.74.0-beta16, 0.74.0-beta14, 0.74.0-beta13, 0.74.0-beta12, 0.74.0-beta11, 0.74.0-beta10, 0.74.0-beta9, 0.74.0-beta8, 0.74.0-beta7
22
+
```
22
23
23
24
{:.bs-callout .bs-callout-info}
24
25
The message you see will likely be different.
@@ -33,13 +34,15 @@ Edit `composer.json` to make any of these changes and try the readiness check ag
33
34
34
35
If the Magento file system owner doesn't have permissions to write to directories on the Magento file system, a message similar to the following displays:
packagist.org/provider-doctrine$instantiator.json): failed to open stream: Permission denied
40
+
```
38
41
39
42
Make sure you set file system permissions as discussed in [Overview of ownership and permissions]({{ page.baseurl }}/install-gde/prereq/file-sys-perms-over.html).
40
43
41
44
### The Component Dependency Check status never changes {#trouble-depend-state}
42
45
43
-
In some cases, the status of the Component Dependency Check doesn't change, even after you try to correct issues. In that case, you can either delete or rename files named `<your Magento install dir>/var/.update_cronjob_status` and `<your Magento install dir>/var/.setup_cronjob_status` and try running the Component Manager again.
46
+
In some cases, the status of the Component Dependency Check doesn't change, even after you try to correct issues. In that case, you can either delete or rename files named `<magento_root>/var/.update_cronjob_status` and `<magento_root>/var/.setup_cronjob_status` and try running the Component Manager again.
44
47
45
48
Renaming or removing these files forces the Component Manager to run the checks again.
Copy file name to clipboardExpand all lines: _includes/config/locate-session.md
+16-12Lines changed: 16 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,24 +2,28 @@
2
2
3
3
This topic discusses how to locate where your session files are stored. The Magento application uses the following logic to store session files:
4
4
5
-
*If you configured memcached, sessions are stored in RAM; for more information, see [Use memcached for session storage]({{ page.baseurl }}/config-guide/memcache/memcache.html).
6
-
*If you configured Redis, sessions are stored on the Redis server; for more information, see [Use Redis for page caching or session storage]({{ page.baseurl }}/config-guide/redis/config-redis.html).
7
-
*If you're using the default file-based session storage, we store sessions in the following locations in the order shown:
5
+
*If you configured memcached, sessions are stored in RAM; for more information, see [Use memcached for session storage]({{ page.baseurl }}/config-guide/memcache/memcache.html).
6
+
*If you configured Redis, sessions are stored on the Redis server; for more information, see [Use Redis for page caching or session storage]({{ page.baseurl }}/config-guide/redis/config-redis.html).
7
+
*If you're using the default file-based session storage, we store sessions in the following locations in the order shown:
8
8
9
-
1. Directory defined in [`env.php`](#session-where-env)
10
-
2. Directory defined in [`php.ini`](#session-where-phpini)
To further restrict permissions after installing the Magento software, you [configure a Magento umask]({{ page.baseurl }}/install-gde/install/post-install-umask.html).
34
49
35
-
36
50
*[contributing developer]: A developer who contributes code to the Magento 2 CE codebase
To further restrict permissions after installing the Magento software, you [configure a Magento umask]({{ page.baseurl }}/install-gde/install/post-install-umask.html).
35
50
36
-
37
51
*[contributing developer]: A developer who contributes code to the Magento 2 CE codebase
0 commit comments