[PHP] Location header - slow redirect

2003-07-30 Thread admin
I'm using the following short script to redirect users to another page on my site (php 4.3.2, Apache 2.0.47). ?php $goLang='en'; header(Location: http://; . $_SERVER['HTTP_HOST'] . / . $goLang . /); exit; ? I'm having a problem where it takes up to 15 seconds for the redirect page to load, but

Re: [PHP] Location header - slow redirect

2003-07-30 Thread Nicholas Robinson
try putting this after the header: echo HTML/HTML; It forces the redirect to take place immediately (in most cases!). HTH On Wednesday 30 Jul 2003 11:53 am, admin wrote: I'm using the following short script to redirect users to another page on my site (php 4.3.2, Apache 2.0.47). ?php

Re: [PHP] Location header - slow redirect

2003-07-30 Thread Phill Ashworth
Excellent, that does the trick. Thank you Phil On Mercoledì, lug 30, 2003, at 13:56 Europe/Rome, Nicholas Robinson wrote: try putting this after the header: echo HTML/HTML; It forces the redirect to take place immediately (in most cases!). HTH On Wednesday 30 Jul 2003 11:53 am, admin wrote: