Magento 2 Error: technical problem with the server created an error on logo upload Magento 2.3.0
On Magento 2.3.0 version when you try to upload logo for theme from admin side it will gives error as below:
"technical problem with the server created an error."
Is there something wrong with javascript?
magento2 theme upload logo magento2.3.0
add a comment |
On Magento 2.3.0 version when you try to upload logo for theme from admin side it will gives error as below:
"technical problem with the server created an error."
Is there something wrong with javascript?
magento2 theme upload logo magento2.3.0
2
Possible duplicate of Magento 2.3.0 "A technical problem with the server created an error." When uploading the logo image
– Aasim Goriya
1 hour ago
add a comment |
On Magento 2.3.0 version when you try to upload logo for theme from admin side it will gives error as below:
"technical problem with the server created an error."
Is there something wrong with javascript?
magento2 theme upload logo magento2.3.0
On Magento 2.3.0 version when you try to upload logo for theme from admin side it will gives error as below:
"technical problem with the server created an error."
Is there something wrong with javascript?
magento2 theme upload logo magento2.3.0
magento2 theme upload logo magento2.3.0
edited Dec 24 '18 at 16:29
7ochem
5,74293768
5,74293768
asked Dec 18 '18 at 13:29
Utsav GuptaUtsav Gupta
30215
30215
2
Possible duplicate of Magento 2.3.0 "A technical problem with the server created an error." When uploading the logo image
– Aasim Goriya
1 hour ago
add a comment |
2
Possible duplicate of Magento 2.3.0 "A technical problem with the server created an error." When uploading the logo image
– Aasim Goriya
1 hour ago
2
2
Possible duplicate of Magento 2.3.0 "A technical problem with the server created an error." When uploading the logo image
– Aasim Goriya
1 hour ago
Possible duplicate of Magento 2.3.0 "A technical problem with the server created an error." When uploading the logo image
– Aasim Goriya
1 hour ago
add a comment |
2 Answers
2
active
oldest
votes
On mangento 2.3.0 version when you try to upload logo for theme and if you got the error as
technical problem with the server created an error
then you need to change in below file :
app/code/Magento/Theme/view/adminhtml/ui_component/design_config_form.xml
replace below code :
field name="head_shortcut_icon" formElement="imageUploader">
with
field name="head_shortcut_icon" formElement="fileUploader">
Happy coding.
Thanks.
add a comment |
This is the bug in Magento 2.3 latest version, but you can fix this issue by change below code.
Go to this file: /vendor/magento/module-theme/view/adminhtml/ui_component/design_config_form.xml
and please remove "fileUploader" and add "imageUploader".
<collapsible>true</collapsible>
<label translate="true">HTML Head</label>
</settings>
<!-- Remove this code -->
<!-- <field name="head_shortcut_icon" formElement="fileUploader">-->
<!-- Add this code -->
<field name="head_shortcut_icon" formElement="imageUploader">
<settings>
<notice translate="true">Not all browsers support all these formats!</notice>
<label translate="true">Favicon Icon</label>
<collapsible>true</collapsible>
<label translate="true">Header</label>
</settings>
<!-- Remove this code -->
<!-- <field name="header_logo_src" formElement="fileUploader"> -->
<!-- Add this code -->
<field name="header_logo_src" formElement="imageUploader">
<settings>
<label translate="true">Logo Image</label>
<componentType>imageUploader</componentType>
This issue will be fixed in new Magento version, You can see PR here https://github.com/magento/magento2/pull/20092
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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%2f255069%2fmagento-2-error-technical-problem-with-the-server-created-an-error-on-logo-uplo%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
On mangento 2.3.0 version when you try to upload logo for theme and if you got the error as
technical problem with the server created an error
then you need to change in below file :
app/code/Magento/Theme/view/adminhtml/ui_component/design_config_form.xml
replace below code :
field name="head_shortcut_icon" formElement="imageUploader">
with
field name="head_shortcut_icon" formElement="fileUploader">
Happy coding.
Thanks.
add a comment |
On mangento 2.3.0 version when you try to upload logo for theme and if you got the error as
technical problem with the server created an error
then you need to change in below file :
app/code/Magento/Theme/view/adminhtml/ui_component/design_config_form.xml
replace below code :
field name="head_shortcut_icon" formElement="imageUploader">
with
field name="head_shortcut_icon" formElement="fileUploader">
Happy coding.
Thanks.
add a comment |
On mangento 2.3.0 version when you try to upload logo for theme and if you got the error as
technical problem with the server created an error
then you need to change in below file :
app/code/Magento/Theme/view/adminhtml/ui_component/design_config_form.xml
replace below code :
field name="head_shortcut_icon" formElement="imageUploader">
with
field name="head_shortcut_icon" formElement="fileUploader">
Happy coding.
Thanks.
On mangento 2.3.0 version when you try to upload logo for theme and if you got the error as
technical problem with the server created an error
then you need to change in below file :
app/code/Magento/Theme/view/adminhtml/ui_component/design_config_form.xml
replace below code :
field name="head_shortcut_icon" formElement="imageUploader">
with
field name="head_shortcut_icon" formElement="fileUploader">
Happy coding.
Thanks.
edited Dec 18 '18 at 14:29
Ylgen Guxholli
859415
859415
answered Dec 18 '18 at 13:38
Utsav GuptaUtsav Gupta
30215
30215
add a comment |
add a comment |
This is the bug in Magento 2.3 latest version, but you can fix this issue by change below code.
Go to this file: /vendor/magento/module-theme/view/adminhtml/ui_component/design_config_form.xml
and please remove "fileUploader" and add "imageUploader".
<collapsible>true</collapsible>
<label translate="true">HTML Head</label>
</settings>
<!-- Remove this code -->
<!-- <field name="head_shortcut_icon" formElement="fileUploader">-->
<!-- Add this code -->
<field name="head_shortcut_icon" formElement="imageUploader">
<settings>
<notice translate="true">Not all browsers support all these formats!</notice>
<label translate="true">Favicon Icon</label>
<collapsible>true</collapsible>
<label translate="true">Header</label>
</settings>
<!-- Remove this code -->
<!-- <field name="header_logo_src" formElement="fileUploader"> -->
<!-- Add this code -->
<field name="header_logo_src" formElement="imageUploader">
<settings>
<label translate="true">Logo Image</label>
<componentType>imageUploader</componentType>
This issue will be fixed in new Magento version, You can see PR here https://github.com/magento/magento2/pull/20092
add a comment |
This is the bug in Magento 2.3 latest version, but you can fix this issue by change below code.
Go to this file: /vendor/magento/module-theme/view/adminhtml/ui_component/design_config_form.xml
and please remove "fileUploader" and add "imageUploader".
<collapsible>true</collapsible>
<label translate="true">HTML Head</label>
</settings>
<!-- Remove this code -->
<!-- <field name="head_shortcut_icon" formElement="fileUploader">-->
<!-- Add this code -->
<field name="head_shortcut_icon" formElement="imageUploader">
<settings>
<notice translate="true">Not all browsers support all these formats!</notice>
<label translate="true">Favicon Icon</label>
<collapsible>true</collapsible>
<label translate="true">Header</label>
</settings>
<!-- Remove this code -->
<!-- <field name="header_logo_src" formElement="fileUploader"> -->
<!-- Add this code -->
<field name="header_logo_src" formElement="imageUploader">
<settings>
<label translate="true">Logo Image</label>
<componentType>imageUploader</componentType>
This issue will be fixed in new Magento version, You can see PR here https://github.com/magento/magento2/pull/20092
add a comment |
This is the bug in Magento 2.3 latest version, but you can fix this issue by change below code.
Go to this file: /vendor/magento/module-theme/view/adminhtml/ui_component/design_config_form.xml
and please remove "fileUploader" and add "imageUploader".
<collapsible>true</collapsible>
<label translate="true">HTML Head</label>
</settings>
<!-- Remove this code -->
<!-- <field name="head_shortcut_icon" formElement="fileUploader">-->
<!-- Add this code -->
<field name="head_shortcut_icon" formElement="imageUploader">
<settings>
<notice translate="true">Not all browsers support all these formats!</notice>
<label translate="true">Favicon Icon</label>
<collapsible>true</collapsible>
<label translate="true">Header</label>
</settings>
<!-- Remove this code -->
<!-- <field name="header_logo_src" formElement="fileUploader"> -->
<!-- Add this code -->
<field name="header_logo_src" formElement="imageUploader">
<settings>
<label translate="true">Logo Image</label>
<componentType>imageUploader</componentType>
This issue will be fixed in new Magento version, You can see PR here https://github.com/magento/magento2/pull/20092
This is the bug in Magento 2.3 latest version, but you can fix this issue by change below code.
Go to this file: /vendor/magento/module-theme/view/adminhtml/ui_component/design_config_form.xml
and please remove "fileUploader" and add "imageUploader".
<collapsible>true</collapsible>
<label translate="true">HTML Head</label>
</settings>
<!-- Remove this code -->
<!-- <field name="head_shortcut_icon" formElement="fileUploader">-->
<!-- Add this code -->
<field name="head_shortcut_icon" formElement="imageUploader">
<settings>
<notice translate="true">Not all browsers support all these formats!</notice>
<label translate="true">Favicon Icon</label>
<collapsible>true</collapsible>
<label translate="true">Header</label>
</settings>
<!-- Remove this code -->
<!-- <field name="header_logo_src" formElement="fileUploader"> -->
<!-- Add this code -->
<field name="header_logo_src" formElement="imageUploader">
<settings>
<label translate="true">Logo Image</label>
<componentType>imageUploader</componentType>
This issue will be fixed in new Magento version, You can see PR here https://github.com/magento/magento2/pull/20092
answered 2 hours ago
gelanivishalgelanivishal
787520
787520
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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%2f255069%2fmagento-2-error-technical-problem-with-the-server-created-an-error-on-logo-uplo%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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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
2
Possible duplicate of Magento 2.3.0 "A technical problem with the server created an error." When uploading the logo image
– Aasim Goriya
1 hour ago