I’m trying to upgrade an existing project from GC 2.X to enterprise. I followed all the steps correctly (or that’s what I think) But I’m getting the same persistent: “We can’t process the response of the server. Not well JSON formatted response.” error, I’ve tried all the solutions I could find here and in stackoverflow and none of them were of much help. I’m starting to think that is a problem of the database config, but I’ve got another project from the scratch that works perfectly in the same ambient and DDBB configuration: InnoDB, utf8mb4_general_ci collation.
I reduced my code to the simplest:
$crud = $this->_getGroceryCrudEnterprise();
$crud->setTable('table_name');
$output = $crud->render();
return view('minimal', $output);
And still the same error.
Overall everything seems to be fine, routes, paths etc…
Starting to get desperate as deadline is getting shorter