Hi
I’ve previously embedded Cake content into other CMS systems using a mishmash of the default index.php and the following code
use Cake\Network\Request;
use Cake\Network\Response;
use Cake\Routing\DispatcherFactory;
App::uses(‘Dispatcher’, ‘Routing’);
$Dispatcher = new Dispatcher();
$url = “/client/index/”;
$Dispatcher->dispatch(new CakeRequest($url), new CakeResponse(array(‘charset’ => Configure::read(‘App.encoding’))));
which worked great pulling the Cake content in however I’m struggling to convert this over to Http\Server for 3.6/3.7