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;
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
add a comment |
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
add a comment |
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
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
checkout https
asked Jun 27 at 12:40
Aadii MughalAadii Mughal
1077 bronze badges
1077 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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]
thanks let me check if work. i'll update you in few hour
– Aadii Mughal
Jun 27 at 15:29
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%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
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]
thanks let me check if work. i'll update you in few hour
– Aadii Mughal
Jun 27 at 15:29
add a comment |
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]
thanks let me check if work. i'll update you in few hour
– Aadii Mughal
Jun 27 at 15:29
add a comment |
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]
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]
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
add a comment |
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
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%2f279927%2fmagento-2-checkout-page-not-working-with-error-of-ssl%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