Cakephp 3 Response WithFile And Video Tag
I've used this code to send a video using an action in CakePHP: $response = $this->response->withFile(WWW_ROOT.'Component.webm',['download' => false]); and inside templat
Solution 1:
I found the problem here: https://gist.github.com/ranacseruet/9826293#gistcomment-2141349
I used session_write_close();
on top of my action and now chrome works too.
Post a Comment for "Cakephp 3 Response WithFile And Video Tag"