luckyshot / CRMx

CRMx is a super-flexible micro-CRM system for personal, freelance and small businesses. It can be customized very quickly for Customer Relationship Management, Lead Management System, Project Management, To-Do List or any other usage due to its flexibility in customization and scalable code. CRMx allows unlimited users to work in the same or different environments very flexibly. CRMx works through a RESTful API which allows third-party services and other software to interact neatly. CRMx also has a User Access Control system (UAC) to define permissions for each user and have maximum control over the organization.
https://xaviesteve.com/
MIT License
101 stars 39 forks source link

You are not logged in or Not Found #8

Open TonY798798 opened 2 years ago

TonY798798 commented 2 years ago

Hello, friends!

please tell me why the code does not run under LAMP , keeps writing: http://192.168.0.198/crmx/ "You are not logged in"

or

http://192.168.0.198/crmx/test/test/ "Not Found"

Why doesn't the code work?

config.php:

option('base_uri', '/crmx/');
define("MYSQL_SERVER", "localhost");
define("MYSQL_USER", "root");
define("MYSQL_PASS", "oko");
define("MYSQL_DATABASE", "crmx");

// Users
$users = array(
// TEST_
array(
'name' => 'test',
'pass' => 'test',
'level' => 'rsdc',
'dbprefix' => 'test_',
'sitename' => 'CRMx Example',
),
);