Hi everyone !
I’ve just created a fresh CakePHP project and then ran the built-in PHP server :
> composer create-project --prefer-dist cakephp/app:~4.0 PhpApp
> bin\cake server
When I go to http://localhost:8765/, I get :
The datasource configuration debug_kit was not found in config\app.php.
Do you have an Idea why ?
EDIT : after many searches on the web I found the solution.
You have to activate / install the sqlite3 extension.
On windows just get your php.ini file and remove the “;” on extension=sqlite3, then save and relaunch your server (this will reload the php.ini file)