Magento 2 checkout page not working with error of SSLSSL error when on product pageMagento after login SSL, page redirects to https account dashboard“quoteBaseGrandTotal is not defined” error during Checkout in Shipping BlockHow to make the /checkout/cart page load with HTTPS?SSL Breaks Checkout - Magento 2Background URL showing “checkout/cart” in Home page Magento 1.9.3Checkout page keeps loading continously in magento 2.2.4Checkout not loading next stepMagento2 Checkout page Not Working After Installing New themeModal error in checkout

Is this standard Japanese employment negotiations, or am I missing something?

Chilling juice in copper vessel

Why is there paternal, for fatherly, fraternal, for brotherly, but no similar word for sons?

Array or vector? Two dimensional array or matrix?

How predictable is $RANDOM really?

Do grungs have a written language?

Machine Learning Golf: Multiplication

What's the big deal about the Nazgûl losing their horses?

What is the highest level of accuracy in motion control a Victorian society could achieve?

Passwordless authentication - how invalidate login code

When moving a unique_ptr into a lambda, why is it not possible to call reset?

Can a USB hub be used to access a drive from two devices?

Examples of fluid (including air) being used to transmit digital data?

Why do Klingons use cloaking devices?

How do amateur satellites stay consistently in the amateur-sat bands acoss the globe?

Better random (unique) file name

How important is it for multiple POVs to run chronologically?

Howto display unicode character u2026 in terminal mode in emacs

Wouldn't putting an electronic key inside a small Faraday cage render it completely useless?

Why does mean tend be more stable in different samples than median?

Shipped package arrived - didn't order, possible scam?

Alternative to Willpower in Fighting Cravings

Why do Martians have to wear space helmets?

How to find the version of extensions used on a Joomla website without access to the backend?



Magento 2 checkout page not working with error of SSL


SSL error when on product pageMagento after login SSL, page redirects to https account dashboard“quoteBaseGrandTotal is not defined” error during Checkout in Shipping BlockHow to make the /checkout/cart page load with HTTPS?SSL Breaks Checkout - Magento 2Background URL showing “checkout/cart” in Home page Magento 1.9.3Checkout page keeps loading continously in magento 2.2.4Checkout not loading next stepMagento2 Checkout page Not Working After Installing New themeModal error in checkout






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















plz advice any one how we can force https



when i add product it work fine.. cart page also work fine .. but checkout page says loading and loading.. and error https



my website



http://muzikhausberlin.de










