IN CMS OpenCart has a binding to URL site address, due to which, if the address is incorrect, there may be problems with entering the admin panel of the site. The problem manifests itself in the fact that after entering the login and password and clicking on the login button, the page simply refreshes and no login is made. The problem occurs if the domain is used when opening the site www.example.com
, and the site's configuration file contains the address example.com
.
To solve the problem, you can use several methods:
To solve the problem is change site url with the one that will be used, or replace the lines with it with the following:
define('HTTP_SERVER', 'http://' . $_SERVER['SERVER_NAME'] . '/'); define('HTTPS_SERVER', 'https://' . $_SERVER['SERVER_NAME'] . '/');