美文网首页
一个中型电商 的开源电商fecshop Ubuntu 配置

一个中型电商 的开源电商fecshop Ubuntu 配置

作者: 茶艺瑶 | 来源:发表于2018-06-25 15:53 被阅读187次

fecshop 官网使用的centos 配置有点和 ubuntu 不一样,当然你也可以使用docker 来搞 不过看了源码 , 域名有点怪怪的,当然你可以用nginx 代理在代理。。

话不多说了,如果你想要一个比较成熟的 B2C 电商的话,你可以试试这个
https://github.com/fecshop/yii2_fecshop

#如果你要用 php 最新版本的话目前为 7.2
sudo apt-get install python-software-properties software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update

服务器配置

sudo apt install nginx php php-sqlite3 php-mysql php-xml php-curl php-gd php-mbstring php-cli git unzip redis-server php-redis mysql-server mongodb php-mongo php-mongodb php-soap php-imap php-oauth

主意使用的composer 必须为 >= 1.3 所以不要使用 apt install composer

请使用这种方法安装

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"

sudo mv composer.phar /usr/local/bin/composer

xunSearch

apt-get install make gcc g++  
apt-get install zlib1g-dev 

wget http://www.xunsearch.com/download/xunsearch-full-latest.tar.bz2
tar -xjf xunsearch-full-latest.tar.bz2

cd xunsearch-full-1.3.0/

sh setup.sh

fecshop

composer global require "fxp/composer-asset-plugin:^1.3.1"
composer create-project fancyecommerce/fecshop-app-advanced  fecshop 1.4.5.0

# 重要的一步
cd fecshop
composer update    
./init 

如果使用的是 composer 安装的fecshop 记得 vim /etc/hosts 中添加 127.0.0.1 xunsearch
因为源码中

使用的 xunsearch 
fsockopen('xunsearch', 8383, 0, 'php_network_get...', 5)

nginx 配置

vim /etc/nginx/nginx.conf

