我想从OpenCart版本2.0.3.1升级到2.1.0.1。
我以前的升级过程正常升级了。但这次升级与之前的不同。一些错误显示。我在OpenCart论坛上尝试了几种方法,但没有找到出路
将define('DB_PORT', '3306');
添加到config.php
我手动在opencart数据库中创建了表格:
CREATE TABLE `oc_cart` (
`cart_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`session_id` varchar(32) NOT NULL,
`product_id` int(11) NOT NULL,
`recurring_id` int(11) NOT NULL,
`option` text NOT NULL,
`quantity` int(5) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`cart_id`),
KEY `cart_id` (`customer_id`,`session_id`,`product_id`,`recurring_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
但是,我收到了这个错误:
致命错误:调用未定义的方法ModelToolOnline :: whosonline()in /家/................... 第80行/modification/catalog/controller/common/footer.php
那么你能帮我解决一下如何将opencart从2.0.3.1版本升级到最新版本(2.1.0.1)而不删除我的商店数据吗?
抱歉我的英语不好:)