share|improve this question




























    2















    plz advice any one how we can force https



    when i add product it work fine.. cart page also work fine .. but checkout page says loading and loading.. and error https



    my website



    http://muzikhausberlin.de










    share|improve this question
























      2












      2








      2


      0






      plz advice any one how we can force https



      when i add product it work fine.. cart page also work fine .. but checkout page says loading and loading.. and error https



      my website



      http://muzikhausberlin.de










      share|improve this question














      plz advice any one how we can force https



      when i add product it work fine.. cart page also work fine .. but checkout page says loading and loading.. and error https



      my website



      http://muzikhausberlin.de







      checkout https






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 27 at 12:40









      Aadii MughalAadii Mughal

      1077 bronze badges




      1077 bronze badges




















          1 Answer
          1






          active

          oldest

          votes


















          0














          to force HTTPS, change your base url to https://.



          bin/magento setup:store-config:set --base-url="https://muzikhausberlin.de/"
          bin/magento setup:store-config:set --base-url-secure="https://muzikhausberlin.de/"
          bin/magento setup:store-config:set --use-secure=1
          bin/magento setup:store-config:set --use-secure-admin=1
          bin/magento cache:flush


          also if you have some redirect issues, you can add this to apache or .htaccess config:



          RewriteEngine On
          RewriteCond %HTTP:X-Forwarded-Proto !=https
          RewriteCond %HTTPS !=on
          RewriteCond %REQUEST_METHOD !=POST
          RewriteRule ^ https://%HTTP_HOST%REQUEST_URI [L,R=301]





          share|improve this answer

























          • thanks let me check if work. i'll update you in few hour

            – Aadii Mughal
            Jun 27 at 15:29













          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%2f279927%2fmagento-2-checkout-page-not-working-with-error-of-ssl%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









          0














          to force HTTPS, change your base url to https://.



          bin/magento setup:store-config:set --base-url="https://muzikhausberlin.de/"
          bin/magento setup:store-config:set --base-url-secure="https://muzikhausberlin.de/"
          bin/magento setup:store-config:set --use-secure=1
          bin/magento setup:store-config:set --use-secure-admin=1
          bin/magento cache:flush


          also if you have some redirect issues, you can add this to apache or .htaccess config:



          RewriteEngine On
          RewriteCond %HTTP:X-Forwarded-Proto !=https
          RewriteCond %HTTPS !=on
          RewriteCond %REQUEST_METHOD !=POST
          RewriteRule ^ https://%HTTP_HOST%REQUEST_URI [L,R=301]





          share|improve this answer

























          • thanks let me check if work. i'll update you in few hour

            – Aadii Mughal
            Jun 27 at 15:29















          0














          to force HTTPS, change your base url to https://.



          bin/magento setup:store-config:set --base-url="https://muzikhausberlin.de/"
          bin/magento setup:store-config:set --base-url-secure="https://muzikhausberlin.de/"
          bin/magento setup:store-config:set --use-secure=1
          bin/magento setup:store-config:set --use-secure-admin=1
          bin/magento cache:flush


          also if you have some redirect issues, you can add this to apache or .htaccess config:



          RewriteEngine On
          RewriteCond %HTTP:X-Forwarded-Proto !=https
          RewriteCond %HTTPS !=on
          RewriteCond %REQUEST_METHOD !=POST
          RewriteRule ^ https://%HTTP_HOST%REQUEST_URI [L,R=301]





          share|improve this answer

























          • thanks let me check if work. i'll update you in few hour

            – Aadii Mughal
            Jun 27 at 15:29













          0












          0








          0







          to force HTTPS, change your base url to https://.



          bin/magento setup:store-config:set --base-url="https://muzikhausberlin.de/"
          bin/magento setup:store-config:set --base-url-secure="https://muzikhausberlin.de/"
          bin/magento setup:store-config:set --use-secure=1
          bin/magento setup:store-config:set --use-secure-admin=1
          bin/magento cache:flush


          also if you have some redirect issues, you can add this to apache or .htaccess config:



          RewriteEngine On
          RewriteCond %HTTP:X-Forwarded-Proto !=https
          RewriteCond %HTTPS !=on
          RewriteCond %REQUEST_METHOD !=POST
          RewriteRule ^ https://%HTTP_HOST%REQUEST_URI [L,R=301]





          share|improve this answer















          to force HTTPS, change your base url to https://.



          bin/magento setup:store-config:set --base-url="https://muzikhausberlin.de/"
          bin/magento setup:store-config:set --base-url-secure="https://muzikhausberlin.de/"
          bin/magento setup:store-config:set --use-secure=1
          bin/magento setup:store-config:set --use-secure-admin=1
          bin/magento cache:flush


          also if you have some redirect issues, you can add this to apache or .htaccess config:



          RewriteEngine On
          RewriteCond %HTTP:X-Forwarded-Proto !=https
          RewriteCond %HTTPS !=on
          RewriteCond %REQUEST_METHOD !=POST
          RewriteRule ^ https://%HTTP_HOST%REQUEST_URI [L,R=301]






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jun 27 at 16:22

























          answered Jun 27 at 13:14









          MagenXMagenX

          2,51510 silver badges27 bronze badges




          2,51510 silver badges27 bronze badges












          • thanks let me check if work. i'll update you in few hour

            – Aadii Mughal
            Jun 27 at 15:29

















          • thanks let me check if work. i'll update you in few hour

            – Aadii Mughal
            Jun 27 at 15:29
















          thanks let me check if work. i'll update you in few hour

          – Aadii Mughal
          Jun 27 at 15:29





          thanks let me check if work. i'll update you in few hour

          – Aadii Mughal
          Jun 27 at 15:29

















          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%2f279927%2fmagento-2-checkout-page-not-working-with-error-of-ssl%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

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form