Magento 1.9xx - Not valid template file
Today I took a look into the system.log from one of our Magento shops and I saw that there is an error:
2019-01-20T09:05:52+00:00 CRIT (2): Not valid template file:frontend/base/default/template/checkout/cart/mini.phtml
Does anyone know where I have to look to change the path where it's looking for? The file doesn't exists on the server so the file that is asking for mini.phtml needs te be located, but how can I know which file is asking for mini.phtml?
Thanks!
More info
I see this in the system.log every time when an order is placed:
2019-01-25T08:51:18+00:00 ERR (3): Notice: iconv(): Wrong charset, conversion from
MacRoman' to
UTF-16BE' is not allowed in /home/website/domains/websitename.nl/public_html/lib/Zend/Pdf/FileParser.php on line 451
magento-1.9 template
add a comment |
Today I took a look into the system.log from one of our Magento shops and I saw that there is an error:
2019-01-20T09:05:52+00:00 CRIT (2): Not valid template file:frontend/base/default/template/checkout/cart/mini.phtml
Does anyone know where I have to look to change the path where it's looking for? The file doesn't exists on the server so the file that is asking for mini.phtml needs te be located, but how can I know which file is asking for mini.phtml?
Thanks!
More info
I see this in the system.log every time when an order is placed:
2019-01-25T08:51:18+00:00 ERR (3): Notice: iconv(): Wrong charset, conversion from
MacRoman' to
UTF-16BE' is not allowed in /home/website/domains/websitename.nl/public_html/lib/Zend/Pdf/FileParser.php on line 451
magento-1.9 template
add a comment |
Today I took a look into the system.log from one of our Magento shops and I saw that there is an error:
2019-01-20T09:05:52+00:00 CRIT (2): Not valid template file:frontend/base/default/template/checkout/cart/mini.phtml
Does anyone know where I have to look to change the path where it's looking for? The file doesn't exists on the server so the file that is asking for mini.phtml needs te be located, but how can I know which file is asking for mini.phtml?
Thanks!
More info
I see this in the system.log every time when an order is placed:
2019-01-25T08:51:18+00:00 ERR (3): Notice: iconv(): Wrong charset, conversion from
MacRoman' to
UTF-16BE' is not allowed in /home/website/domains/websitename.nl/public_html/lib/Zend/Pdf/FileParser.php on line 451
magento-1.9 template
Today I took a look into the system.log from one of our Magento shops and I saw that there is an error:
2019-01-20T09:05:52+00:00 CRIT (2): Not valid template file:frontend/base/default/template/checkout/cart/mini.phtml
Does anyone know where I have to look to change the path where it's looking for? The file doesn't exists on the server so the file that is asking for mini.phtml needs te be located, but how can I know which file is asking for mini.phtml?
Thanks!
More info
I see this in the system.log every time when an order is placed:
2019-01-25T08:51:18+00:00 ERR (3): Notice: iconv(): Wrong charset, conversion from
MacRoman' to
UTF-16BE' is not allowed in /home/website/domains/websitename.nl/public_html/lib/Zend/Pdf/FileParser.php on line 451
magento-1.9 template
magento-1.9 template
edited Jan 25 at 10:13
n00bly
asked Jan 25 at 9:46
n00blyn00bly
142112
142112
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I think you set a wrong template path, Magento Check that file in your current theme
, then default
, then the base
one what is called Magento fallback system.
So check this in the xml files, start with this one:
app/design/frontend/{package}/{current-theme}/layout/local.xml
1
Exactly! That's indeed the correct place, thanks! :)
– n00bly
Jan 25 at 10:24
You're welcome, good luck
– PЯINCƏ
Jan 25 at 10:25
add a comment |
By taking help of your code editor (like sublime text/ netbeans/ PHPStorm etc.), you can search for the file name mini.phtml.
It will help you locate the file from where the file mini.phtml is being called.
Further, for the second problem,
2019-01-25T08:51:18+00:00 ERR (3): Notice: iconv(): Wrong charset,
conversion from MacRoman' toUTF-16BE' is not allowed in
/home/website/domains/websitename.nl/public_html/lib/Zend/Pdf/FileParser.php
on line 451
you can take help from:
- https://www.sonassi.com/blog/knowledge-base/magento-wrong-charset-conversion-from-utf-16be-to-utf-8-is-not-allowed
Thanks! I will take a look at the link
– n00bly
Jan 25 at 10:25
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%2f259229%2fmagento-1-9xx-not-valid-template-file%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
I think you set a wrong template path, Magento Check that file in your current theme
, then default
, then the base
one what is called Magento fallback system.
So check this in the xml files, start with this one:
app/design/frontend/{package}/{current-theme}/layout/local.xml
1
Exactly! That's indeed the correct place, thanks! :)
– n00bly
Jan 25 at 10:24
You're welcome, good luck
– PЯINCƏ
Jan 25 at 10:25
add a comment |
I think you set a wrong template path, Magento Check that file in your current theme
, then default
, then the base
one what is called Magento fallback system.
So check this in the xml files, start with this one:
app/design/frontend/{package}/{current-theme}/layout/local.xml
1
Exactly! That's indeed the correct place, thanks! :)
– n00bly
Jan 25 at 10:24
You're welcome, good luck
– PЯINCƏ
Jan 25 at 10:25
add a comment |
I think you set a wrong template path, Magento Check that file in your current theme
, then default
, then the base
one what is called Magento fallback system.
So check this in the xml files, start with this one:
app/design/frontend/{package}/{current-theme}/layout/local.xml
I think you set a wrong template path, Magento Check that file in your current theme
, then default
, then the base
one what is called Magento fallback system.
So check this in the xml files, start with this one:
app/design/frontend/{package}/{current-theme}/layout/local.xml
answered Jan 25 at 10:21
PЯINCƏPЯINCƏ
8,21831143
8,21831143
1
Exactly! That's indeed the correct place, thanks! :)
– n00bly
Jan 25 at 10:24
You're welcome, good luck
– PЯINCƏ
Jan 25 at 10:25
add a comment |
1
Exactly! That's indeed the correct place, thanks! :)
– n00bly
Jan 25 at 10:24
You're welcome, good luck
– PЯINCƏ
Jan 25 at 10:25
1
1
Exactly! That's indeed the correct place, thanks! :)
– n00bly
Jan 25 at 10:24
Exactly! That's indeed the correct place, thanks! :)
– n00bly
Jan 25 at 10:24
You're welcome, good luck
– PЯINCƏ
Jan 25 at 10:25
You're welcome, good luck
– PЯINCƏ
Jan 25 at 10:25
add a comment |
By taking help of your code editor (like sublime text/ netbeans/ PHPStorm etc.), you can search for the file name mini.phtml.
It will help you locate the file from where the file mini.phtml is being called.
Further, for the second problem,
2019-01-25T08:51:18+00:00 ERR (3): Notice: iconv(): Wrong charset,
conversion from MacRoman' toUTF-16BE' is not allowed in
/home/website/domains/websitename.nl/public_html/lib/Zend/Pdf/FileParser.php
on line 451
you can take help from:
- https://www.sonassi.com/blog/knowledge-base/magento-wrong-charset-conversion-from-utf-16be-to-utf-8-is-not-allowed
Thanks! I will take a look at the link
– n00bly
Jan 25 at 10:25
add a comment |
By taking help of your code editor (like sublime text/ netbeans/ PHPStorm etc.), you can search for the file name mini.phtml.
It will help you locate the file from where the file mini.phtml is being called.
Further, for the second problem,
2019-01-25T08:51:18+00:00 ERR (3): Notice: iconv(): Wrong charset,
conversion from MacRoman' toUTF-16BE' is not allowed in
/home/website/domains/websitename.nl/public_html/lib/Zend/Pdf/FileParser.php
on line 451
you can take help from:
- https://www.sonassi.com/blog/knowledge-base/magento-wrong-charset-conversion-from-utf-16be-to-utf-8-is-not-allowed
Thanks! I will take a look at the link
– n00bly
Jan 25 at 10:25
add a comment |
By taking help of your code editor (like sublime text/ netbeans/ PHPStorm etc.), you can search for the file name mini.phtml.
It will help you locate the file from where the file mini.phtml is being called.
Further, for the second problem,
2019-01-25T08:51:18+00:00 ERR (3): Notice: iconv(): Wrong charset,
conversion from MacRoman' toUTF-16BE' is not allowed in
/home/website/domains/websitename.nl/public_html/lib/Zend/Pdf/FileParser.php
on line 451
you can take help from:
- https://www.sonassi.com/blog/knowledge-base/magento-wrong-charset-conversion-from-utf-16be-to-utf-8-is-not-allowed
By taking help of your code editor (like sublime text/ netbeans/ PHPStorm etc.), you can search for the file name mini.phtml.
It will help you locate the file from where the file mini.phtml is being called.
Further, for the second problem,
2019-01-25T08:51:18+00:00 ERR (3): Notice: iconv(): Wrong charset,
conversion from MacRoman' toUTF-16BE' is not allowed in
/home/website/domains/websitename.nl/public_html/lib/Zend/Pdf/FileParser.php
on line 451
you can take help from:
- https://www.sonassi.com/blog/knowledge-base/magento-wrong-charset-conversion-from-utf-16be-to-utf-8-is-not-allowed
answered Jan 25 at 10:23
Mohit Kumar AroraMohit Kumar Arora
6,64141632
6,64141632
Thanks! I will take a look at the link
– n00bly
Jan 25 at 10:25
add a comment |
Thanks! I will take a look at the link
– n00bly
Jan 25 at 10:25
Thanks! I will take a look at the link
– n00bly
Jan 25 at 10:25
Thanks! I will take a look at the link
– n00bly
Jan 25 at 10:25
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%2f259229%2fmagento-1-9xx-not-valid-template-file%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