团队十年电商经验汇集巨献!
Niushop 采用 ThinkPHP5.0 + MySQL 开发语言,完全面向对象的技术架构设计开发。完全开源,是目前国内首家最为完善的开源商城系统。系统支持多语言版本,操作简单、安全稳定,是广大用户二次开发的最佳选择。
- 非授权用户严禁去除Niushop相关的版权信息。
- 请尊重Niushop开发人员劳动成果,严禁使用本系统转卖、销售或二次开发后转卖、销售等商业行为!
- 请关注Niushop官方网址了解产品最新咨询、功能升级、BUG修复。
Niushop 官方网址: http://www.niushop.com.cn
- PHP5.4版本以上,支持PHP7.0
- 支持rewrite伪静态规则
- 支持php扩展:php_curl,php_gd2,(如果配置邮箱需要添加php_openssl,php_sockets)
- 设置upload权限,因为系统上传相片生成二维码等需要上传的这个文件夹,需要设置这个文件夹以及子项文件夹777权限
- 安装完成以后删除install.php
- 将源码解压到服务器空间
- 访问你的网址进行安装, 正常会跳转到 http://域名/install.php
- 按照系统提示进行安装
- 进入后台 后台地址:http://域名/index.php?s=/admin
- 进入前台 前台地址:http://域名/index.php
- 系统伪静态配置:
- 配置伪静态环境,apache、iis、nginx 配置环境不同
- 系统修改伪静态配置: ./application/config.php下面修改配置: define("REWRITE_MODEL", true); 配置伪静态设置为true 默认false
伪静态环境配置:
[ Apache ]
1. httpd.conf配置文件中加载了mod_rewrite.so模块
2. AllowOverride None 将None改为 All
[ IIS ]
如果你的服务器环境支持ISAPI_Rewrite的话,可以配置httpd.ini文件,添加下面的内容:
RewriteRule (.*)$ /index\.php\?s=$1 [I]
在IIS的高版本下面可以配置web.Config,在中间添加rewrite节点:
<rewrite>
<rules>
<rule name="OrgPage" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^(.*)$" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" />
</rule>
</rules>
</rewrite>
[nginx]
在Nginx低版本中,是不支持PATHINFO的,但是可以通过在Nginx.conf中配置转发规则实现:
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
Niushop 开源商城目录说明:
├─application 应用目录
│ ├─admin 后台用户目录
│ │ ├─controller 后台用户控制器目录
│ ├─shop 前台目录
│ │ ├─controller 前台控制器目录
│ ├─wap 手机,H5微信端目录
│ ├─controller 控制器
├─data 电商核心业务处理目录
│ ├─api 数据API接口定义函数
│ ├─model 数据表Model定义
│ ├─service Service层业务处理
├─public 公共资源文件目录
│ ├─admin 后台资源文件目录
│ ├─static 公共资源文件目录
│ ├─install 安装文件资源目录
├─runtime 运行时
├─template 模版
├─thinkphp Thinkphp
├─upload 上传文件目录
│ ├─advertising 广告位
│ ├─avator 用户头像
│ ├─common 公共上传文件目录
│ ├─goods 商品相册上传目录
│ ├─goods_brand 商品品牌图片
│ ├─goods_category 商品分类图片
│ ├─goods_qrcode 商品二维码图片
│ ├─goods_sku 商品SKU图片
│ ├─qrcode 店铺二维码
├─vendor Thinkphp支持库(必须)
├─.htaccess 伪静态
├─.index.php 入口文件
- 完善的QQ、微信第三方支付、第三方用户登录机制
- 精细的微信模块处理
- 惰性加载
- 路由、自动加载的缓存机制
- 模型及关联MongoDB支持
- 数据库集群及数据缓冲
-
安装时提示必须同意安装协议解决方案
安装时出现“必须同意安装协议”,一般是使用了Chrome内核的浏览器,您可以尝试更换IE或火狐等浏览器安装也可以设置下Chrome浏览器的配置,步骤如下:在Chrome的“设置”中找到“显示高级设置”找到“隐私设置”中的“内容设置”按钮,并点开在”cookies“选项…
-
清空演示数据
TRUNCATE nc_cms_article;
TRUNCATE nc_cms_article_class;
TRUNCATE nc_cms_comment;
TRUNCATE nc_cms_topic;
TRUNCATE ns_account;
TRUNCATE ns_account_assistant_records;
TRUNCATE ns_account_order_records;
TRUNCATE ns_account_period;
TRUNCATE ns_account_records;
TRUNCATE ns_account_return_records;
TRUNCATE ns_account_withdraw_records;
TRUNCATE ns_account_withdraw_user_records;
TRUNCATE ns_attribute;
TRUNCATE ns_attribute_value;
TRUNCATE ns_cart;
TRUNCATE ns_consult;
TRUNCATE ns_consult_type;
TRUNCATE ns_coupon;
TRUNCATE ns_coupon_goods;
TRUNCATE ns_coupon_type;
TRUNCATE ns_express_company;
TRUNCATE ns_express_shipping;
TRUNCATE ns_express_shipping_items;
TRUNCATE ns_express_shipping_items_library;
TRUNCATE ns_gift_grant_records;
TRUNCATE ns_goods;
TRUNCATE ns_goods_attribute;
TRUNCATE ns_goods_attribute_deleted;
TRUNCATE ns_goods_attribute_value;
TRUNCATE ns_goods_brand;
TRUNCATE ns_goods_category;
TRUNCATE ns_goods_deleted;
TRUNCATE ns_goods_evaluate;
TRUNCATE ns_goods_group;
TRUNCATE ns_goods_sku;
TRUNCATE ns_goods_sku_deleted;
TRUNCATE ns_goods_spec;
TRUNCATE ns_goods_spec_value;
TRUNCATE ns_member;
TRUNCATE ns_member_account;
TRUNCATE ns_member_account_records;
TRUNCATE ns_member_balance_withdraw;
TRUNCATE ns_member_express_address;
TRUNCATE ns_member_favorites;
TRUNCATE ns_member_gift;
DELETE from ns_member_level WHERE is_default != 1;
TRUNCATE ns_member_recharge;
TRUNCATE ns_offpay_area;
TRUNCATE ns_order;
TRUNCATE ns_order_action;
TRUNCATE ns_order_goods;
TRUNCATE ns_order_goods_express;
TRUNCATE ns_order_goods_promotion_details;
TRUNCATE ns_order_payment;
TRUNCATE ns_order_refund;
TRUNCATE ns_order_shipping_fee;
TRUNCATE ns_order_shop_return;
TRUNCATE ns_pickup_point;
#针对广告位删除考虑
#TRUNCATE ns_platform_adv;
#TRUNCATE ns_platform_adv_position;
TRUNCATE ns_platform_block;
TRUNCATE ns_platform_goods_recommend;
TRUNCATE ns_platform_goods_recommend_class;
TRUNCATE ns_platform_help_class;
TRUNCATE ns_platform_help_document;
TRUNCATE ns_platform_link;
TRUNCATE ns_point_config;
TRUNCATE ns_promotion_bundling;
TRUNCATE ns_promotion_bundling_goods;
TRUNCATE ns_promotion_discount;
TRUNCATE ns_promotion_discount;
TRUNCATE ns_promotion_discount_goods;
TRUNCATE ns_promotion_full_mail;#清除满额包邮数据会不会有问题
TRUNCATE ns_promotion_gift;
TRUNCATE ns_promotion_gift_goods;
TRUNCATE ns_promotion_mansong;
TRUNCATE ns_promotion_mansong_goods;
UPDATE ns_reward_rule set sign_point = 0, share_point = 0, reg_member_self_point = 0;
TRUNCATE ns_shop;
TRUNCATE ns_shop_ad;
TRUNCATE ns_shop_coin_records;
TRUNCATE ns_shop_express_address;
TRUNCATE ns_shop_group;
TRUNCATE ns_shop_navigation;
TRUNCATE ns_shop_order_account_records;
UPDATE ns_shop_weixin_share set goods_param_1 = '', goods_param_2 = '', shop_param_1 = '', shop_param_2 = '', shop_param_3 = '', qrcode_param_1 = '', qrcode_param_2 = '';
DELETE FROM sys_album_class WHERE is_default != 1;
UPDATE sys_album_class set album_name = '默认相册', album_cover = 0;
UPDATE sys_config set sys_config.value = '';
UPDATE sys_notice set notice_message = '';
#关于通知系统sys_notice表未处理
TRUNCATE sys_user;
TRUNCATE sys_user_admin;
TRUNCATE ns_promotion_mansong_rule;
TRUNCATE sys_user_group;
TRUNCATE sys_user_log;
TRUNCATE sys_version_devolution;
TRUNCATE sys_version_patch;
#关于站点设置表未处理
TRUNCATE sys_weixin_auth;
TRUNCATE sys_weixin_default_replay;
TRUNCATE sys_weixin_fans;
TRUNCATE sys_weixin_follow_replay;
TRUNCATE sys_weixin_instance_msg;
TRUNCATE sys_weixin_key_replay;
TRUNCATE sys_weixin_media;
TRUNCATE sys_weixin_media_item;
TRUNCATE sys_weixin_menu;
TRUNCATE sys_weixin_msg_template;
TRUNCATE sys_weixin_qrcode_template;
TRUNCATE sys_weixin_user_msg;
TRUNCATE sys_weixin_user_msg_replay;
Copy right 2015-2025 山西牛酷信息科技有限公司, 保留所有权利。
官方网址: http://www.niushop.com.cn
非授权用户允许商用,严禁去除Niushop相关的版权信息。
请尊重Niushop开发人员劳动成果,严禁使用本系统转卖、销售或二次开发后转卖、销售等商业行为。
任何企业和个人不允许对程序代码以任何形式任何目的再发布。