[RESOLVED] Persistent Not well formatted JSON response

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

Seems that my problem is that I’ have a couple of projects running at the same time in my server with just one composer instance. I’ll try to sort it out isolating my developing environment in separated boxes (when I have time, that my current job doesn’t allow) and come back here to give everyone some feedback about this issue.

Thanks everybody