Domanda

I have a following issue: if I try to delete something in sonata admin in prod enviroment after confirmation screen and pressing "yes, delete" nothing happens. In dev everything works fine. Could it be a caching issue? Any settings I could try?

È stato utile?

Soluzione

The problem is in the code that detecting the request method. It should detect DELETE method but it detects all delete operations as POST method instead.

Add this line of code in your app.php to fix this:

Request::enableHttpMethodParameterOverride();

it can be after $request = Request::createFromGlobals();

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top