Skip to main content

How Install SSL in Opencart Site

After installing SSL certificate, we need to  configure the opencart in three things

1. Config.php
2. Admin setting
3. Htaccess
1. Config.php File:

The config file is in two location.
1. In domain root 

We need to change the following line:

define('HTTPS_SERVER', 'http://example.com/');

Changed To

define('HTTPS_SERVER', 'https://example.com/');

2. admin folder

We need to change the following line:
define('HTTPS_SERVER', 'http://example.com/admin/');
define('HTTPS_CATALOG', 'http://example.com/');

Changed to:

define('HTTPS_SERVER', 'https://example.com/admin/');
define('HTTPS_CATALOG', 'https://example.com/');

2. Admin Side:

We need to change the some configuration in admin side:
  1.  After login to the Opencart admin panel
  2. Goto the System -> Setting-> Server Tab
  3. In Security Secetion
  4. We need to change Use SSL  to Yes
  5. Click to Save Button
3. HTACCESS File:

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] 

Comments

Popular posts from this blog

Filter By Brand in opencart

<?xml version="1.0" encoding="UTF-8"?> <modification> <name>Brand By Filter</name> <id>Brand By Filter</id> <code>OCMP_BBF</code> <version>3.0.2</version> <vqmver required="true">2.4.0</vqmver> <author>ManiNalliapppan</author> <file path="catalog/controller/product/category.php"> <operation>             <search><![CDATA[$results = $this->model_catalog_category->getCategories($category_id);]]></search>             <add position="after"><![CDATA[// get manufacturers for child categories $categoryids_with_childs = array(); $categoryids_with_childs = $this->model_catalog_category->getCategoriesByParentId($category_id); array_push($categoryids_with_childs, $category_id); $manufacturers = $this->model_catalog_manufacturer->getManufacturersByCategories(...

About The Author

Hi All, Welcome to the Opencart Tutorial I have 4.5 Year industry experience in E-commerce and Business website Development. I have created more then 50 Websites.  I am expert in the opencart, wordpress , magento, PHP, HTML5, CSS. I will write this tutorial on opencart website from Installation to module customization

How to display weight in Product Page opencart

Kindly follow the following steps: Check this code now:  Go the following location in server or Cpanel Language File Change catalog/language/en-gb/product/product.php Check this $_['text_year']                = 'year';. Add the following lines to above lines $_['text_weight']                = 'Weight'; In model Change : Goto the catalog/model/catalog/product.php Check the following lines in public function getProducts($data = array()) Add the following lines above the lines: public function getWeightClass($weight_class_id) {     $sql="SELECT *  FROM " . DB_PREFIX . "weight_class_description WHERE weight_class_id='".$weight_class_id."'";     $query = $this->db->query($sql);      if ($query->num_rows)     {         return $query->row['unit'];           } ...