Now I see that the browser loads the pages all-at-a-time instead of bit-by-bit as before. So before you could see the page load bit-by-bit but now you just see the page as a whole with no loading. How can I get it to load bit-by-bit like before ?
I see that the pages headers have changed since now there are 2 more:
Cache-Control
Expires
I have tried to fix this by:
1. placing session.cache_limiter = public inside php.ini
2. placing these headers inside every page that has sessions but there has been no effect
Code: Select all
header('Cache-Control: public');
header('Expires: none');