st0at

Results 3 comments of st0at

I got the same issue, I'm using Symfony 3.4 and Nelmio Cors 1.5.6. I think this is related to: https://github.com/nelmio/NelmioCorsBundle/issues/124 @Seldaek is this issue fixed in new Nelmio Cors version...

are you sure that `grunt.registerTask('cacheBust', ['cacheBust']); ` is necessary? Because for me it works without it.

@twisted1919 for now for such problem I used such solution: ```php class JsonModel extends ActiveRecord { public function beforeSave($insert) { $this->json_field = json_encode($this->json_field); return parent::beforeSave($insert); } public function afterFind() {...