在http 模块中添加 
    http{
        ...
        include /mnt/hgfs/fecshopVM/nginx/*; //虚拟机的路径
    }

我这里使用的是监听9000端口

vim /etc/php/7.2/fpm/pool.d/www.conf

修改 
listen 127.0.0.1:9000

在Ubuntu 目录下新建nginx文件夹下 新建两个文件
fcgi.conf ,none.conf

fcgi.conf

# nginx conf conf/fcgi.conf
# Created by http://www.wdlinux.cn
# Last Updated 2010.06.01
if ($request_filename ~* (.*)\.php) {
    set $php_url $1;
}
if (!-e $php_url.php) {
    #return 403;
}
fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
fastcgi_param  SERVER_SOFTWARE    nginx;

fastcgi_param  QUERY_STRING       $query_string;
fastcgi_param  REQUEST_METHOD     $request_method;
fastcgi_param  CONTENT_TYPE       $content_type;
fastcgi_param  CONTENT_LENGTH     $content_length;

fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
fastcgi_param  REQUEST_URI        $request_uri;
fastcgi_param  DOCUMENT_URI       $document_uri;
fastcgi_param  DOCUMENT_ROOT      $document_root;
fastcgi_param  SERVER_PROTOCOL    $server_protocol;

fastcgi_param  REMOTE_ADDR        $remote_addr;
fastcgi_param  REMOTE_PORT        $remote_port;
fastcgi_param  SERVER_ADDR        $server_addr;
fastcgi_param  SERVER_PORT        $server_port;
fastcgi_param  SERVER_NAME        $server_name;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param  REDIRECT_STATUS    200;

none.conf

location / {
    index index.html index.php; ## Allow a static html file to be shown first
    try_files $uri $uri/ @handler; ## If missing pass the URI to Magento's front handler
    expires 30d; ## Assume all files are cachable
}

location  /. { ## Disable .htaccess and other hidden files
    return 404;
}

location @handler { ## Magento uses a common front handler
    rewrite / /index.php;
}

location ~ .php/ { ## Forward paths like /js/index.php/x.js to relevant handler
    rewrite ^(.*.php)/ $1 last;
}
# Appadmin
#  /mnt/hgfs/fecshopVM/www
server {
    listen     80  ;
    server_name appadmin.fecshop.com;
    root   /mnt/hgfs/fecshopVM/www/fecshop/appadmin/web;
    server_tokens off;
    include none.conf;
    index index.php index.html index.htm;
    access_log /www/web_logs/access.log wwwlogs;
    error_log  /www/web_logs/error.log  notice;
    location ~ \.php$ {
        fastcgi_pass   php:9000;
        fastcgi_index  index.php;
        include fcgi.conf;
    }
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
        expires      30d;
    }
    location ~ .*\.(js|css)?$ {
        expires      12h;
    }
}

记得 上传图片一定要 配置 一个静态服务器 路由
# img
server {
    listen     80  ;
    server_name img.fecshop.com;
    root  /www/web/fecshop/appimage/common;
    server_tokens off;
    include none.conf;
    index index.php index.html index.htm;
    access_log /www/web_logs/access.log wwwlogs;
    error_log  /www/web_logs/error.log  notice;
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
        expires      30d;
    }
}

还有配置 Image.php 配置文件

cd @fecshop/common/config/fecshop_local_services/Image.php

 'common' => [
    'basedir'    => '@appimage/common',
    'basedomain' => '//img.fecshop.com',
  ],
  
  basedomain 修改为自己的静态路由文件

前台配置

cd  @fecshop/appfront/config/fecshop_local_services/Store.php

修改 stores 中的 域名为自己的 网站域名

nginx 配置如下

# AppFront
server {
    listen     80  ;
    server_name appfront.fecshop.com appfront.fecshop.es;
    root  /mnt/hgfs/fecshopVM/www/fecshop/appfront/web;
    server_tokens off;
    include none.conf;
    index index.php index.html index.htm;
   
    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        include fcgi.conf;
    }

    location ~ /sitemap.xml 
    {   
        if ($host  ~ .*appfront.fecshop.es) {  
            rewrite ^/sitemap\.xml /sitemap_es.xml last;  
        }
    }

    location /fr/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /fr/index.php last;
        }
    }
    
    location /es/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /es/index.php last;
        }
    }

     location /cn/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /cn/index.php last;
        }
    }

    location /de/ {
        index index.php;
        if (!-e $request_filename){
            rewrite . /de/index.php last;
        }
    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
        expires      30d;
    }

    location ~ .*\.(js|css)?$ {
        expires      12h;
    }
}

然后到

编辑配置文件

vim @fecshop/common/config/main-load.php

然后回到fecshop 根目录
cd fecshop 执行 yii 的数据 迁移文件

Mysql
./yii migrate --interactive=0 --migrationPath=@fecshop/migrations/mysqldb

MongoDB
./yii mongodb-migrate  --interactive=0 --migrationPath=@fecshop/migrations/mongodb

默认密码 后台密码 
admin admin123

如果使用的是php 7.2 请讲 yii2 升级到 >=2.0.13
要不会报错 Object
php 7.2 把 Object 设为关键词
如果还不行的话,"hightman/xunsearch": "dev-master"这个包请升级

composer.json

"yiisoft/yii2": ">=2.0.13",
"hightman/xunsearch": "dev-master",

相关文章

  • 一个中型电商 的开源电商fecshop Ubuntu 配置

    fecshop 官网使用的centos 配置有点和 ubuntu 不一样,当然你也可以使用docker 来搞 不过...

  • 电商与微商的区别

    电商段子 电商与微商的区别 电商靠智商,微商靠情商; 电商靠刷钻,微商靠反馈; 电商靠数据,微商靠话术; 电商靠电...

  • 回顾篇

    电商玩法 传统电商:淘宝,京东拼团电商:拼多多信任电商:快手兴趣电商:抖音,快手内容电商:小红书品牌电商:小米,华...

  • 电商网站用服务器的配置要求

    电商网站用服务器的配置要求 不断随着社会的发展,越来越多的人投入到电商这个行业,对于电商的人来说,选择一个好的服务...

  • 《电商、电商、电商》

    我原本想写《必然》的读书笔记的,不过目前只看了三分之一左右,而且有很多似懂非懂的地方,我想了一下还是下一次写吧。 ...

  • 电商服务器的配置

    电商服务器的配置 不断随着社会的发展,越来越多的人投入到电商这个行业,对于电商的人来说,选择一个好的服务器是至关重...

  • 禧购商城即将上线,敬请期待

    随着互联网基础的发展,电商理论也随之变化,在传统电商的基础上,社交电商、娱乐电商、网红电商、内容电商、小程序电商等...

  • 是的,微博终于推出了网红电商平台

    文 | 臭臭 今天,微博电商宣布推出网红电商平台,一个聚集垂直领域电商红人、电商机构及微博电商服务商的资源共享平台...

  • 电商随想

    1.电商的商品列表 2.电商的搜索(es) 3.电商的促销规则 4.电商的购物车 5.电商的订单 6.电商的支付 ...

  • 电商卖家为何纷纷放弃国内电商市场,亚马逊无货源有何魅力

    电商卖家为何纷纷放弃国内电商市场,亚马逊无货源有何魅力 电商平台整体可以分为国内电商和跨境电商两大类,国内电商就是...

网友评论

      本文标题:一个中型电商 的开源电商fecshop Ubuntu 配置

      本文链接:https://www.haomeiwen.com/subject/neuyyftx.html