DOLPHIN 7.2.1 SSL

Hello,
I use DOLPHIN 7.2.1.
Now I have ordered an SSL certificate, and on the server for the domain Installed.
in header.inc.php I have $ site ['url'] = "https://www.domain.de/";
converted.
Do I have what change? or is that enough
as far as I can see the page runs so far under hhtps

..
Quote · 18 Feb 2016

So just as I had festellen it now
https is not taken templates in the E-mail
the left of the emails is still http

..
Quote · 18 Feb 2016

you need to force ssl in your .htaccess file - search in the forums as this has been covered a million times before.

caredesign.net
Quote · 18 Feb 2016
only I find point 2 Not

So I had read here
https://www.boonex.com/trac/dolphin/wiki/GenFAQ#HowcanIenableSSLsupportinDolphin

is there
Dolphin already supports SSL "out of the box". Of course, you need to generate to SSL certificate and get it signed preliminary. If you need more info on this, look here.

So, how can you enable SSL in Dolphin? All you need to do is just edit one file, namely inc / header.inc.php. This file contains configuration for your Dolphin installation.

1) Find the line starting with something like:
$ Site [ 'url'] = "http://mysite.com/";


and replace http with https:
$ Site [ 'url'] = "https://mysite.com/";


2) Find the line Which looks Exactly this way:
header ( "Location: http: // {$ AURL [ 'host']} {$ _SERVER [ 'REQUEST_URI']}");


and replace it with
header ( "Location: https: // {$ AURL [ 'host']} {$ _SERVER [ 'REQUEST_URI']}");


3) Now just clear the cache in Admin Dashboard -> Tools -> Cache

 
Well, this should do the job :-)



only I find point 2 Not

..
Quote · 18 Feb 2016

your second instance is around line 96 on /inc/header.inc.php file.

 

Also put this in your .htaccess file and clear all caches (under the RewriteEngine On  section)

 

 

RewriteCond %{SERVER_PORT} 80

RewriteRule ^(.*)$ https://www.yoursite.com/$1 [R,L]

 

This will make sure if anyone goes to http://yoursite.com that they are redirected to the https:// automatically

caredesign.net
Quote · 18 Feb 2016

Thank you very much
I hope that now everything is correct

Thank you

..
Quote · 18 Feb 2016
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.