-
大小: 78.24MB文件類型: .rar金幣: 2下載: 1 次發(fā)布日期: 2023-01-23
- 語言: PHP
- 標簽:
資源簡介
價值99元的淘寶客源碼現(xiàn)在免費放出,有能力的可以進行二次開發(fā),SEO友好,很有潛力的一款淘寶客程序!
2018年4月最新版飛天俠淘寶客9.0系統(tǒng)
環(huán)境配置:php5.3 以上 MYSQL 5.0以上
建議使用apache linux 系統(tǒng)
網(wǎng)站上傳到空間 運行域名安裝
安裝成功之后,進入后臺 點擊工具 數(shù)據(jù)恢復
ftxia_20190530_2 備份名,, 點擊導入
導入 之后刷新下網(wǎng)頁,后臺地址:http://你的域名/admin.php
后臺賬號:admin密碼:admin
然后后臺管理 清理緩存 然后修改管理員密碼 即可。
里面的商品你們刪除清空下,系統(tǒng)會自動采集。
--------------------------------------配置后臺站點
系統(tǒng)設(shè)置 站點設(shè)置 域名信息設(shè)置你的 下面的淘金點設(shè)置你的
手機版地址 http://你的域名/index.php/m-------------------------------------采集方式 導航采集數(shù)據(jù)
下面有個全自動采集的,每天4個小時采集一次,有人訪問觸發(fā)試 采集,有優(yōu)惠券。
其他采集方式?jīng)]有優(yōu)惠券的 注意。
------------------------------------------------
QQ登錄 設(shè)置
偽靜態(tài)模式(REWRITE模式)QQ回調(diào)地址填寫:http://域名/oauth-callback-mod-qq 如果你的分割號是/的話就換成http://域名/oauth/callback/mod/qq 偽靜態(tài)模式(PATHINFO模式)QQ回調(diào)地址填寫:http://域名/index.php/oauth-callback-mod-qq http://域名/index.php/oauth/callback/mod/qq
2018年4月最新版飛天俠淘寶客9.0系統(tǒng)
環(huán)境配置:php5.3 以上 MYSQL 5.0以上
建議使用apache linux 系統(tǒng)
網(wǎng)站上傳到空間 運行域名安裝
安裝成功之后,進入后臺 點擊工具 數(shù)據(jù)恢復
ftxia_20190530_2 備份名,, 點擊導入
導入 之后刷新下網(wǎng)頁,后臺地址:http://你的域名/admin.php
后臺賬號:admin密碼:admin
然后后臺管理 清理緩存 然后修改管理員密碼 即可。
里面的商品你們刪除清空下,系統(tǒng)會自動采集。
--------------------------------------配置后臺站點
系統(tǒng)設(shè)置 站點設(shè)置 域名信息設(shè)置你的 下面的淘金點設(shè)置你的
手機版地址 http://你的域名/index.php/m-------------------------------------采集方式 導航采集數(shù)據(jù)
下面有個全自動采集的,每天4個小時采集一次,有人訪問觸發(fā)試 采集,有優(yōu)惠券。
其他采集方式?jīng)]有優(yōu)惠券的 注意。
------------------------------------------------
QQ登錄 設(shè)置
偽靜態(tài)模式(REWRITE模式)QQ回調(diào)地址填寫:http://域名/oauth-callback-mod-qq 如果你的分割號是/的話就換成http://域名/oauth/callback/mod/qq 偽靜態(tài)模式(PATHINFO模式)QQ回調(diào)地址填寫:http://域名/index.php/oauth-callback-mod-qq http://域名/index.php/oauth/callback/mod/qq
代碼片段和文件信息
/***********************************************************************
????Copyright?2006-2007?Ma?Bingyao
????These?sources?is?free?software.?Redistributions?of?source?code?must
????retain?the?above?copyright?notice.?Redistributions?in?binary?form
????must?reproduce?the?above?copyright?notice.?You?can?redistribute?it
????freely.?You?can?use?it?with?any?free?or?commercial?software.
????These?sources?is?distributed?in?the?hope?that?it?will?be?useful
????but?WITHOUT?ANY?WARRANTY.?Without?even?the?implied?warranty?of
????MERCHANTABILITY?or?FITNESS?FOR?A?PARTICULAR?PURPOSE.
????????You?may?contact?the?author?by:
???????????e-mail:??andot@coolcode.cn
*************************************************************************/
#ifdef?HAVE_CONFIG_H
#include?“config.h“
#endif
#include?“php.h“
#if?HAVE_XXTEA
#include?“php_xxtea.h“
#include?“ext/standard/info.h“?/*?for?phpinfo()?functions?*/
#include?“xxtea.h“
/*?compiled?function?list?so?Zend?knows?what‘s?in?this?module?*/
zend_function_entry?xxtea_functions[]?=
{
????ZEND_FE(xxtea_encrypt?NULL)
????ZEND_FE(xxtea_decrypt?NULL)
????ZEND_FE(xxtea_info?NULL)
????{NULL?NULL?NULL}
};
/*?compiled?module?information?*/
zend_module_entry?xxtea_module_entry?=
{
????STANDARD_MODULE_HEADER
????XXTEA_MODULE_NAME
????xxtea_functions
????ZEND_MINIT(xxtea)
????ZEND_MSHUTDOWN(xxtea)
????NULL
????NULL
????ZEND_MINFO(xxtea)
????XXTEA_VERSION
????STANDARD_MODULE_PROPERTIES
};
/*?implement?standard?“stub“?routine?to?introduce?ourselves?to?Zend?*/
#if?defined(COMPILE_DL_XXTEA)
ZEND_GET_MODULE(xxtea)
#endif
static?xxtea_long?*xxtea_to_long_array(unsigned?char?*data?xxtea_long?len?int?include_length?xxtea_long?*ret_len)?{
????xxtea_long?i?n?*result;
n?=?len?>>?2;
????n?=?(((len?&?3)?==?0)???n?:?n?+?1);
????if?(include_length)?{
????????result?=?(xxtea_long?*)emalloc((n?+?1)?<2);
????????result[n]?=?len;
????*ret_len?=?n?+?1;
}?else?{
????????result?=?(xxtea_long?*)emalloc(n?<2);
????*ret_len?=?n;
????}
memset(result?0?n?<2);
for?(i?=?0;?i?????????result[i?>>?2]?|=?(xxtea_long)data[i]?<((i?&?3)?<3);
????}
????return?result;
}
static?unsigned?char?*xxtea_to_byte_array(xxtea_long?*data?xxtea_long?len?int?include_length?xxtea_long?*ret_len)?{
????xxtea_long?i?n?m;
????unsigned?char?*result;
????n?=?len?<2;
????if?(include_length)?{
????????m?=?data[len?-?1];
????????if?((m??n?-?4))?return?NULL;
????????n?=?m;
????}
????result?=?(unsigned?char?*)emalloc(n?+?1);
for?(i?=?0;?i?????????result[i]?=?(unsigned?char)((data[i?>>?2]?>>?((i?&?3)?<3))?&?0xff);
????}
result[n]?=?‘\0‘;
*ret_len?=?n;
return?result;
}
static?unsigned?char?*php_xxtea_encrypt(unsigned?char?*data?xxtea_long?len?unsigned?char?*key?xxtea_long?*ret_len)?{
????unsigned?char?*result;
????xxtea_long?*v?*k?v_len?k_len;
????v?=?xxtea_to_long_array(data?len?1?&v_len);
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????173??2013-04-10?17:24??vip源碼\.htaccess
?????文件?????????75??2015-01-15?20:28??vip源碼\admin.php
?????文件??????19087??2018-11-14?17:29??vip源碼\app\Common\common.php
?????文件???????4321??2018-11-14?17:29??vip源碼\app\Extend\Driver\TagLib\TagLibFtx.class.php
?????文件??????16339??2018-11-14?17:29??vip源碼\app\Extend\Model\RelationModel.class.php
?????文件????????658??2018-11-14?17:29??vip源碼\app\Extend\README.txt
?????文件????????802??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\Logger.php
?????文件???????4181??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaAliItemsCouponGetRequest.php
?????文件???????1221??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaBrandListsGetRequest.php
?????文件???????1269??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaItemcatsGetRequest.php
?????文件???????1189??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaItemDescGetRequest.php
?????文件????????700??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaItemDetailGetRequest.php
?????文件???????2871??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaItemsCouponGetRequest.php
?????文件????????706??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaItemsDetailGetRequest.php
?????文件???????1044??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaJuBrandItemsGetRequest.php
?????文件???????1073??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaJuCatsGetRequest.php
?????文件???????1211??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaJuListsGetRequest.php
?????文件????????994??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaMeilicatsGetRequest.php
?????文件???????1593??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaMeiliItemsGetRequest.php
?????文件????????650??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaSanbaItemcatsGetRequest.php
?????文件???????1503??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaSanbaItemsGetRequest.php
?????文件????????653??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaShuangItemcatsGetRequest.php
?????文件???????1506??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaShuangItemsGetRequest.php
?????文件????????657??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaTaoQuanGetRequest.php
?????文件???????1015??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaTejiaCatsGetRequest.php
?????文件???????1328??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaTmallItemsGetRequest.php
?????文件????????863??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaUpgradeGetRequest.php
?????文件???????1015??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaUzCateListGetRequest.php
?????文件???????1462??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaUzItemsCouponGetRequest.php
?????文件????????835??2018-11-14?17:29??vip源碼\app\Extend\Vendor\Ftxia\request\FtxiaUzListsGetRequest.php
............此處省略4489個文件信息
評論
共有 條評論