Magento 2 Error: technical problem with the server created an error on logo upload Magento 2.3.0












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?










share|improve this question




















  • 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
















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?










share|improve this question




















  • 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














0












0








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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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














  • 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










2 Answers
2






active

oldest

votes


















1














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.






share|improve this answer

































    0














    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






    share|improve this answer























      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
      });


      }
      });














      draft saved

      draft discarded


















      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









      1














      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.






      share|improve this answer






























        1














        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.






        share|improve this answer




























          1












          1








          1







          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.






          share|improve this answer















          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.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Dec 18 '18 at 14:29









          Ylgen Guxholli

          859415




          859415










          answered Dec 18 '18 at 13:38









          Utsav GuptaUtsav Gupta

          30215




          30215

























              0














              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






              share|improve this answer




























                0














                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






                share|improve this answer


























                  0












                  0








                  0







                  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






                  share|improve this answer













                  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







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 2 hours ago









                  gelanivishalgelanivishal

                  787520




                  787520






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      Polycentropodidae

                      Magento 2 Error message: Invalid state change requested

                      Paulmy