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.
- Put the sources inside core2 folder anywhere on your server.
- Create MySQL schema with db.sql
- Create admin user with the same password.
INSERT INTO `core_users` (`u_login`, `u_pass`, `visible`, `is_admin_sw`) VALUES ('admin', 'ad7123ebca969de21e49c12a7d69ce25', 'Y', 'Y');
- Create index.php file. 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) {
Error::catchException($e);
}
- 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 = admin
database.params.password = admin