I've used phalcon 3.x a while. and i'm planning to switch to 4.0. But i'm facing problem regarding baseUri
My project is inside a webroot folder.
/webroot
/project
Using phalcon 3.4, it workes just fine, when i open
but when i use phalcon 4.0 an error occured
ProjectController handler class cannot be loaded
i have set
baseUri = /project/
but still not working
is this related to the
$router->handle($_SERVER['REQUEST_URI']);
or
$application->handle($_SERVER['REQUEST_URI'])->getContent();
?
how should i fix this ?