Skip to content

n2ref/core2

 
 

Repository files navigation

core2

PHP framework for business application.

NOTE: Currently it's russian framework. So you'll get no way to translate any inner locutions. In the future the translator will be available as a system module.

Minimum Server Requirements

  • PHP 7.4 or greater
  • PDO PHP extension
  • MySQL or PostgreSQL Database
  • composer for dependencies

Installation

  1. Put the source code into core2 folder anywhere on your server.
  2. Create MySQL schema with db.sql
  3. Create admin user with the same password.
 INSERT INTO `core_users` (`u_login`, `u_pass`, `visible`, `is_admin_sw`, `date_added`) VALUES ('admin', 'ad7123ebca969de21e49c12a7d69ce25', 'Y', 'Y', NOW());
  1. Create index.php file anywhere inside the document root. Make sure that core2 folder is available from its place.
 try {
 	require_once("core2/inc/classes/Error.php");
 	require_once("core2/inc/classes/Init.php");

 	$init = new Init();
 	$init->checkAuth();

 	echo $init->dispatch();
 } catch (Exception $e) {
 	\Core2\Error::catchException($e);
 }
  1. Create conf.ini file near the index.php
 [production]
 database.params.host      = localhost
 database.params.port      = 3306
 database.params.dbname    = <database name>
 database.params.username  = <database user>
 database.params.password  = <user password>

Usage

Open URL of new index.php file in your browser. Use 'admin' username and 'admin' password.

Support

PhpStorm

Packages

No packages published

Languages

  • PHP 53.6%
  • JavaScript 20.8%
  • CSS 16.0%
  • HTML 6.6%
  • Smarty 3.0%