Maybe this requires the fix to be manual:
Change this in
/web//config.inc.php - usually it is
/web/main/config.inc.php by default:
define('SCHLIX_SITE_HTTP_URL','
https/
www.yourwebsite.com');
define('SCHLIX_SITE_HTTPS_URL','
https/
www.yourwebsite.com');
..
..
define('SCHLIX_SITE_SSL_ENABLED',
true);
define('SCHLIX_FORCE_SSL_ADMIN_LOGIN',
true);
If you want to forward all traffic to SSL (assuming this is the only site, edit the .htaccess file), find the following lines
############################################
RewriteCond %{REQUEST_URI} (/|\.htm|\.xhtml|\.html|\.*|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(? Comodo\ DCV)?$
RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$
RewriteRule (.*) index.php
###########
ADD THIS LINE BELOW
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(? Comodo\ DCV)?$
RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$
RewriteRule ^(.*)$
https://www.yourwebsite.com%{REQUEST_URI} [L,R]
Let me know if this works or not