2017 © Pedro Peláez
 

project feehicms

Feehi CMS Project Template

image

feehi/feehicms

Feehi CMS Project Template

  • Wednesday, January 17, 2018
  • by liufee
  • Repository
  • 1 Watchers
  • 9 Stars
  • 388 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 25 Versions
  • 8 % Grown

The README.md

FeehiCMS (English)

基于yii2的CMS系统,运行环境与yii2(php>=5.4)一致。FeehiCMS旨在为yii2爱好者提供一个基础功能完善的CMS系统,使开发者更专注于业务功能开发。 FeehiCMS没有对yii2做任何的修改、封装,但是把yii2的一些优秀特性几乎都用在了FeehiCMS上,对于学习yii2框架提供了良好的实例。, (*1)

Latest Stable Version License Build Status, (*2)

更新记录

0.1.3版本已经集成swoole作为FeehiCMS应用服务器,详细配置及使用参见yii2-swoole, (*3)

帮助

开发文档http://doc.feehi.com, (*4)

QQ群 258780872, (*5)

bug反馈, (*6)

功能

  • 网站设置
  • 前后台菜单
  • 文章管理
  • 权限管理
  • 多语言
  • 记录管理员操作日志
  • 缓存管理
  • 前后台用户
  • restful api
  • 单元测试、功能测试、验收测试

快速体验

  1. 使用演示站点 演示站点后台 用户名:feehicms 密码123456, (*7)

  2. 使用Docker容器, (*8)

    $ docker pull registry.cn-hangzhou.aliyuncs.com/liufee/cms
    $ docker run --name feehicms -h feehicms -itd -p 80:80 -p 22:22 liufee/cms
    

安装

前置条件: 如未特别说明,已默认您把php命令加入了环境变量 1. 使用归档文件, (*9)

使用此方式安装,后台超管用户名和密码会在安装过程中让您填入 1. 下载FeehiCMS源码 点击此处下载最新版 2. 解压到目录 3. 配置web服务器(参见下面) 4. 浏览器打开 http://localhost/install.php 按照提示完成安装(若使用php内置web服务器则地址为 http://localhost:8080/install.php ) 5. 完成, (*10)

  1. 使用composer (推荐使用此方式安装) >使用此方式安装,默认的后台超级管理员用户名admin密码123456 composer的安装以及国内镜像设置请点击 此处
    1. 依次执行以下命令 bash $ composer create-project feehi/cms webApp $ cd webApp $ composer install -vvv $ php ./init --env=Production #初始化yii2框架 $ php ./yii migrate/up --interactive=0 #导入FeehiCMS sql数据库,执行此步骤之前请先到common/config/main-local.php修改成正确的数据库配置
    2. 配置web服务器(参加下面)
    3. 完成

附:web服务器配置(注意是设置"path/to/frontend/web为根目录), (*11)

  • php内置web服务器(仅可用于开发环境,当您的环境中没有web服务器时), (*12)

    cd /path/to/cms
    php ./yii serve  
    
    #至此启动成功,可以通过localhost:8080/和localhost:8080/admin来访问了,在线安装即访问localhost:8080/install.php
    
  • Apache, (*13)

    DocumentRoot "path/to/frontend/web"
    <Directory "path/to/frontend/web">
      # 开启 mod_rewrite 用于美化 URL 功能的支持(译注:对应 pretty URL 选项)
      RewriteEngine on
      # 如果请求的是真实存在的文件或目录,直接访问
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      # 如果请求的不是真实文件或目录,分发请求至 index.php
      RewriteRule . index.php
    
      # ...其它设置...
    </Directory>
    
  • Nginx, (*14)

    server {
     server_name  localhost;
     root   /path/to/frontend/web;
     index  index.php index.html index.htm;
     try_files $uri $uri/ /index.php?$args;
    
     location ~ /api/(?!index.php).*$ {
        rewrite /api/(.*) /api/index.php?r=$1 last;
     }
    
     location ~ \.php$ {
         fastcgi_pass   127.0.0.1:9000;
         fastcgi_index  index.php;
         fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
         include        fastcgi_params;
         try_files $uri=404;
     }
    }
    

运行效果

后台, (*15)

前台, (*16)

The Versions

17/01 2018

2.0.1.1

2.0.1.1 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

15/01 2018

dev-master

9999999-dev http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

15/01 2018

2.0.1

2.0.1.0 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

18/12 2017

2.0.0

2.0.0.0 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

13/12 2017

1.0.0rc2

1.0.0.0-RC2 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

16/11 2017

1.0.0beta3

1.0.0.0-beta3 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

16/11 2017

1.0.0rc1

1.0.0.0-RC1 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

16/11 2017

1.0.0beta2

1.0.0.0-beta2 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

26/10 2017

1.0.0beta1

1.0.0.0-beta1 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

12/10 2017

1.0.0-alpha3

1.0.0.0-alpha3 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

27/09 2017

1.0.0alpha2

1.0.0.0-alpha2 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

24/09 2017

1.0.0alpha1

1.0.0.0-alpha1 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

21/08 2017

0.1.3

0.1.3.0 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

17/08 2017

0.1.2

0.1.2.0 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

17/08 2017

0.1.1

0.1.1.0 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

php cms project template php framework yii2 cms yii2 advanced feehi php cms feehicms

01/08 2017

0.1.0

0.1.0.0 http://cms.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework php yii2 project template yii2 advanced feehi feehi cms php cms

17/03 2017

0.0.9

0.0.9.0 http://blog.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework yii2 advanced project template feehi feehi cms

23/12 2016

0.0.8

0.0.8.0 http://blog.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework yii2 advanced project template feehi feehi cms

10/10 2016

0.0.7

0.0.7.0 http://blog.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework yii2 advanced project template feehi feehi cms

13/09 2016

0.0.6

0.0.6.0 http://blog.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework yii2 advanced project template feehi feehi cms

26/08 2016

0.0.5

0.0.5.0 http://blog.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework yii2 advanced project template feehi feehi cms

24/08 2016

0.0.4

0.0.4.0 http://blog.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework yii2 advanced project template feehi feehi cms

12/08 2016

0.0.3

0.0.3.0 http://blog.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework yii2 advanced project template feehi feehi cms

20/07 2016

0.0.2

0.0.2.0 http://blog.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework yii2 advanced project template feehi feehi cms

12/07 2016

0.0.1

0.0.1.0 http://blog.feehi.com/

Feehi CMS Project Template

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework yii2 advanced project template feehi feehi cms