Magento 2.3.0 - User roles and Permissions - module/extension installation issue
I'm running magento 2.3.0 on php 7.1
I have two users each with a different user role/permissions created
Users | User Role | Role Resources (resource access)
----------|--------------|-------------------------------
Admin |Administrator | All
dev |Dev | Custom (everything except permissions)
Issue 1
When a module was installed using the dev user and on logging in with the admin user the admin panel is completely messed up. Clearing cache did not help.
Issue 2
When logged in as the dev user the theme settings don't show up as they do when logged in as the admin user. As the below images show
View from dev user login
(missing theme "wokiee" on left menu panel and within stores >> configuration)
View from admin user login
(shows theme "wokiee" on left menu panel and stores >> configuration)
permissions magento2.3 user-roles magento2.3.0
add a comment |
I'm running magento 2.3.0 on php 7.1
I have two users each with a different user role/permissions created
Users | User Role | Role Resources (resource access)
----------|--------------|-------------------------------
Admin |Administrator | All
dev |Dev | Custom (everything except permissions)
Issue 1
When a module was installed using the dev user and on logging in with the admin user the admin panel is completely messed up. Clearing cache did not help.
Issue 2
When logged in as the dev user the theme settings don't show up as they do when logged in as the admin user. As the below images show
View from dev user login
(missing theme "wokiee" on left menu panel and within stores >> configuration)
View from admin user login
(shows theme "wokiee" on left menu panel and stores >> configuration)
permissions magento2.3 user-roles magento2.3.0
add a comment |
I'm running magento 2.3.0 on php 7.1
I have two users each with a different user role/permissions created
Users | User Role | Role Resources (resource access)
----------|--------------|-------------------------------
Admin |Administrator | All
dev |Dev | Custom (everything except permissions)
Issue 1
When a module was installed using the dev user and on logging in with the admin user the admin panel is completely messed up. Clearing cache did not help.
Issue 2
When logged in as the dev user the theme settings don't show up as they do when logged in as the admin user. As the below images show
View from dev user login
(missing theme "wokiee" on left menu panel and within stores >> configuration)
View from admin user login
(shows theme "wokiee" on left menu panel and stores >> configuration)
permissions magento2.3 user-roles magento2.3.0
I'm running magento 2.3.0 on php 7.1
I have two users each with a different user role/permissions created
Users | User Role | Role Resources (resource access)
----------|--------------|-------------------------------
Admin |Administrator | All
dev |Dev | Custom (everything except permissions)
Issue 1
When a module was installed using the dev user and on logging in with the admin user the admin panel is completely messed up. Clearing cache did not help.
Issue 2
When logged in as the dev user the theme settings don't show up as they do when logged in as the admin user. As the below images show
View from dev user login
(missing theme "wokiee" on left menu panel and within stores >> configuration)
View from admin user login
(shows theme "wokiee" on left menu panel and stores >> configuration)
permissions magento2.3 user-roles magento2.3.0
permissions magento2.3 user-roles magento2.3.0
asked yesterday
user2240778
208311
208311
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
From the first issue, please make sure that you have deployed the static content using
static-content:deploy
after the installation of the new module.
On the second issue, make sure that
resource access
for WOKIEE ischecked
in theRole Resources
of the user role Dev.
thank you, in the 1st issue, who runs that the static-content:deploy command? the dev user or the admin user, it's being installed by the dev user. In the 2nd issue is theme related, they haven't made it visible in role resources, so have taken that up with them.
– user2240778
yesterday
static content deployment can be implemented through a command line interface usingphp bin/magento setup:static-content:deploy -f
(-f is used to force the deployment)
– magefms
yesterday
Does it matter which user runs the command? In the scenario I outlined a user (dev) other than the admin (admin) installed the module which I assume is the cause of the issue.
– user2240778
yesterday
No, it doesn't matter. How did you install the module ? is it from the cli or from the admin panel?
– magefms
yesterday
File upload and then cli
– user2240778
yesterday
|
show 1 more comment
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f256846%2fmagento-2-3-0-user-roles-and-permissions-module-extension-installation-issue%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
From the first issue, please make sure that you have deployed the static content using
static-content:deploy
after the installation of the new module.
On the second issue, make sure that
resource access
for WOKIEE ischecked
in theRole Resources
of the user role Dev.
thank you, in the 1st issue, who runs that the static-content:deploy command? the dev user or the admin user, it's being installed by the dev user. In the 2nd issue is theme related, they haven't made it visible in role resources, so have taken that up with them.
– user2240778
yesterday
static content deployment can be implemented through a command line interface usingphp bin/magento setup:static-content:deploy -f
(-f is used to force the deployment)
– magefms
yesterday
Does it matter which user runs the command? In the scenario I outlined a user (dev) other than the admin (admin) installed the module which I assume is the cause of the issue.
– user2240778
yesterday
No, it doesn't matter. How did you install the module ? is it from the cli or from the admin panel?
– magefms
yesterday
File upload and then cli
– user2240778
yesterday
|
show 1 more comment
From the first issue, please make sure that you have deployed the static content using
static-content:deploy
after the installation of the new module.
On the second issue, make sure that
resource access
for WOKIEE ischecked
in theRole Resources
of the user role Dev.
thank you, in the 1st issue, who runs that the static-content:deploy command? the dev user or the admin user, it's being installed by the dev user. In the 2nd issue is theme related, they haven't made it visible in role resources, so have taken that up with them.
– user2240778
yesterday
static content deployment can be implemented through a command line interface usingphp bin/magento setup:static-content:deploy -f
(-f is used to force the deployment)
– magefms
yesterday
Does it matter which user runs the command? In the scenario I outlined a user (dev) other than the admin (admin) installed the module which I assume is the cause of the issue.
– user2240778
yesterday
No, it doesn't matter. How did you install the module ? is it from the cli or from the admin panel?
– magefms
yesterday
File upload and then cli
– user2240778
yesterday
|
show 1 more comment
From the first issue, please make sure that you have deployed the static content using
static-content:deploy
after the installation of the new module.
On the second issue, make sure that
resource access
for WOKIEE ischecked
in theRole Resources
of the user role Dev.
From the first issue, please make sure that you have deployed the static content using
static-content:deploy
after the installation of the new module.
On the second issue, make sure that
resource access
for WOKIEE ischecked
in theRole Resources
of the user role Dev.
answered yesterday
magefms
1358
1358
thank you, in the 1st issue, who runs that the static-content:deploy command? the dev user or the admin user, it's being installed by the dev user. In the 2nd issue is theme related, they haven't made it visible in role resources, so have taken that up with them.
– user2240778
yesterday
static content deployment can be implemented through a command line interface usingphp bin/magento setup:static-content:deploy -f
(-f is used to force the deployment)
– magefms
yesterday
Does it matter which user runs the command? In the scenario I outlined a user (dev) other than the admin (admin) installed the module which I assume is the cause of the issue.
– user2240778
yesterday
No, it doesn't matter. How did you install the module ? is it from the cli or from the admin panel?
– magefms
yesterday
File upload and then cli
– user2240778
yesterday
|
show 1 more comment
thank you, in the 1st issue, who runs that the static-content:deploy command? the dev user or the admin user, it's being installed by the dev user. In the 2nd issue is theme related, they haven't made it visible in role resources, so have taken that up with them.
– user2240778
yesterday
static content deployment can be implemented through a command line interface usingphp bin/magento setup:static-content:deploy -f
(-f is used to force the deployment)
– magefms
yesterday
Does it matter which user runs the command? In the scenario I outlined a user (dev) other than the admin (admin) installed the module which I assume is the cause of the issue.
– user2240778
yesterday
No, it doesn't matter. How did you install the module ? is it from the cli or from the admin panel?
– magefms
yesterday
File upload and then cli
– user2240778
yesterday
thank you, in the 1st issue, who runs that the static-content:deploy command? the dev user or the admin user, it's being installed by the dev user. In the 2nd issue is theme related, they haven't made it visible in role resources, so have taken that up with them.
– user2240778
yesterday
thank you, in the 1st issue, who runs that the static-content:deploy command? the dev user or the admin user, it's being installed by the dev user. In the 2nd issue is theme related, they haven't made it visible in role resources, so have taken that up with them.
– user2240778
yesterday
static content deployment can be implemented through a command line interface using
php bin/magento setup:static-content:deploy -f
(-f is used to force the deployment)– magefms
yesterday
static content deployment can be implemented through a command line interface using
php bin/magento setup:static-content:deploy -f
(-f is used to force the deployment)– magefms
yesterday
Does it matter which user runs the command? In the scenario I outlined a user (dev) other than the admin (admin) installed the module which I assume is the cause of the issue.
– user2240778
yesterday
Does it matter which user runs the command? In the scenario I outlined a user (dev) other than the admin (admin) installed the module which I assume is the cause of the issue.
– user2240778
yesterday
No, it doesn't matter. How did you install the module ? is it from the cli or from the admin panel?
– magefms
yesterday
No, it doesn't matter. How did you install the module ? is it from the cli or from the admin panel?
– magefms
yesterday
File upload and then cli
– user2240778
yesterday
File upload and then cli
– user2240778
yesterday
|
show 1 more comment
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f256846%2fmagento-2-3-0-user-roles-and-permissions-module-extension-installation-issue%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown