General Discussion

global system configuration

paolspo ·
hi , it me again,

so this time after checking the box SSL in global system configuration, browsers doesn't recognize anymore the site as a secure, plus I tried to uncheck the box but the page doesn't show up anything.

may you help me.

thanks a lot , sorry for the inconvenient.
Attachment(s)

prana ·
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

paolspo ·
HI there,

many thanks for your time and sorry I have not seen the answer until this moment.

So I don't know how, problem it is resolved by itself, maybe the problem was generated by internet connection or slow server.