Page 1 of 1

installing OpenCart 3.0.2.0 on localhost... need openssl... ideas?

Posted: Wed Jan 10, 2018 7:04 pm
by rootKID
Hey forum. I am currently trying to install the version 3.0.2.0 of OpenCart to my computer using a software called (Winginx) and i am running on the domain called (shop1/install/).
Now i have done everything to the details, and only thing i need now is openssl. It says it is required and yet i don't have this on the computer... at least i don't think so... just installed everything from fresh, even the server (latest version of winging with latest version of php7.1)...
Is there anyway possible to work-around this openssl? Need to install it here for now so that i can develop a new website for my bosses pizza shop, since we are a small minimarket/pizza shop, we deliver just about everything... and therefor needs a nice, sweet and small new webshop :P

Anyhow, hope you guys can help out! Thanks in advance! :)

Re: installing OpenCart 3.0.2.0 on localhost... need openssl... ideas?

Posted: Fri Jan 12, 2018 8:26 am
by IP_CAM
Well, I am not a Pro (yet), when it comes to SSL, but I don't think, that you
can make this work on a local Server. For SSL, you'll need a certificate, and
this certificate has to be 'bound' to a real Server Site and IP, but sure not to
IP Numbers like 127.x.x.x or 192.168.x.x, as it is the case on a local environment.
Ernie

Re: installing OpenCart 3.0.2.0 on localhost... need openssl... ideas?

Posted: Fri Jan 26, 2018 8:46 pm
by rootKID
hmm... true, this i know, but for some reason it tells me install/have it onto my freaking localhost -.-'...

is there no workaround for localhost so i can work on the website/opencart on localhost? I know i once could on earlier versions...

Hoping you can help me again!
Thanks in advance! :)

Re: installing OpenCart 3.0.2.0 on localhost... need openssl... ideas?

Posted: Sat Jan 27, 2018 8:25 am
by IP_CAM
Well, just rewrite your config.php files back to http://, and make sure,
that your .htaccess files does not include some routine, redirecting all Site
calls to https:// automatically.
Ernie

Code: Select all

<?php
// HTTP
define('HTTP_SERVER', 'http://www.jti.li/shop/');
define('HTTP_IMAGE', 'http://jti.li/shop/image/');

// HTTPS
define('HTTPS_SERVER', 'http://www.jti.li/shop/');
define('HTTPS_IMAGE', 'http://jti.li/shop/image/');