Updating from 1.0.9.9 to 1.0.9.10 is simple.
1. REQUIRED
Run this SQL to update the necessary parts of the 1.0.9.9 Database to 1.0.9.10 Spec
Code: Select all
CREATE TABLE importers (
importers_id int NOT NULL auto_increment,
importers_name varchar(255) NOT NULL,
importers_image varchar(255),
importers_address TEXT NULL,
importers_email varchar(255),
date_added datetime NULL,
last_modified datetime NULL,
PRIMARY KEY (importers_id),
KEY IDX_IMPORTERS_NAME (importers_name)
) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE TABLE importers_info (
importers_id int NOT NULL,
languages_id int NOT NULL,
importers_url varchar(255) NOT NULL,
url_clicked int(5) NOT NULL default '0',
date_last_click datetime NULL,
importers_description TEXT NULL,
PRIMARY KEY (importers_id, languages_id)
) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER TABLE manufacturers ADD manufacturers_address TEXT NULL;
ALTER TABLE manufacturers ADD manufacturers_email varchar(255);
ALTER TABLE products ADD importers_id int NULL;
2. REQUIRED
Upload these files.
Note that your /admin/ folder is hopefully not called "admin".
1.0.9.10.zip
3a. REQUIRED
Delete this
File
admin/includes/actions/catalog/views/
new_product_preview.php
3b. REQUIRED
Delete this
Folder (and all contents of this folder)
admin/includes/actions/
define_language/
4a. OPTIONAL
Add Importers.
Admin > Catalog > Importers
4b. OPTIONAL
Assign Importers to Products.
Admin > Catalog > Product Adding/Editing
4c. OPTIONAL
Turn on new Module for Manufacturer
Turn on new Module for Importer
Admin > Modules > Layout > Install
4d. OPTIONAL
Set Navbar to "sticky-top" for a more modern look and a better UI experience for your customers
Admin > Modules > Content > {Navigation Bar} > {Edit} > Placement: Sticky Top
5. REQUIRED
Visit Security Checks page in Admin and solve any issues
Admin > Tools > security checks