
Originally Posted by
roryg1
When I type in an order number in admin/orders I get a security warning every time. Is there any way to fix this? I am using https everywhere, shop and admin. Thanks.
The information you have entered on this page will be sent over an insecure connection and could be read by a third party.
Are you sure you want to send this information?
Have you properly set your admin up to do https everywhere? Make sure that /YOUR_ADMIN/includes/configure.php looks similar to:
Code:
define('HTTP_SERVER', 'https://yoursite.com');
define('HTTPS_SERVER', 'https://yoursite.com');
define('HTTP_CATALOG_SERVER', 'http://yoursite.com');
define('HTTPS_CATALOG_SERVER', 'https://yoursite.com');
// secure webserver for admin? Valid choices are 'true' or 'false' (including quotes).
define('ENABLE_SSL_ADMIN', 'true');
// secure webserver for storefront? Valid choices are 'true' or 'false' (including quotes).
define('ENABLE_SSL_CATALOG', 'true');