Ssl Let's Encrypt

In the first i am sorry for my bad english


Il try too use SSL ( cannot use admin security )


Il try my site http:// www.mysite.fr Ok
i TRY https://www.mysite.frok


And i try other solution ..

I have in my host free certificat ( https --> Lets encrypt)

I ad this in .htaccess.

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.mysite.fr/$1 [R,L]

That ok but i cannot connect too admin ( when i have this rewrite ) ... if i remove rewrite ok ..

Il try my site http:// www.mysite.fr Ok
i TRY https://www.mysite.frok

admin blank page... ( any other port for admin.php ? )

Any idea ? ...

merci ...thks ..

Just install your certificate for your site and then go into Settings/Security settings and select "Secure entire site" in the "Enable secure connection for the storefront" element and then check the checkbox for "Enable secure connection in the administration panel".

thnks for ur answer..

I try this option ... but : il have this

AttentionThe secure connection check has failed. Please ensure that SSL certificate is installed on your server. Check out the Knowledge base article for more details.

thnks for ur answer..

I try this option ... but : il have this

Make sure that the certificate is OK. For example the common name (CN) in your SSL certificate should match the domain name.

We can check this more carefully if your contact us via Customer Help Desk and provide temporary access to your server on the Access information page of your Help Desk account.

Thank you for the answer.
The easiest and you will understand

if I test my domain: https://www.france-savon.com
It works normally

I'm on a shared server that issued a ssl at all sites

That is where I no longer understand

Thank you for the answer.
The easiest and you will understand

if I test my domain: https://www.france-savon.com
It works normally

I'm on a shared server that issued a ssl at all sites

That is where I no longer understand

Here is what I got on your website:

You should contact your server administrator and install valid SSL certificate

could you refrech coz for me its ok ..

If you do so you'd see that it works. It was validated by google shopping.

regards

sam

could you refrech coz for me its ok ..

If you do so you'd see that it works. It was validated by google shopping.

regards

It seems to be OK now. Are you still experiencing this issue with secure connection check?

Yes, I can not activate the ssl in the admin area and I do not understand why..

app/schemas/settings/actions.functions.php

try to comment out the code between the following lines in 2 functions

if (empty($content) || $content != 'OK') {
    ....
}

hi
Thanks ecom

i'm not good , I did not understand what I have to do.

Sam

replace:

            if (empty($content) || $content != 'OK') {
                // Disable https
                Settings::instance()->updateValue('secure_storefront', 'none', 'Security');
                $new_value = 'none';
            $error = Http::getErrorFields();
            $error_warning = __('warning_https_is_disabled', array(
                '[href]' => Registry::get('config.resources.kb_https_failed_url'
                )));

            $error_warning .= fn_settings_actions_build_detailed_error_message($error);
            fn_set_notification('W', __('warning'), $error_warning);
        }

with

            /*if (empty($content) || $content != 'OK') {
                // Disable https
                Settings::instance()->updateValue('secure_storefront', 'none', 'Security');
                $new_value = 'none';
            $error = Http::getErrorFields();
            $error_warning = __('warning_https_is_disabled', array(
                '[href]' => Registry::get('config.resources.kb_https_failed_url'
                )));

            $error_warning .= fn_settings_actions_build_detailed_error_message($error);
            fn_set_notification('W', __('warning'), $error_warning);
        }*/

and

        if (empty($content) || $content != 'OK') {
            // Disable https
            Settings::instance()->updateValue('secure_admin', 'N', 'Security');
            $new_value = 'N';
        $error = Http::getErrorFields();
        $error_warning = __('warning_https_is_disabled', array(
                '[href]' => Registry::get('config.resources.kb_https_failed_url'
                )));

        $error_warning .= fn_settings_actions_build_detailed_error_message($error);
        fn_set_notification('W', __('warning'), $error_warning);
    }

with

        /*if (empty($content) || $content != 'OK') {
            // Disable https
            Settings::instance()->updateValue('secure_admin', 'N', 'Security');
            $new_value = 'N';
        $error = Http::getErrorFields();
        $error_warning = __('warning_https_is_disabled', array(
                '[href]' => Registry::get('config.resources.kb_https_failed_url'
                )));

        $error_warning .= fn_settings_actions_build_detailed_error_message($error);
        fn_set_notification('W', __('warning'), $error_warning);
    }*/

replace:

            if (empty($content) || $content != 'OK') {
                // Disable https
                Settings::instance()->updateValue('secure_storefront', 'none', 'Security');
                $new_value = 'none';
            $error = Http::getErrorFields();
            $error_warning = __('warning_https_is_disabled', array(
                '[href]' => Registry::get('config.resources.kb_https_failed_url'
                )));

            $error_warning .= fn_settings_actions_build_detailed_error_message($error);
            fn_set_notification('W', __('warning'), $error_warning);
        }

with

            /*if (empty($content) || $content != 'OK') {
                // Disable https
                Settings::instance()->updateValue('secure_storefront', 'none', 'Security');
                $new_value = 'none';
            $error = Http::getErrorFields();
            $error_warning = __('warning_https_is_disabled', array(
                '[href]' => Registry::get('config.resources.kb_https_failed_url'
                )));

            $error_warning .= fn_settings_actions_build_detailed_error_message($error);
            fn_set_notification('W', __('warning'), $error_warning);
        }*/

and

        if (empty($content) || $content != 'OK') {
            // Disable https
            Settings::instance()->updateValue('secure_admin', 'N', 'Security');
            $new_value = 'N';
        $error = Http::getErrorFields();
        $error_warning = __('warning_https_is_disabled', array(
                '[href]' => Registry::get('config.resources.kb_https_failed_url'
                )));

        $error_warning .= fn_settings_actions_build_detailed_error_message($error);
        fn_set_notification('W', __('warning'), $error_warning);
    }

with

        /*if (empty($content) || $content != 'OK') {
            // Disable https
            Settings::instance()->updateValue('secure_admin', 'N', 'Security');
            $new_value = 'N';
        $error = Http::getErrorFields();
        $error_warning = __('warning_https_is_disabled', array(
                '[href]' => Registry::get('config.resources.kb_https_failed_url'
                )));

        $error_warning .= fn_settings_actions_build_detailed_error_message($error);
        fn_set_notification('W', __('warning'), $error_warning);
    }*/

what does this do eCOM?

what does this do eCOM?

If HTTPS is not defined in headers, the system still will use https. Sometimes server headers does not contain required information about https due to server configuration