Jump to content

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

Huh? Redirects only work in browser. When run from shell it will not work...

 

You want to call another script when the first one finishes? Why not just require it? Or perhaps use execution operator ``

http://www.php.net/language.operators.execution

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.