I have one issue in my Opencart page. I recently noticed that green bar into browser is not active, and checked my console for errors. I see this warnings:
Mixed Content: The page at 'siteurl' was loaded over HTTPS, but requested an insecure image 'http://siteurl/image/catalog/category/1.png'. This content should also be served over HTTPS.
I checked admin/config.php and have set this:
<?php
// HTTP
define('HTTP_SERVER', 'https://siteurl.com/admin/');
define('HTTP_CATALOG', 'https://siteurl.com/');
// HTTPS
define('HTTPS_SERVER', 'https://siteurl.com/admin/');
define('HTTPS_CATALOG', 'https://siteurl.com/');
// DIR
define('DIR_APPLICATION', '/home/public_html/admin/');
define('DIR_SYSTEM', '/home/public_html/system/');
define('DIR_IMAGE', '/home/public_html/image/');
define('DIR_LANGUAGE', '/home/public_html/admin/language/');
define('DIR_TEMPLATE', '/home/public_html/admin/view/template/');
define('DIR_CONFIG', '/home/public_html/system/config/');
define('DIR_CACHE', '/home/public_html/system/storage/cache/');
define('DIR_DOWNLOAD',
'/home//public_html/system/storage/download/');
define('DIR_LOGS', '/home/public_html/system/storage/logs/');
define('DIR_MODIFICATION',
'/home//public_html/system/storage/modification/');
define('DIR_UPLOAD', '/home/public_html/system/storage/upload/');
define('DIR_CATALOG', '/home/public_html/catalog/');
The same configuration I have is also in siteurl.com/config.php file, but Chrome still give me that yellow warnings, and for that dont mark my site as secured. How do I resolve this? Thanks.