Admin page redirect to DashboardMagento 2.2.1 Show Msrp and Actual price on Category list page?Magento 2 theme HELPPermissions on webserverProduct saving problem in admin control panelAdd custom block in Magento 2 admin dashboardHow to add best sellers block in home page in magento 2.0?Magento 2.2.1: Admin Access Deniedwhy my admin dashboard looks like thisAdd “use default value” checkbox field for custom customer attribute property programmatically in adminSome CSS not working in frontend
Is an acid a salt or not?
Does the Dispel Magic spell work on the Mirror Image spell?
Why does the autopilot disengage even when it does not receive pilot input?
What do the horizontal lines in a P-V phase diagram mean?
How to disable wifi in Raspberry Pi 4
Referring to different instances of the same character in time travel
How do you create draggable points inside a graphic image?
Can fluent English speakers distinguish “steel”, “still” and “steal”?
Why didn't Thanos kill all the Dwarves on Nidavellir?
Machine learning and operations research projects
During copyediting, journal disagrees about spelling of paper's main topic
What is the best way to stacked subscripts for a matrix?
How did the hit man miss?
Why were Er and Onan punished if they were under 20?
Why do people keep referring to Leia as Princess Leia, even after the destruction of Alderaan?
Was the Ford Model T black because of the speed black paint dries?
Is Arc Length always irrational between two rational points?
In Parshas Chukas, why is first mention of Parah Adumah "פָרָה" instead of "פָּרָה"?
How to know whether a Tamron lens is compatible with Canon EOS 60D?
Supporting developers who insist on using their pet language
When did the Roman Empire fall according to contemporaries?
How can an advanced civilization forget how to manufacture its technology?
Parse source code of the RAPID robot-automation language
Book where the stars go black due to aliens stopping human observation collapsing quantum possibilities
Admin page redirect to Dashboard
Magento 2.2.1 Show Msrp and Actual price on Category list page?Magento 2 theme HELPPermissions on webserverProduct saving problem in admin control panelAdd custom block in Magento 2 admin dashboardHow to add best sellers block in home page in magento 2.0?Magento 2.2.1: Admin Access Deniedwhy my admin dashboard looks like thisAdd “use default value” checkbox field for custom customer attribute property programmatically in adminSome CSS not working in frontend
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
When I go to Store settings, among other pages it always redirect to dashboard. no errors browser, no errors in log files, so I dont know how to even get hints. any suggestion on how I can debug this please?
magento-2.2.1
add a comment |
When I go to Store settings, among other pages it always redirect to dashboard. no errors browser, no errors in log files, so I dont know how to even get hints. any suggestion on how I can debug this please?
magento-2.2.1
add a comment |
When I go to Store settings, among other pages it always redirect to dashboard. no errors browser, no errors in log files, so I dont know how to even get hints. any suggestion on how I can debug this please?
magento-2.2.1
When I go to Store settings, among other pages it always redirect to dashboard. no errors browser, no errors in log files, so I dont know how to even get hints. any suggestion on how I can debug this please?
magento-2.2.1
magento-2.2.1
asked Jul 3 at 22:35
jacr1614jacr1614
1329 bronze badges
1329 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I always start by looking at browser xhr requests with magento errors enabled.
app/bootstrap.php
Uncomment
#ini_set('display_errors', 1);
In chrome for example
Chrome currently has a solution built in.
Use CTRL+SHIFT+I (or navigate to Current Page Control > Developer > Developer Tools. In the newer versions of Chrome, click the Wrench icon > Tools > Developer Tools.) to enable the Developer Tools.
From within the developer tools click on the Network button. If it isn't already, enable it for the session or always.
Click the "XHR" sub-button.
Initiate a button click on store settings.
You will see items begin to show up in the left column under "Resources".
Click the resource and there are 2 tabs showing the headers and return content.
Look for anything that returns a 500 code or anything a bit different. You may need to toggle persist logs. Clear and the try again.
Check console if you haven't already for missing assets
add a 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%2f280701%2fadmin-page-redirect-to-dashboard%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
I always start by looking at browser xhr requests with magento errors enabled.
app/bootstrap.php
Uncomment
#ini_set('display_errors', 1);
In chrome for example
Chrome currently has a solution built in.
Use CTRL+SHIFT+I (or navigate to Current Page Control > Developer > Developer Tools. In the newer versions of Chrome, click the Wrench icon > Tools > Developer Tools.) to enable the Developer Tools.
From within the developer tools click on the Network button. If it isn't already, enable it for the session or always.
Click the "XHR" sub-button.
Initiate a button click on store settings.
You will see items begin to show up in the left column under "Resources".
Click the resource and there are 2 tabs showing the headers and return content.
Look for anything that returns a 500 code or anything a bit different. You may need to toggle persist logs. Clear and the try again.
Check console if you haven't already for missing assets
add a comment |
I always start by looking at browser xhr requests with magento errors enabled.
app/bootstrap.php
Uncomment
#ini_set('display_errors', 1);
In chrome for example
Chrome currently has a solution built in.
Use CTRL+SHIFT+I (or navigate to Current Page Control > Developer > Developer Tools. In the newer versions of Chrome, click the Wrench icon > Tools > Developer Tools.) to enable the Developer Tools.
From within the developer tools click on the Network button. If it isn't already, enable it for the session or always.
Click the "XHR" sub-button.
Initiate a button click on store settings.
You will see items begin to show up in the left column under "Resources".
Click the resource and there are 2 tabs showing the headers and return content.
Look for anything that returns a 500 code or anything a bit different. You may need to toggle persist logs. Clear and the try again.
Check console if you haven't already for missing assets
add a comment |
I always start by looking at browser xhr requests with magento errors enabled.
app/bootstrap.php
Uncomment
#ini_set('display_errors', 1);
In chrome for example
Chrome currently has a solution built in.
Use CTRL+SHIFT+I (or navigate to Current Page Control > Developer > Developer Tools. In the newer versions of Chrome, click the Wrench icon > Tools > Developer Tools.) to enable the Developer Tools.
From within the developer tools click on the Network button. If it isn't already, enable it for the session or always.
Click the "XHR" sub-button.
Initiate a button click on store settings.
You will see items begin to show up in the left column under "Resources".
Click the resource and there are 2 tabs showing the headers and return content.
Look for anything that returns a 500 code or anything a bit different. You may need to toggle persist logs. Clear and the try again.
Check console if you haven't already for missing assets
I always start by looking at browser xhr requests with magento errors enabled.
app/bootstrap.php
Uncomment
#ini_set('display_errors', 1);
In chrome for example
Chrome currently has a solution built in.
Use CTRL+SHIFT+I (or navigate to Current Page Control > Developer > Developer Tools. In the newer versions of Chrome, click the Wrench icon > Tools > Developer Tools.) to enable the Developer Tools.
From within the developer tools click on the Network button. If it isn't already, enable it for the session or always.
Click the "XHR" sub-button.
Initiate a button click on store settings.
You will see items begin to show up in the left column under "Resources".
Click the resource and there are 2 tabs showing the headers and return content.
Look for anything that returns a 500 code or anything a bit different. You may need to toggle persist logs. Clear and the try again.
Check console if you haven't already for missing assets
answered Jul 3 at 23:11
Dominic XigenDominic Xigen
2,7351 gold badge4 silver badges15 bronze badges
2,7351 gold badge4 silver badges15 bronze badges
add a comment |
add a 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.
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%2f280701%2fadmin-page-redirect-to-dashboard%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