[Vuejs]-Laravel 5.6 – Timeout error after framework update

0👍

Thanks to @migser from Slack official channel, I found the cause.

No update of any sort ruined my stack, but a bad use of touches array inside both two hasMany related models were freezing the called tasks.

By removing the wrong touches declaration – the one present inside model with relation declaration – all crud tasks works fine again.

Thanks everyone for the tips and help.

0👍

Try modify your php.ini and add this:

ini_set('max_execution_time', 300);

or

In your .htaccess

php_value max_execution_time 300

then:

composer dump-autoload

php artisan cache:clear

Finally, you should test it again.

Leave a comment