East Mall System v1.8.1 is a complete digital-goods auto-delivery (faka) shop platform released under the MIT license, so you can run it commercially, modify it, and even keep your changes closed-source. On dajian168 you get the full source code download — no obfuscated files, no phone-home license checks, which matters a lot if you plan to customize the checkout flow or add your own payment channels.
The stack is deliberately simple: native PHP 7.4–8.0 (no framework), MySQL 5.7+ with PDO prepared statements, layui 2.8+ for the admin panel, and Bootstrap 5 + jQuery on the storefront. No Composer required — upload and it runs. In testing, the whole install took me under 10 minutes on a cheap 2-core VPS.
The two features that actually make money here are the 8-channel payment layer and the sub-site system. Payment covers Alipay, WeChat, QQ Wallet, Yipay, and balance pay, with async callback handling so orders don’t get stuck when a gateway is slow.
Actionable takeaway: before launch, test every payment channel with a 0.01 CNY real transaction — the async callback URL must be reachable, or orders stay unpaid even though the user paid.
Deployment is genuinely a 4-step wizard — the only real pitfall is PHP version mismatch. Here’s the exact sequence I use:
/install/index.php and complete the 4-step wizard.| Requirement | Minimum | Recommended |
|---|---|---|
| PHP | 7.4 | 8.0 |
| MySQL | 5.7 | 5.7+ / 8.0 |
| Frontend | Bootstrap 5 + jQuery, mobile-first, 3-terminal responsive | |
| Admin UI | layui 2.8+, AJAX throughout | |
Pitfall to avoid: PHP 8.1+ can throw deprecation warnings since the code is framework-native — stick to 8.0 unless you’re ready to patch.
If you sell card-keys, memberships, software licenses, or run a reseller sub-site network, this fits; if you sell physical goods with shipping, it does not. The admin console covers sales stats, trend charts, payment distribution, card inventory logs, price-change logs, order export, ticketing, sign-in rewards, and referral promotion — roughly 15 backend modules in total.
Q: Does East Mall System v1.8.1 require Composer or any build step?
A: No. It’s native PHP with no framework dependencies — upload the files, run the installer, done. That’s why it works on almost any shared host.
Q: Can sub-sites use their own domains and product lists?
A: Yes. Each sub-site binds an independent domain and manages its own products, so one installation can serve an entire reseller network.
Q: How do I import products from another faka platform?
A: Use the Integration settings in the admin panel. The adapter pattern lets you pull categories and products from compatible third-party systems in one click, or clone another East Mall site entirely.
Original title: 东方商城系统v1.8.1版本 全开源 – 搭建168
Original excerpt:
简介:
东方
商城系统
v1.8.1版本 全开源
《东方
商城系统
》开源公告 —— 一套完整可商用的数字商品
自动发卡
平台
【一、这是什么?】
东方商城系统是一套完整的数字商品
自动发卡
平台,你可以用它快速搭建属于自己的
商城网站
。
无论你是想卖卡密、卖会员、卖软件授权,还是想做一个分站平台,它都能满足你。
简单来说:就是一个开箱即用的商城系统。
【二、它长什么样?】
前台采用移动端优先设计,卡片式商品展示,底部导航,三端自适应(手机/平板/PC)。
首页:搜索 + 轮播图 +
分类导航
+ 商品列表
商品详情:支持规格选择、多种支付方式
用户中心:订单管理、余额充值、签到、推广、工单
后台采用
layui
框架,界面简洁清晰,所有操作通过 AJAX 交互,流畅不卡顿。
控制台:销售额统计、趋势图、支付方式分布
商品管理:分类、商品、卡密库存、上架日志、价格波动日志
订单管理:订单列表、订单导出、评价管理
分站管理:多商户分站体系,每个分站独立域名、独立商品
支付管理:
支付宝
、微信、QQ钱包、
易支付
等 8 个支付渠道
对接管理:对接卡速售等第三方系统,拉取分类和商品一键导入
插件商店:云端插件安装、钩子机制
【三、为什么要开源?】
这个系统最开始是我自己用的,后来朋友要,再后来客户要。
我发现:几乎每个做卡密生意的人都需要这样一个系统,但市面上要么太贵,要么代码质量
Original screenshots:



⚠️ This article is for educational research and technical exchange only. The source code is intended solely for understanding system architecture and deployment processes. Do not use it for illegal purposes. Any commercial operation is unrelated to the author.