freeloader Posted January 21, 2007 Share Posted January 21, 2007 Hi guys,I have wampserver installed at home for testing purposes, and a real webserver for the real stuff.When I run my php scripts at home, it runs the script for 10 minutes, and sends all the output when it's done. When I run on webserver, it gives output 'live' when it's doing the action.Any way I can change this?edit: change as in: make my homeserver give the output on the road :)Thanks in advance. Link to comment https://forums.phpfreaks.com/topic/35026-delayed-output-on-home-server/ Share on other sites More sharing options...
Jessica Posted January 21, 2007 Share Posted January 21, 2007 What about using ob_start() and ob_flush(), etc? Link to comment https://forums.phpfreaks.com/topic/35026-delayed-output-on-home-server/#findComment-165189 Share on other sites More sharing options...
freeloader Posted January 21, 2007 Author Share Posted January 21, 2007 A friend of mine just provided me with the solution.In php.ini, I had to change these values to:output_buffering = 0implicit_flush = onThanks jesirose for the proposed solution, i had already tried it, but the result was pretty similar to my first problem. Link to comment https://forums.phpfreaks.com/topic/35026-delayed-output-on-home-server/#findComment-165191 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.