Open denysvitali opened 9 years ago
You can edit the following file :
app/protected/config/PerInstance.php
Make sure this setting has your url as HTTPS:
$instanceConfig['components']['request']['hostInfo'] = 'https://crm.yourdomain.com';
Found the solution here:
Due to HTTPS policy the form couldn't be loaded from https (because in the code the script url and other references (resources references) are set to
http
instead of//
This will cause a
Mixed Content
error in Chrome-like browsers due to this restriction (as it should be).Possible fix: convert code from
http
to//