Content / Design / Configuration page empty
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I have installed a theme I bought with Magento CE 2.1.5, but the page under Content / Design / Configuration is completely blank:
I reinstalled everything several times, I tried reindexing, flushing the caches, etc., with no success.
How to fix this?
Thanks
magento-2.1
add a comment |
I have installed a theme I bought with Magento CE 2.1.5, but the page under Content / Design / Configuration is completely blank:
I reinstalled everything several times, I tried reindexing, flushing the caches, etc., with no success.
How to fix this?
Thanks
magento-2.1
add a comment |
I have installed a theme I bought with Magento CE 2.1.5, but the page under Content / Design / Configuration is completely blank:
I reinstalled everything several times, I tried reindexing, flushing the caches, etc., with no success.
How to fix this?
Thanks
magento-2.1
I have installed a theme I bought with Magento CE 2.1.5, but the page under Content / Design / Configuration is completely blank:
I reinstalled everything several times, I tried reindexing, flushing the caches, etc., with no success.
How to fix this?
Thanks
magento-2.1
magento-2.1
edited 35 secs ago
Muhammad Farzam
11
11
asked Mar 28 '17 at 16:31
KawaKawa
106
106
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Check the logs in source/var/log/exception.log or source/var/log/system.log
See if there is any information, a screen shot not help much to find out the error.
Here's the exception.log: gist.github.com/anonymous/73528818012322ea099e998445bfa65e And the system.log: gist.github.com/anonymous/940def7283fdffdbaa5253bddb5be94d Thanks for the help
– Kawa
Mar 29 '17 at 10:58
According to the log, it looks like the magento theme issue. github.com/magento/magento2/blob/develop/app/code/Magento/Email/… Here is the solution for theme problem, edit that vendor file directly to the highlighted code, see if it can solve your problem.
– Tomi
Mar 29 '17 at 22:20
Actually even if I install Magento 2 alone (without the theme I bought) the same problem exists, so it's not related to the theme.
– Kawa
Mar 31 '17 at 19:40
add a comment |
Found the solution myself, on the server configuration page of my admin panel the option "allow_url_fopen" was off. I turned it on, reinstalled everything, and it worked.
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%2f166607%2fcontent-design-configuration-page-empty%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Check the logs in source/var/log/exception.log or source/var/log/system.log
See if there is any information, a screen shot not help much to find out the error.
Here's the exception.log: gist.github.com/anonymous/73528818012322ea099e998445bfa65e And the system.log: gist.github.com/anonymous/940def7283fdffdbaa5253bddb5be94d Thanks for the help
– Kawa
Mar 29 '17 at 10:58
According to the log, it looks like the magento theme issue. github.com/magento/magento2/blob/develop/app/code/Magento/Email/… Here is the solution for theme problem, edit that vendor file directly to the highlighted code, see if it can solve your problem.
– Tomi
Mar 29 '17 at 22:20
Actually even if I install Magento 2 alone (without the theme I bought) the same problem exists, so it's not related to the theme.
– Kawa
Mar 31 '17 at 19:40
add a comment |
Check the logs in source/var/log/exception.log or source/var/log/system.log
See if there is any information, a screen shot not help much to find out the error.
Here's the exception.log: gist.github.com/anonymous/73528818012322ea099e998445bfa65e And the system.log: gist.github.com/anonymous/940def7283fdffdbaa5253bddb5be94d Thanks for the help
– Kawa
Mar 29 '17 at 10:58
According to the log, it looks like the magento theme issue. github.com/magento/magento2/blob/develop/app/code/Magento/Email/… Here is the solution for theme problem, edit that vendor file directly to the highlighted code, see if it can solve your problem.
– Tomi
Mar 29 '17 at 22:20
Actually even if I install Magento 2 alone (without the theme I bought) the same problem exists, so it's not related to the theme.
– Kawa
Mar 31 '17 at 19:40
add a comment |
Check the logs in source/var/log/exception.log or source/var/log/system.log
See if there is any information, a screen shot not help much to find out the error.
Check the logs in source/var/log/exception.log or source/var/log/system.log
See if there is any information, a screen shot not help much to find out the error.
answered Mar 29 '17 at 0:04
TomiTomi
1506
1506
Here's the exception.log: gist.github.com/anonymous/73528818012322ea099e998445bfa65e And the system.log: gist.github.com/anonymous/940def7283fdffdbaa5253bddb5be94d Thanks for the help
– Kawa
Mar 29 '17 at 10:58
According to the log, it looks like the magento theme issue. github.com/magento/magento2/blob/develop/app/code/Magento/Email/… Here is the solution for theme problem, edit that vendor file directly to the highlighted code, see if it can solve your problem.
– Tomi
Mar 29 '17 at 22:20
Actually even if I install Magento 2 alone (without the theme I bought) the same problem exists, so it's not related to the theme.
– Kawa
Mar 31 '17 at 19:40
add a comment |
Here's the exception.log: gist.github.com/anonymous/73528818012322ea099e998445bfa65e And the system.log: gist.github.com/anonymous/940def7283fdffdbaa5253bddb5be94d Thanks for the help
– Kawa
Mar 29 '17 at 10:58
According to the log, it looks like the magento theme issue. github.com/magento/magento2/blob/develop/app/code/Magento/Email/… Here is the solution for theme problem, edit that vendor file directly to the highlighted code, see if it can solve your problem.
– Tomi
Mar 29 '17 at 22:20
Actually even if I install Magento 2 alone (without the theme I bought) the same problem exists, so it's not related to the theme.
– Kawa
Mar 31 '17 at 19:40
Here's the exception.log: gist.github.com/anonymous/73528818012322ea099e998445bfa65e And the system.log: gist.github.com/anonymous/940def7283fdffdbaa5253bddb5be94d Thanks for the help
– Kawa
Mar 29 '17 at 10:58
Here's the exception.log: gist.github.com/anonymous/73528818012322ea099e998445bfa65e And the system.log: gist.github.com/anonymous/940def7283fdffdbaa5253bddb5be94d Thanks for the help
– Kawa
Mar 29 '17 at 10:58
According to the log, it looks like the magento theme issue. github.com/magento/magento2/blob/develop/app/code/Magento/Email/… Here is the solution for theme problem, edit that vendor file directly to the highlighted code, see if it can solve your problem.
– Tomi
Mar 29 '17 at 22:20
According to the log, it looks like the magento theme issue. github.com/magento/magento2/blob/develop/app/code/Magento/Email/… Here is the solution for theme problem, edit that vendor file directly to the highlighted code, see if it can solve your problem.
– Tomi
Mar 29 '17 at 22:20
Actually even if I install Magento 2 alone (without the theme I bought) the same problem exists, so it's not related to the theme.
– Kawa
Mar 31 '17 at 19:40
Actually even if I install Magento 2 alone (without the theme I bought) the same problem exists, so it's not related to the theme.
– Kawa
Mar 31 '17 at 19:40
add a comment |
Found the solution myself, on the server configuration page of my admin panel the option "allow_url_fopen" was off. I turned it on, reinstalled everything, and it worked.
add a comment |
Found the solution myself, on the server configuration page of my admin panel the option "allow_url_fopen" was off. I turned it on, reinstalled everything, and it worked.
add a comment |
Found the solution myself, on the server configuration page of my admin panel the option "allow_url_fopen" was off. I turned it on, reinstalled everything, and it worked.
Found the solution myself, on the server configuration page of my admin panel the option "allow_url_fopen" was off. I turned it on, reinstalled everything, and it worked.
answered Apr 2 '17 at 10:44
KawaKawa
106
106
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%2f166607%2fcontent-design-configuration-page-empty%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