資源簡介
韜龍社區團購系統是一套基于微信社群的社區團購系統,精仿你我您、鄰鄰壹等行業主流模板,始終考慮社區團購行業的站長需求,是一個真正的運營級微電商系統,社區團購系統(簡稱:韜龍社團)支持多渠道(微信公眾號、微信小程序、支付寶小程序、Android、IOS、WAP端)。
韜龍社區團購系統安裝說明
服務器空間需要支持PHP5.4 MySQL
1、解壓源碼將upload完整上傳至服務器根目錄
2、通過phpmyadmin將根目錄下面的cyyungoucms.sql數據庫導入到你自己的MySQL數據庫里面,不會導數據庫的童鞋請參考:phpmyadmin導入sql數據庫文件教程
3、部署說明:
1)數據庫配置文件:app/database.php
2)必須配置Thinkphp的偽靜態規則,建議部署在服務器上
3)超級管理員初始帳號:admin(密碼:admin888)
4、頁面入口路徑:
前臺路徑:sq.tao-long.com/index
管理員后臺:sq.tao-long.com/admin/login/login.html
加盟商后臺:sq.tao-long.com/alliance/login/login.html
韜龍社區團購系統前臺截圖
韜龍社區團購系統后臺截圖
相關閱讀
同類推薦:站長常用源碼
韜龍社區團購系統安裝說明
服務器空間需要支持PHP5.4 MySQL
1、解壓源碼將upload完整上傳至服務器根目錄
2、通過phpmyadmin將根目錄下面的cyyungoucms.sql數據庫導入到你自己的MySQL數據庫里面,不會導數據庫的童鞋請參考:phpmyadmin導入sql數據庫文件教程
3、部署說明:
1)數據庫配置文件:app/database.php
2)必須配置Thinkphp的偽靜態規則,建議部署在服務器上
3)超級管理員初始帳號:admin(密碼:admin888)
4、頁面入口路徑:
前臺路徑:sq.tao-long.com/index
管理員后臺:sq.tao-long.com/admin/login/login.html
加盟商后臺:sq.tao-long.com/alliance/login/login.html
韜龍社區團購系統前臺截圖
韜龍社區團購系統后臺截圖
相關閱讀
同類推薦:站長常用源碼
代碼片段和文件信息
/*
?*?This?file?is?part?of?Pimple.
?*
?*?Copyright?(c)?2014?Fabien?Potencier
?*
?*?Permission?is?hereby?granted?free?of?charge?to?any?person?obtaining?a?copy
?*?of?this?software?and?associated?documentation?files?(the?“Software“)?to?deal
?*?in?the?Software?without?restriction?including?without?limitation?the?rights
?*?to?use?copy?modify?merge?publish?distribute?sublicense?and/or?sell
?*?copies?of?the?Software?and?to?permit?persons?to?whom?the?Software?is?furnished
?*?to?do?so?subject?to?the?following?conditions:
?*
?*?The?above?copyright?notice?and?this?permission?notice?shall?be?included?in?all
?*?copies?or?substantial?portions?of?the?Software.
?*
?*?THE?SOFTWARE?IS?PROVIDED?“AS?IS“?WITHOUT?WARRANTY?OF?ANY?KIND?EXPRESS?OR
?*?IMPLIED?INCLUDING?BUT?NOT?LIMITED?TO?THE?WARRANTIES?OF?MERCHANTABILITY
?*?FITNESS?FOR?A?PARTICULAR?PURPOSE?AND?NONINFRINGEMENT.?IN?NO?EVENT?SHALL?THE
?*?AUTHORS?OR?COPYRIGHT?HOLDERS?BE?LIABLE?FOR?ANY?CLAIM?DAMAGES?OR?OTHER
?*?LIABILITY?WHETHER?IN?AN?ACTION?OF?CONTRACT?TORT?OR?OTHERWISE?ARISING?FROM
?*?OUT?OF?OR?IN?CONNECTION?WITH?THE?SOFTWARE?OR?THE?USE?OR?OTHER?DEALINGS?IN
?*?THE?SOFTWARE.
?*/
#ifdef?HAVE_CONFIG_H
#include?“config.h“
#endif
#include?“php.h“
#include?“php_ini.h“
#include?“ext/standard/info.h“
#include?“php_pimple.h“
#include?“pimple_compat.h“
#include?“zend_interfaces.h“
#include?“zend.h“
#include?“Zend/zend_closures.h“
#include?“ext/spl/spl_exceptions.h“
#include?“Zend/zend_exceptions.h“
#include?“main/php_output.h“
#include?“SAPI.h“
static?zend_class_entry?*pimple_ce;
static?zend_object_handlers?pimple_object_handlers;
static?zend_class_entry?*pimple_closure_ce;
static?zend_class_entry?*pimple_serviceprovider_ce;
static?zend_object_handlers?pimple_closure_object_handlers;
static?zend_internal_function?pimple_closure_invoker_function;
#define?FETCH_DIM_HANDLERS_VARS? pimple_object?*pimple_obj?=?NULL;?\
ulong?index;?\
pimple_obj?=?(pimple_object?*)zend_object_store_get_object(object?TSRMLS_CC);?\
#define?PIMPLE_object_HANDLE_INHERITANCE_object_HANDLERS do?{?\
if?(ce?!=?pimple_ce)?{?\
zend_hash_find(&ce->function_table?ZEND_STRS(“offsetget“)?(void?**)&function);?\
if?(function->common.scope?!=?ce)?{?/*?if?the?function?is?not?defined?in?this?actual?class?*/?\
pimple_object_handlers.read_dimension?=?pimple_object_read_dimension;?/*?then?overwrite?the?handler?to?use?custom?one?*/?\
}?\
zend_hash_find(&ce->function_table?ZEND_STRS(“offsetset“)?(void?**)&function);?\
if?(function->common.scope?!=?ce)?{?\
pimple_object_handlers.write_dimension?=?pimple_object_write_dimension;?\
}?\
zend_hash_find(&ce->function_table?ZEND_STRS(“offsetexists“)?(void?**)&function);?\
if?(function->common.scope?!=?ce)?{?\
pimple_object_handlers.has_dimension?=?pimple_object_has_dimension;?\
}?\
zend_hash_find(&ce->function_table?ZEND_STRS(“offsetunset“)?(void?**)&function);?\
if?(function->common.scope?!=?ce)?{?\
pimple_object_handlers.unset_dimens
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????????101??2019-01-07?15:06??TP偽靜態規則.txt
?????目錄???????????0??2019-01-07?16:05??upload\
?????目錄???????????0??2019-01-07?15:16??upload\addons\
?????目錄???????????0??2019-01-07?15:16??upload\addons\info\
?????文件????????3091??2018-12-27?23:06??upload\addons\info\Info.php
?????文件?????????676??2018-12-27?20:55??upload\addons\info\config.php
?????目錄???????????0??2019-01-07?15:16??upload\addons\info\controller\
?????文件????????1289??2018-12-27?20:56??upload\addons\info\controller\Admin.php
?????文件?????????372??2018-11-22?18:09??upload\addons\info\gitinfo.html
?????文件?????????935??2018-11-22?18:09??upload\addons\info\sysinfo.html
?????目錄???????????0??2019-01-07?15:16??upload\addons\info\view\
?????目錄???????????0??2019-01-07?15:16??upload\addons\info\view\admin\
?????文件????????1349??2018-11-22?18:09??upload\addons\info\view\admin\config.html
?????目錄???????????0??2019-01-07?15:16??upload\addons\maintain\
?????文件????????3836??2018-12-27?23:06??upload\addons\maintain\Maintain.php
?????文件?????????675??2018-12-27?20:57??upload\addons\maintain\config.php
?????目錄???????????0??2019-01-07?15:16??upload\addons\maintain\controller\
?????文件????????3569??2018-12-27?20:57??upload\addons\maintain\controller\Action.php
?????文件????????3012??2018-11-22?18:09??upload\addons\maintain\maintain.html
?????目錄???????????0??2019-01-07?15:16??upload\addons\security\
?????文件????????1356??2018-12-27?23:07??upload\addons\security\Security.php
?????目錄???????????0??2019-01-07?15:16??upload\addons\security\controller\
?????文件????????5077??2018-12-27?20:58??upload\addons\security\controller\Admin.php
?????目錄???????????0??2019-01-07?15:16??upload\addons\security\view\
?????目錄???????????0??2019-01-07?15:16??upload\addons\security\view\admin\
?????文件????????1228??2018-11-22?18:09??upload\addons\security\view\admin\security_check.html
?????文件????????2951??2018-11-22?18:09??upload\addons\security\view\admin\security_list.html
?????目錄???????????0??2019-01-07?15:16??upload\addons\team\
?????文件????????1421??2018-12-27?21:02??upload\addons\team\Team.php
?????文件?????????675??2018-12-27?20:59??upload\addons\team\config.php
?????文件?????????693??2018-12-27?21:02??upload\addons\team\team.html
............此處省略7757個文件信息
評論
共有 條評論