OpenCart - 中文论坛

标题: opencart vqmod 下载与安装 [打印本页]

作者: sunboy    时间: 2014-6-13 16:54
标题: opencart vqmod 下载与安装
最近google被墙了,发个资源提供大家下载。

opencart vqmod 2.4.1版(已经添加2.5.1版本),这个版本比较稳定,还算比较新。

已经更新到了 2.6.1版本,下载地址
vqmod-2.6.1-opencart.zip (14.96 KB, 下载次数: 983)

先下载VQMOD插件(2.5.1版)
安装办法: vqmod-2.5.1-opencart.zip (15.26 KB, 下载次数: 1678)

下载后,上传 vqmod文件夹到你网站的根目录,大概是下列样子
在ftp窗口 中查看:


在本地电脑中查看:



2.4.1下载地址: vqmod-2.4.1-opencart.zip (13.67 KB, 下载次数: 683)





================opencart vqmod 安装===========
什么是vqmod?vQmod 全称是 Virtual File Modification System ,又称快速虚拟MOD。是一个虚拟覆盖系统的设计,以避免原有系统核心文件被修改。具体了解可以去网上搜索,总之这个vqmod是个很重要的东西,当然你可以不使用,但是如果你遇到一个opencart插件声明需要vqmod的时候,你可以来参考这篇文章!更多介绍vqmod的,请参看文章:https://opencart.cn/thread-4641-1-1.html

(1)第一种安装办法: 自动安装(几乎都是这样安装成功的):
备份网站数据及数据库,虽说没有兼容危险,还是以防万一好
解压上传vqmod文件夹到opencart网站根目录下
确保 vqmod 和 vqmod/vqcache/ 可写 (755或777)  一般755就行了,这个地方我认为755足矣。
确保 /index.php和/admin/index.php 可写(如果安装不成功请检查这里权限,请给755权限)
访问 https://你的域名/vqmod/install/
在浏览器中执行上面的链接后,系统会进行安装
过2秒后,系统会有提示:VQMOD HAS BEEN INSTALLED ON YOUR SYSTEM! 则安装成功!
自动安装完成。

(2)第二种安装办法:手动安装 (变态安装法,自动安装累死了也不成功考虑这个法子)
如果不是提示成功,请检查文件读写权限,或者手动安装!

手动安装:(我个人认为,几乎自动安装都能成功,只要权限设置好)
前期步骤和上面一样,打开 /index.php,然后搜索:
// Startup
require_once(DIR_SYSTEM . 'startup.php');

// Application Classes
require_once(DIR_SYSTEM . 'library/customer.php');
require_once(DIR_SYSTEM . 'library/currency.php');
require_once(DIR_SYSTEM . 'library/tax.php');
require_once(DIR_SYSTEM . 'library/weight.php');
require_once(DIR_SYSTEM . 'library/length.php');
require_once(DIR_SYSTEM . 'library/cart.php');
require_once(DIR_SYSTEM . 'library/affiliate.php');
替换为:
// vQmod
require_once('./vqmod/vqmod.php');
$vqmod = new VQMod();

// VQMODDED Startup
require_once($vqmod->modCheck(DIR_SYSTEM . 'startup.php'));

// Application Classes
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/customer.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/currency.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/tax.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/weight.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/length.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/cart.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/affiliate.php'));
打开 /admin/index.php 搜索:
// Startup
require_once(DIR_SYSTEM . 'startup.php');

// Application Classes
require_once(DIR_SYSTEM . 'library/currency.php');
require_once(DIR_SYSTEM . 'library/user.php'));
require_once(DIR_SYSTEM . 'library/weight.php');
require_once(DIR_SYSTEM . 'library/length.php');
替换为:

// vQmod
require_once('../vqmod/vqmod.php');
$vqmod = new VQMod();

// VQMODDED Startup
require_once($vqmod->modCheck(DIR_SYSTEM . 'startup.php'));

// Application Classes
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/currency.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/user.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/weight.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/length.php'));
至此,手动安装完成!


(2)安装后观察检验
然后检查 /vqmod/vqcache/下有没有文件,有的话则可以开始用需要vqmod支持的插件进行测试!

注意:

1,/vqmod/install 文件夹不能删除

2,发现VQMOD不起作用时候,可以删除/vqmod/vqcache/ 下的所有文件再观察

3,vqmod是没有风险的,请大家放心使用!

作者: skinc    时间: 2014-7-18 14:10
多谢楼主!
作者: zengyaofan    时间: 2016-1-29 19:45
为什么我找死了都没找到vqcache?
作者: sunboy    时间: 2016-1-31 22:02
zengyaofan 发表于 2016-1-29 19:45
为什么我找死了都没找到vqcache?

那你的缓存没有生成,检查下读写权限
作者: qao123    时间: 2017-4-19 14:30
如果opencart是专业版2.1的  要下载哪个版本的oqmod?谢谢
作者: sunboy    时间: 2017-4-20 17:32
下最新版即可
作者: ECKING    时间: 2017-8-31 15:30
感谢分享




欢迎光临 OpenCart - 中文论坛 (https://bbs.opencart.cn/) Powered by Discuz! X3.2