Skip to content
This repository has been archived by the owner on Apr 12, 2018. It is now read-only.

Installation

Paul Feuvraux edited this page Dec 4, 2016 · 22 revisions

Requirements

  • MySQL/MariaDB
  • HTTPD Apache, 2.4 preferred
  • PHP 5.6

Procedure

  1. git clone https://github.com/muonium/core.git at the root of your configuration and create a folder called nova at the same level with core.git

| -- root -/core -/nova

  1. create a database named "cloud"
  2. create an user for the "cloud" database, give it all the privileges
  3. configure core/config/confDB.php like this:
<?php
namespace config;
class confDB {
	const identDefaut = "muonium";
	const hostDefaut = "a.b.c.d"; //the ip of the database server, can be localhost/127.0.0.1
	const userDefaut = "user"; //mysql user who have the privileges on the DB "cloud"
	const passDefaut = "password"; //its password
	const bddDefaut = "cloud"; //the DB
};
?>
  1. sign up at http://[...]:[...]/core/
  2. go in the "cloud" database, and go in user_validation, delete the record
  3. go at http://[...]:[...]/core/Logout
  4. close the web browser tab, open a new one and login at http://[...]:[...]/core/
  5. Normally, all is gonna be fine! ❤️
Clone this wiki locally