https://github.com/artemmelnik/flexicms
Flexible site management system Flexi CMS
https://github.com/artemmelnik/flexicms
cms codeigniter framework hmvc modules mvc orm pdo php php7 psr
Last synced: 12 days ago
JSON representation
Flexible site management system Flexi CMS
- Host: GitHub
- URL: https://github.com/artemmelnik/flexicms
- Owner: artemmelnik
- License: gpl-3.0
- Created: 2017-09-19T16:32:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T19:20:57.000Z (about 2 years ago)
- Last Synced: 2025-03-25T19:14:56.428Z (30 days ago)
- Topics: cms, codeigniter, framework, hmvc, modules, mvc, orm, pdo, php, php7, psr
- Language: PHP
- Homepage:
- Size: 7.47 MB
- Stars: 70
- Watchers: 17
- Forks: 36
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```
'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')
```