Hi Elyianha,
I think this is not the right way to remove problem -12263
As per the requirement of Zen-cart framework you must have these futures with your application server.
· Support for HTTPS may be required depending on the payment methods being accepted.
· SSL certificate for secure online credit card transactions. The use of SSL during account creation and checkout is recommended.
First you'll active your https server with your domain name then change as give below
Take some changes with both configuration files which are available in admin/includes and includes folders.
For Admin configuration file
define('HTTP_SERVER', 'http://www.your domain name');
define('HTTPS_SERVER', 'https://www.your domain name');
define('HTTP_CATALOG_SERVER', 'http://www.your domain name');
define('HTTPS_CATALOG_SERVER', 'https://www.your domain name');
// Use secure web server for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'false');
For Catalog/includes configuration file add
define('HTTP_SERVER', 'http://www.your domain name');
define('HTTPS_SERVER', 'https://www.your domain name');
define('ENABLE_SSL', 'true');
I think your problem will be remove after these changes.
Note:- If you don't want to use online payment gateway then you can set the value of ENABLA_SSL with false, for run your application, but after this your application will not behavior as a secure site.
Dinesh R Vyas
Software Engineer, India