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

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

          Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

          Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?