1
I have a form on which I upload. And sometimes the upload file is large. My site is on AWS using Load Balancer.
Load Balancer expects a response from the request at a given time. However, the request is POST.
How do I make to print in Blade what is being done?
In traditional PHP I would use the ob_flush()
, flush()
.
But in Laravel I couldn’t reproduce it.
In case it would be with PHP FPM or normal PHP?
– Wallace Maxters
PHP is normal without FPM.
– Diego Souza
I did an implementation like that, man. If you want to take a look at my gist
– Wallace Maxters