Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'The parameter "debug.error_handler.throw_at" must be defined' error after updating to Symfony 2.6

Tags:

symfony

After updating Symfony with Composer to version 2.6 it gives this error:

[Symfony\Component\DependencyInjection\Exception\InvalidArgumentException] The parameter "debug.error_handler.throw_at" must be defined.

like image 969
Alex Belyaev Avatar asked Nov 30 '14 16:11

Alex Belyaev


1 Answers

manualy clear application cache - remove all files in /app/cache: rm -r app/cache/*

and then warmup cache for needed environment like that:

app/console cache:warmup --env=prod

like image 151
Alex Belyaev Avatar answered Oct 21 '22 22:10

Alex Belyaev