https://github.com/tomdieu/cms_marie
municipal cms website
https://github.com/tomdieu/cms_marie
css html json mysql mysql-database php
Last synced: 2 months ago
JSON representation
municipal cms website
- Host: GitHub
- URL: https://github.com/tomdieu/cms_marie
- Owner: Tomdieu
- Created: 2022-06-09T20:58:23.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-18T19:35:30.000Z (over 3 years ago)
- Last Synced: 2025-03-23T21:31:50.101Z (over 1 year ago)
- Topics: css, html, json, mysql, mysql-database, php
- Language: CSS
- Homepage:
- Size: 2.26 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TO INSTALL THIS CMS
JUST OPEN THE INDEX PAGE
IF IT DETECTS THAT YOU HAVE NOT INSTALL IT YU WILL BE REDIRECTED TO THE INSTALLATION PAGE
TO CONFIGURE THE DATABASE INFORMATION AND LATER CREATE AN ACCOUNT
CREATE AN ACCOUNT
## TO MODIFY THE DATABASE INFORMATIONS MANUALLY
OPEN THE THE FILE conf.json inside the admin/includes/ folder( `CMS_MARIE/admin/includes/conf.json` )
## inside the json file
set `user_register` to `false`
```json
{
...,
"user_register":false,
....,
}
```
and `already_created` to `false`
this is
```json
{
...,
"already_created":false,
....,
}
```
modify the `name` of your database,an all the rest to your preference an make sure it is a `mysql database`
```json
{
...,
"database": {
"name": "you_data_base_name",
"user": "user_name",
"pswd": "",
"host": "host"
},
...,
}
```
at the end it must look like
```json
{
"database":{
"name":"",
"user":"",
"pswd":"",
"host":""
},
"already_created":false,
"user_register":false,
"website":{
"name":""
}
}
```