Jump to content

ob_start() Alternative


php4ever

Recommended Posts

I'm using ob_start(); in a script as follows for redirect and I'm seeking an alternative that can work from the shell

 

<?php

ob_start();

 

// MY Script here

 

sleep(10);

header ("Location: http://www.jaredritchey.com/project/testing/steptwo.php");

ob_flush();

?>

 

This works fine however when I move it to the root of my server there is no way to use the browser direct obviously but there must be an alternative.

 

I could setup two CRONs but the problem is that the first script processes a CSV file and the size changes frequently so the time would also change.

 

Any assistance is appreciated.

 

THX, Jared.

 

 

Link to comment
https://forums.phpfreaks.com/topic/158484-ob_start-alternative/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.