Anchor CMS

Just like its introduction says, Anchor has a very simple UI. The installation takes literally less than a minute. It support Markdown editor, custom field, multi languages and simple theming.

  • License: Open source
  • Server Language: PHP 5.3.6+
  • Database: MySQL 5.2+
  • Self-Hosted: Yes
  • Support Plugins/Extensions: Yes

Pico CMS

Pico is another really simply CMS. It doesn't have a backend to edit (there is a plugin to enable that). It doesn't use database queries therefore making it super fast. It support Markdown formatting and twig templates.

  • License: Open source
  • Server Language: PHP 5.2.4+
  • Database: No. Flat file CMS.
  • Self-Hosted: Yes
  • Support Plugins/Extensions: Yes

Bolt

Bolt is a tool for Content Management, which strives to be as simple and straightforward as possible. It is quick to set up, easy to configure, uses elegant templates, and above all: It’s a joy to use. Bolt is created using modern Open Source libraries, and is best suited to build sites in HTML5, with modern markup.

  • License: Open source
  • Server Language: PHP 5.3.2+
  • Database: Yes. SQLite, MySQL or PostgreSQL.
  • Self-Hosted: Yes
  • Support Plugins/Extensions: Yes

Monstra

Monstra is a simple and light-weighted Content Management System written in PHP! Monstra has a good collection of plugins available to download.

  • License: Open source
  • Server Language: PHP 5.2.3+
  • Database: Yes. SQLite, MySQL or PostgreSQL.
  • Self-Hosted: Yes
  • Support Plugins/Extensions: Yes. Plugin Repository

Wolf CMS

WolfCMS is slightly more advance than the rest. It has a great collection of plugins and it support per page customization, flexible page content and reusable snippets.

  • License: Open source
  • Server Language: PHP 5+
  • Database: Yes. SQLite, MySQL.
  • Self-Hosted: Yes
  • Support Plugins/Extensions: Yes. Plugin Repository

PyroCMS

PyroCMS is used by individuals, small & medium-sized businesses, and large organizations worldwide to easily create & build a variety of websites & web-enabled applications. It has multisite manager and powerful addons.

  • License: Open source
  • Server Language: PHP
  • Database: Yes. SQLite, MySQL or PostgreSQL.
  • Self-Hosted: Yes
  • Support Plugins/Extensions: No.

Kirby (Thanks Chris McCoy for sharing this CMS)

Kirby CMS is a easy to use, easy to setup and very flexible CMS. No database setup, it uses flat file system. WIth its jQuery inspired API, it's easy to learn as well. It supports MarkDown syntax, templates, plugins and most importantly, good documentation..

  • License: Free to try. $30 per website.
  • Server Language: PHP
  • Database: No. File-based CMS.
  • Self-Hosted: Yes
  • Support Plugins/Extensions: Yes. Plugin Repo

6 个轻量级并且灵活的 PHP CMS 系统的更多相关文章

  1. 国外一些知名ASP.Net开源CMS系统

    1.Ludico Ludico是C#编写的居于ASP.NET 2.0的Portal/CMS系统.它的模块化设计是你可以按照你希望的使用或开发网站功能.它里面有高级的用户管理,一个所见即所的(WYSIW ...

  2. 基于Java的开源CMS系统选择(转)

    CMS概述 对于网站CMS系统而言,基于PHP的是主流,如Drupal/Joomla在各个主流虚拟机提供商上都是标准配置,也被广泛使用. 但如果你拥有Java团队,或者项目目标是想建立一个企业网使用的 ...

  3. 《转》适用于开发人员的10个最佳ASP.NET的CMS系统

    1) mojoportal mojoPortal 是一个开源的.用 C# 编写的站点框架和内容管理系统,可以运行在 Windows 中的 ASP.NET 和 Linux/Mac OS X 中的 Mon ...

  4. Laravel系列之CMS系统学习 — 角色、权限配置【2】

    一.RBAC分析 基于角色的权限访问控制(Role-Based Access Control),这里存在这么几个玩意儿:角色.权限,用户 表:roles.permissions.role_has_pe ...

  5. 各大CMS系统优缺点(2017)

    各大CMS系统优缺点(2017) 总结 WordPress之前用过,可能需要再完整的用一个才会比较了解. 从2015年各行业建站规模来看,还有一大批人想自己搭建网站,下面为大家盘点一下比较实用CMS系 ...

  6. 基于Java的开源CMS系统选择

    CMS概述 对于网站CMS系统而言,基于PHP的是主流,如Drupal/Joomla在各个主流虚拟机提供商上都是标准配置,也被广泛使用. 但如果你拥有Java团队,或者项目目标是想建立一个企业网使用的 ...

  7. 三大免费开源的php语言cms系统 用好它们让你一天建好一个网站

    php语言只所以在web开发领域占据半壁江山,是因为它有太多的生态,成熟的框架体系,广泛的开源cms系统.建设网站的时候,都想提升开发效率,效率就是成本,如果你用原生php语言开发一个项目,既要设计数 ...

  8. 国内免费CMS系统大全

    一.ASP类的CMS程序 1.动易CMS 官方网址:http://www.powereasy.net/(可免费下载) 特点:完全免费,ACCESS数据库,主要功能模块:文章频道.下载频道.图片频道.留 ...

  9. CMS系统存储路径

    CMS系统特点:前后端分离 index.html 首页文件index.php 管理后台的页面 api文件夹: 提供的接口 caches文件夹: 缓存文件 html文件夹:  生成的静态页面 phpcm ...

随机推荐

  1. kibaba 选择字段

  2. BeautifulSoup解析非标准HTML的问题

    发现问题: BeautifulSoup版本:4.3.2 在用BeautifulSoup.find_all()搜索HTML时,遇到下面的代码: <a href="/shipin/dong ...

  3. OJ技巧

    防爆盾: #pragma comment(linker,"/QUEUE:10240000,10240000") #pragma comment(linker,"/STAC ...

  4. 【转】(DT系列三)系统启动时, dts 是怎么被加载的

    原文网址:http://www.cnblogs.com/biglucky/p/4057481.html 一,主要问题:系统在启动的时候,是怎么加载 dts的:Lk,kernel中都应调查. 二:参考文 ...

  5. sql存储过程的创建

    一:没有参数的存储过程 CREATE PROCEDURE select_all AS BEGIN SELECT * from T_login1 END GO 二:带参数的存储过程 CREATE PRO ...

  6. jquery 异步请求Demo【转载】

    $(document).ready(function() { $.ajax({ url : "/AjaxAction/LoginArea.ashx", data : {userna ...

  7. SRM593(1-250pt,500pt)

    SRM 593 DIV1 250pt 题意:有如下图所示的平面,每个六边形有坐标.将其中一些六边形染色,要求有边相邻的两个六边形不能染同一种颜色.给定哪些六边形需要染色,问最少需要多少种颜色. 解法: ...

  8. K - Transformation-hdu 4578(多操作混合区间更新)线段树

    题意:有四种操作 1,  区间 [l, r] 的值都加上 C 2,  区间 [l, r] 的值都乘上 C 3,  区间 [l, r] 的值都变为C 4,  求区间 [l, r]所有数的p次方的和 分析 ...

  9. jQuery表单验证以及将表单序列化为json对象小练习

    jquery表单验证(非实时验证),同时,将表单序列化为json对象提交表单. <!DOCTYPE html> <html lang="en"> <h ...

  10. Disposable microfluidic devices: fabrication, function, and application Gina S. Fiorini and Daniel T

    Disposable microfluidic devices: fabrication, function, and application Gina S. Fiorini and Daniel T ...