2022-10-28 11:11:20 - 米境通跨境電商
opencart國(guó)外的一個(gè)開源的外貿(mào)程序,這兩天才接觸到,在安裝這個(gè)vqmod插件的時(shí)候,遇到了一點(diǎn)小問題,于是跟大家分享出來,先轉(zhuǎn)發(fā)下大神給出的安裝過程。然后說下菜鳥容易出現(xiàn)的誤區(qū)!
什么是vqmod?vQmod全稱是VirtualFileModificationSystem,又稱快速虛擬MOD。是一個(gè)虛擬覆蓋系統(tǒng)的設(shè)計(jì),以避免原有系統(tǒng)核心文件被修改。具體了解可以去網(wǎng)上搜索,總之這個(gè)vqmod是個(gè)很重要的東西,當(dāng)然你可以不使用,但是如果你遇到一個(gè)opencart插件聲明需要vqmod的時(shí)候,你可以返回來看看這篇文章!
下載:http://code.google.com/p/vqmod找到opencart的對(duì)應(yīng)版本
自動(dòng)安裝:
備份網(wǎng)站數(shù)據(jù)及數(shù)據(jù)庫(kù),雖說沒有兼容危險(xiǎn),還是以防萬(wàn)一好
解壓上傳vqmod文件夾到opencart網(wǎng)站根目錄下
確保vqmod和vqmod/vqcache/可寫(755或777)一般755就行了,這個(gè)地方我認(rèn)為755足矣。
確保/index.php和/admin/index.php可寫
訪問http://你的域名/vqmod/install/安裝
提示:VQMODHASBEENINSTALLEDONYOURSYSTEM!則安裝成功!
我當(dāng)初看的一個(gè)人的帖子,我只看到了LED,后面沒有,我以為沒成功呢,就一直反復(fù)安裝,結(jié)果還是不行,最后我問了大家,復(fù)制我安裝后出現(xiàn)的代碼,大家說是成功了的,只要不出現(xiàn)什么admin啥的就沒事。
如果不是提示成功,請(qǐng)檢查文件讀寫權(quán)限,或者手動(dòng)安裝!
手動(dòng)安裝:(我個(gè)人認(rèn)為,幾乎自動(dòng)安裝都能成功,只要權(quán)限設(shè)置好)
前期步驟和上面一樣,打開/index.php,然后搜索:
//Startup
require_once(DIR_SYSTEM.'startup.php');
//ApplicationClasses
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=newVQMod();
//VQMODDEDStartup
require_once($vqmod->modCheck(DIR_SYSTEM.'startup.php'));
//ApplicationClasses
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'));