The problem is with pages being served over SSL.
Have you purchased an SSL certificate for your site? Are you in a shared hosting environment?
If the former, be sure your host has installed your certificate correctly. If the latter, you need to change these lines:
In includes/configure.php:
Code:
define('HTTPS_SERVER', 'https://www.ilkertanis.com');
and in admin/includes/configure.php:
Code:
define('HTTPS_SERVER', 'https://www.ilkertanis.com');
define('HTTPS_CATALOG_SERVER', 'https://www.ilkertanis.com');
to match the server URLs for your shared certificate. (Consult your host to determine what that is.)
Alternately, you can disable the use of SSL by changing these lines to false:
In includes/configure.php:
Code:
define('ENABLE_SSL', 'true');
and in admin/includes/configure.php:
Code:
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
Of course, by not using a secure connection for login and the checkout procedure, you risk losing big chunks of your prospective customers....
BrandTim