vqmod有opencart專門的版本坛梁,同樣適合于mycncart,官方地址為VQMOD腊凶,請?jiān)诠倬W(wǎng)下載最新版本的vqmod(截至目前是2.5.1)划咐,請注意下載適合opencart版本的。
由于近期Google網(wǎng)站在大陸不能訪問钧萍,造成無法下載vqmod文件褐缠。請到如下鏈接下載:
http://www.mycncart.com/index.php?route=product/product&product_id=8
vQmod能做什么?
以不更改原核心文件為原則风瘦,創(chuàng)建XML修補(bǔ)文件队魏,來達(dá)到“虛擬”改變原核心文件的目的。
自動安裝:
1. 下載opencart版本的vqmod万搔;
2. 使用ftp將解壓后的vqmod目錄上傳到您mycncart商城網(wǎng)站的根目錄胡桨,即與admin和catalog同級目錄;
3. 確保vqmod/vqcache目錄有可寫權(quán)限??(755 或 777)瞬雹;
4. 確保根目錄中的index.php以及admin/index.php文件為可寫昧谊;
5. 使用瀏覽器訪問你的網(wǎng)址,如:http://www.yoursite.com/vqmod/install挖炬,此時(shí)你應(yīng)當(dāng)?shù)牡玫揭话惭b成功的信息揽浙,如果沒有,則請檢查上述所說的權(quán)限問題意敛,然后再試馅巷;
6. 加載您的商城網(wǎng)站首頁,確認(rèn)工作正常草姻;
7. 使用ftp钓猬,確認(rèn)在vqmod/vqcache目錄下有新的vq文件;如果存在撩独,您就可以開始下載或創(chuàng)建自己的vQmod代碼了敞曹,否則账月,請尋求幫助。
注意:
1. 不要?jiǎng)h除install這個(gè)目錄澳迫;
2. 當(dāng)你升級mycncart后局齿,必須重新運(yùn)行vqmod的install程序;
3. 重新運(yùn)行vqmod的install程序沒有什么危險(xiǎn)橄登。
手動安裝:
1. 下載opencart版本的vqmod抓歼;
2. 使用ftp將解壓后的vqmod目錄上傳到您opencart商城網(wǎng)站的根目錄,即與admin和catalog同級目錄拢锹;
3. 確保vqmod/vqcache目錄有可寫權(quán)限??(755 或 777)谣妻;
4. 確保根目錄中的index.php以及admin/index.php文件為可寫;
5. 編輯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');
復(fù)制代碼
替換為:
// 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'));
復(fù)制代碼
注意:在舊的mycncart系統(tǒng)中卒稳,沒有Library蹋半。基本上所有require_once(DIR_SYSTEM . 'library/xxxxxxxx.php')的都需要用vqmod->modCheck重新處理充坑,在后續(xù)步驟中也如此减江。
6. 編輯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');
復(fù)制代碼
替換為:
// 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'));
復(fù)制代碼
7. 訪問你的網(wǎng)站商城首頁,確認(rèn)工作正常匪傍。
8.使用ftp您市,確認(rèn)在vqmod/vqcache目錄下有新的vq文件;如果存在役衡,您就可以開始下載或創(chuàng)建自己的vQmod代碼了茵休,否則,請尋求幫助手蝎。