All Projects → artemmelnik → Flexicms

artemmelnik / Flexicms

Licence: gpl-3.0
Flexible site management system Flexi CMS

Projects that are alternatives of or similar to Flexicms

Elefant
Elefant, the refreshingly simple PHP CMS and web framework.
Stars: ✭ 188 (+208.2%)
Mutual labels:  cms, orm, framework, mvc
Ouzo
Ouzo Framework - PHP MVC ORM
Stars: ✭ 66 (+8.2%)
Mutual labels:  orm, framework, mvc
Ubiquity
Ubiquity framework
Stars: ✭ 480 (+686.89%)
Mutual labels:  orm, framework, mvc
Latke
🌀 一款以 JSON 为主的 Java Web 框架。
Stars: ✭ 781 (+1180.33%)
Mutual labels:  orm, framework, mvc
Bancha
Bancha is an open-source CMS made by Nicholas Valbusa written in PHP5.3.
Stars: ✭ 76 (+24.59%)
Mutual labels:  cms, codeigniter, mvc
Bast
Simple but Elegant Web Framework
Stars: ✭ 49 (-19.67%)
Mutual labels:  orm, framework, mvc
Wp Multitenancy Boilerplate
WordPress multitenancy boilerplate configured and managed with Composer and PHP dotenv.
Stars: ✭ 24 (-60.66%)
Mutual labels:  cms, framework
Pro
ECStore Pro - Laravel 微信网店微服务框架
Stars: ✭ 14 (-77.05%)
Mutual labels:  cms, framework
Recife
A powerful MVC Framework for GraphQL
Stars: ✭ 20 (-67.21%)
Mutual labels:  framework, mvc
Decko
Start with a deck of wiki cards. Develop it into a rich web app.
Stars: ✭ 37 (-39.34%)
Mutual labels:  cms, framework
Sylar
C++高性能分布式服务器框架,webserver,websocket server,自定义tcp_server(包含日志模块,配置模块,线程模块,协程模块,协程调度模块,io协程调度模块,hook模块,socket模块,bytearray序列化,http模块,TcpServer模块,Websocket模块,Https模块等, Smtp邮件模块, MySQL, SQLite3, ORM,Redis,Zookeeper)
Stars: ✭ 895 (+1367.21%)
Mutual labels:  orm, framework
Turbulette
😴 Turbulette - A batteries-included framework to build high performance, fully async GraphQL APIs
Stars: ✭ 29 (-52.46%)
Mutual labels:  orm, framework
Dnnextensions
One solution. Multiple extensions. No pain. A collection of DNN modules and other extensions.
Stars: ✭ 37 (-39.34%)
Mutual labels:  cms, modules
Furion
Make .NET development easier, more versatile, and more popular.
Stars: ✭ 902 (+1378.69%)
Mutual labels:  framework, mvc
Intellij jahia plugin
Jahia's definitions.cnd files syntax highlighting, code completion, and other amazing stuff
Stars: ✭ 19 (-68.85%)
Mutual labels:  cms, framework
Ffcms
FFCMS 3 project distributive
Stars: ✭ 15 (-75.41%)
Mutual labels:  cms, mvc
Framework
High-Performance Long-Living PHP Framework for modern enterprise application development
Stars: ✭ 895 (+1367.21%)
Mutual labels:  orm, framework
Jcnavigator
A decoupled navigator framework of jumping between modules or apps for iOS development.
Stars: ✭ 33 (-45.9%)
Mutual labels:  framework, modules
Fancy
Fancy is a drop-in system that lets you take your static HTML code and add dynamically editable code.
Stars: ✭ 40 (-34.43%)
Mutual labels:  cms, framework
Phaser Node Kit
Rapid Game Development with PhaserJS and Node for Modern Browsers
Stars: ✭ 39 (-36.07%)
Mutual labels:  framework, modules

HMVC FlexiCMS

HMVC Flexible site management system

Installation

  1. We clone the repository.
  2. Extract the files to the root directory of the site.
  3. Create a database and import into it dump flexicms.sql
  4. In the files (/config/database.php) we specify the connection parameters.
git clone https://github.com/artemmelnik/flexicms.git name_project

Next...

composer update

OR

php composer.phar update

Import db

php run db:import

Start dev server

php run server:start

Example /config/database.php

<?php
return [
    'host'     => 'localhost',
    'db_name'  => 'cms',
    'username' => 'root',
    'password' => '',
    'charset'  => 'utf8'
];

Insert admin

Email: [email protected] Password: 1111

INSERT INTO user
(email, password, role, hash)
VALUES ('[email protected]', 'b59c67bf196a4758191e42f76670ceba', 'admin', 'new')
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].