Hi All,
After enabling HTTPS in XIBO web, now I can no longer access to web interface. I get error:Secure Connection Failed.
Is there a way to change it back to where is was before?
Thanks for Any help.
Ebi
Hi All,
After enabling HTTPS in XIBO web, now I can no longer access to web interface. I get error:Secure Connection Failed.
Is there a way to change it back to where is was before?
Thanks for Any help.
Ebi
I guess you don’t have HTTPS configured on your host (otherwise it would work?)
The only way would be in the database - settings table, look for FORCE_HTTPS
and set it to Unchecked
Thanks Dan,
I was able to recover it from Backup.
I’ll give a it tray to setup HTTPS on host.
Ebi
Hi Ebi,
you can run with HTTP and HTTPS enabled until you are happy that HTTPS is working they way you want to and then you can switch the flag to force HTTPS.
Best Wishes,
Peter
Spring Signage - Support Engineer
I’m having the same problem, unable to find the file to edit, where I find?
I’m having the same problem, unable to find the file to edit, where I find?
Hi Peter,
I know how to enable HTTPS but my not clear about what you wrote enabling "HTTP and HTTPS " at the same time?
If that is what you meant, then could you please let me know where is the setting?
Thanks,
Ebi
A webserver is capable of listening on port 80 ad 443 (and others) at the same time, meaning your Xibo install can be accessed via HTTP and HTTPS while you make sure you have SSL configured correctly.
You don’t want to configure the option in Xibo until you are sure you have the SSL site working, otherwise you will be back with the same problem as before
The setting is in the settings
table of the MySQL database. You will need to edit that record to undo the configuration.
Pour désactiver la redirection https sur xibo.
il faut se connecter sur la base de donnée mysql et faire les commandes suivantes :
use your_database;
SELECT settingid,value,title from setting
Regarder la valeur de settingid de la ligne 'Force HTTPS?'
Faire
UPDATE setting
set value
=“0” where settingid
=77;
Pour vérifier que la valeur est bien à ‘0’ dans la colonne ‘value’ pour la ligne dont le titre est ‘Force HTTPS?’
SELECT settingid,value,title from setting