Re: [PHP] redirect a shell command to stdout in real time

2012-09-11 Thread shiplu
You can use pipe to run the command and capture the stdout. Then dump it with proper header to browser. Note, If the external command (specially video encoding) takes long time you should probably use cron for this and maintain a queue. I recommend you apply some sorts of caching also. -- Shiplu

Re: [PHP] Redirect output to a file on the web server

2010-12-06 Thread Steve Staples
On Mon, 2010-12-06 at 16:19 +, Richard Quadling wrote: > On 6 December 2010 15:46, Ferdi wrote: > > On 6 December 2010 20:47, Steve Staples wrote: > > > >> On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote: > >> > Greetings List members, > >> > > >> > I have a script that takes quite a while to

Re: [PHP] Redirect output to a file on the web server

2010-12-06 Thread Richard Quadling
On 6 December 2010 15:46, Ferdi wrote: > On 6 December 2010 20:47, Steve Staples wrote: > >> On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote: >> > Greetings List members, >> > >> > I have a script that takes quite a while to run, one or two hours, I wish >> to >> > redirect the normal php output t

Re: [PHP] Redirect output to a file on the web server

2010-12-06 Thread Ferdi
On 6 December 2010 20:47, Steve Staples wrote: > On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote: > > Greetings List members, > > > > I have a script that takes quite a while to run, one or two hours, I wish > to > > redirect the normal php output to a file on the webserver itself. I don't > > min

Re: [PHP] Redirect output to a file on the web server

2010-12-06 Thread Steve Staples
On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote: > Greetings List members, > > I have a script that takes quite a while to run, one or two hours, I wish to > redirect the normal php output to a file on the webserver itself. I don't > mind if in the process, the browser displays a blank page. The re

Re: [PHP] Redirect to

2010-06-10 Thread Ashley Sheridan
On Thu, 2010-06-10 at 21:06 +0300, Ahmed Mohsen wrote: > Hi folks, > I know that this is not a php question, but I'm sure it some kind > related to it. I need to put my public files under "public" folder, and > other includes files and database config in other folder not shown to > the public,

Re: [PHP] Redirect to

2010-06-10 Thread Daniel P. Brown
On Thu, Jun 10, 2010 at 14:06, Ahmed Mohsen wrote: [snip!] > > I don't want to enter (example.com/public) to view index.php file.  I just > want to enter (example.com) and it redirects to the public folder and shows > only (example.com/index.php) in the URL.  And for login.php should display > (ex

Re: [PHP] Redirect not working on server

2009-06-03 Thread Ashley Sheridan
On Tue, 2009-06-02 at 20:43 -0700, revDAVE wrote: > Thank you Jay - Shawn & Paul for helping this newbie! > > > -- > Thanks - RevDave > Cool @ hosting4days . com > [db-lists 09] > > > > Also, according to the spec, the URL should be in absolute form, not relative like you have there. Ash ww

Re: [PHP] Redirect not working on server

2009-06-02 Thread revDAVE
Thank you Jay - Shawn & Paul for helping this newbie! -- Thanks - RevDave Cool @ hosting4days . com [db-lists 09] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Redirect not working on server

2009-06-02 Thread Paul M Foster
On Tue, Jun 02, 2009 at 11:50:55AM -0700, revDAVE wrote: > I have this line at the end of 1 big php block... > > header('Location: mypage.php?id=' . > $_SESSION['id'].'&cat='.$_SESSION['cat']); > > It works fine on my dev. Testing server but does not forward on the actual > website > > Any

Re: [PHP] Redirect not working on server

2009-06-02 Thread Shawn McKenzie
revDAVE wrote: > I found the answer here - I had --- whitespace & ... if > Location: http://www.phpbuilder.com/board/showthread.php?t=10310794 > > Blank space above the php tag or below the final php tag > It is not intuitive but ... > > if can cause problems such as the php header function no

Re: [PHP] Redirect not working on server

2009-06-02 Thread revDAVE
I found the answer here - I had --- whitespace & ... if http://www.phpbuilder.com/board/showthread.php?t=10310794 Blank space above the php tag or below the final php tag It is not intuitive but ... if http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Redirect not working on server

2009-06-02 Thread revDAVE
On 6/2/2009 12:41 PM, "revDAVE" wrote: >> [snip] >> I have this line at the end of 1 big php block... >> >> header('Location: mypage.php?id=' . >> $_SESSION['id'].'&cat='.$_SESSION['cat']); >> >> It works fine on my dev. Testing server but does not forward on the >> actual >> website >> >>

Re: [PHP] Redirect not working on server

2009-06-02 Thread revDAVE
On 6/2/2009 12:04 PM, "Jay Blanchard" wrote: > [snip] > I have this line at the end of 1 big php block... > > header('Location: mypage.php?id=' . > $_SESSION['id'].'&cat='.$_SESSION['cat']); > > It works fine on my dev. Testing server but does not forward on the > actual > website > > Any

RE: [PHP] Redirect not working on server

2009-06-02 Thread Jay Blanchard
[snip] I have this line at the end of 1 big php block... header('Location: mypage.php?id=' . $_SESSION['id'].'&cat='.$_SESSION['cat']); It works fine on my dev. Testing server but does not forward on the actual website Any way to fix this? [/snip] The first thing that you will want to do is

Re: [PHP] redirect to a page the fist time a site is accessed

2009-04-16 Thread Clancy
On Thu, 16 Apr 2009 09:26:52 -0500, nos...@mckenzies.net (Shawn McKenzie) wrote: >Stuart wrote: >> 2009/4/15 Don : >>> I have some code in my index.php file that check the user agent and >>> redirects to a warning page if IE 6 or less is encountered. >>> >>> 1. I'm using a framework and so calls t

Re: [PHP] redirect to a page the fist time a site is accessed

2009-04-16 Thread Shawn McKenzie
Stuart wrote: > 2009/4/15 Don : >> I have some code in my index.php file that check the user agent and >> redirects to a warning page if IE 6 or less is encountered. >> >> 1. I'm using a framework and so calls to all pages go through index.php >> 2. The code that checks for IE 6 or less and redirec

Re: [PHP] redirect to a page the fist time a site is accessed

2009-04-16 Thread Igor Escobar
I Agree with @stuart. Regards, Igor Escoar Systems Analyst & Interface Designer -- Personal Blog ~ blog.igorescobar.com Online Portifolio ~ www.igorescobar.com Twitter ~ @igorescobar On Thu, Apr 16, 2009 at 6:05 AM, Stuart wrote: > 2009/4/15 Don : > > I have some code in my index.php fil

Re: [PHP] redirect to a page the fist time a site is accessed

2009-04-16 Thread Stuart
2009/4/15 Don : > I have some code in my index.php file that check the user agent and > redirects to a warning page if IE 6 or less is encountered. > > 1. I'm using a framework and so calls to all pages go through index.php > 2. The code that checks for IE 6 or less and redirects is in index.php >

RE: [PHP] redirect to a page the fist time a site is accessed

2009-04-16 Thread Jencisson Tsu
hey,boy, i think you should use datebase to store user status,use user's internet-ip and intranet-ip to idenification. > To: php-general@lists.php.net > From: d...@program-it.ca > Date: Wed, 15 Apr 2009 16:20:05 -0400 > Subject: Re: [PHP] redirect to a page the fist time a

Re: [PHP] redirect to a page the fist time a site is accessed

2009-04-15 Thread Don
"Andrew Ballard" wrote in message news:b6023aa40904150926g3e6fb478s36b18b6a53ec3...@mail.gmail.com... On Tue, Apr 14, 2009 at 10:30 PM, Jason Pruim wrote: > > > On Apr 14, 2009, at 10:11 PM, "Don" wrote: > >> Hi, >> >> I have some code in my index.php file that check the user agent and >> redi

Re: [PHP] redirect to a page the fist time a site is accessed

2009-04-15 Thread Andrew Ballard
On Tue, Apr 14, 2009 at 10:30 PM, Jason Pruim wrote: > > > On Apr 14, 2009, at 10:11 PM, "Don" wrote: > >> Hi, >> >> I have some code in my index.php file that check the user agent and >> redirects to a warning page if IE 6 or less is encountered. >> >> 1. I'm using a framework and so calls to al

Re: [PHP] redirect to a page the fist time a site is accessed

2009-04-14 Thread Jason Pruim
On Apr 14, 2009, at 10:11 PM, "Don" wrote: Hi, I have some code in my index.php file that check the user agent and redirects to a warning page if IE 6 or less is encountered. 1. I'm using a framework and so calls to all pages go through index.php 2. The code that checks for IE 6 or less

Re: [PHP] redirect to a page the fist time a site is accessed

2009-04-14 Thread Chris
Don wrote: Hi, I have some code in my index.php file that check the user agent and redirects to a warning page if IE 6 or less is encountered. 1. I'm using a framework and so calls to all pages go through index.php 2. The code that checks for IE 6 or less and redirects is in index.php I know

Re: [PHP] Redirect after pdf / file download

2008-06-12 Thread Philip Thompson
On Jun 12, 2008, at 8:32 AM, Bastien Koert wrote: On Thu, Jun 12, 2008 at 7:46 AM, Yashesh Bhatia <[EMAIL PROTECTED]> wrote: What about doing it the other way ... submitting the page to a script that calls on the pdf creation, yet doesnt leave this script - then proceed to redirect when

Re: [PHP] Redirect after pdf / file download

2008-06-12 Thread Jim Lucas
Yashesh Bhatia wrote: What about doing it the other way ... submitting the page to a script that calls on the pdf creation, yet doesnt leave this script - then proceed to redirect when that script (pdf) has been completed? S steven: the steps u'r suggesting are 1 - submit form (1.html)

Re: [PHP] Redirect after pdf / file download

2008-06-12 Thread Nitsan Bin-Nun
You are totally in the wrong way. I would use an tag and onclick property for opening the PDF in popup & relocating the current page HTH Nitsan On 12/06/2008, Yashesh Bhatia <[EMAIL PROTECTED]> wrote: > > Hello: > >I'm trying to emulate a problem i'm trying to solve as follows. > > 1 - user

Re: [PHP] Redirect after pdf / file download

2008-06-12 Thread Bastien Koert
On Thu, Jun 12, 2008 at 7:46 AM, Yashesh Bhatia <[EMAIL PROTECTED]> wrote: > > > > What about doing it the other way ... submitting the page to a script > > that calls on the pdf creation, yet doesnt leave this script - then > > proceed to redirect when that script (pdf) has been completed? > > >

Re: [PHP] Redirect after pdf / file download

2008-06-12 Thread Yashesh Bhatia
> > What about doing it the other way ... submitting the page to a script > that calls on the pdf creation, yet doesnt leave this script - then > proceed to redirect when that script (pdf) has been completed? > > S > steven: the steps u'r suggesting are 1 - submit form (1.html) to script (2.

Re: [PHP] Redirect after pdf / file download

2008-06-12 Thread Steven Macintyre
On Thu, 2008-06-12 at 16:27 +0530, Yashesh Bhatia wrote: > Aschwin: > > Hi i tried > > -- > //echo ''; > //echo 'window.location.href="3.html";'; > //echo ''; > header("Location: 3.html"); > exit; > -

Re: [PHP] Redirect after pdf / file download

2008-06-12 Thread Yashesh Bhatia
Aschwin: Hi i tried -- //echo ''; //echo 'window.location.href="3.html";'; //echo ''; header("Location: 3.html"); exit; -- but that did not work :(. thanks for the tip. yashesh b

Re: [PHP] Redirect after pdf / file download

2008-06-12 Thread Aschwin Wesselius
Yashesh Bhatia wrote: Hello: I'm trying to emulate a problem i'm trying to solve as follows. 1 - user enters information into a html form and submits 2 - a php script is invoked on the submit and a pdf file is stamped and made available for download 3 - the script finally redirects the user

Re: [PHP] redirect stdout to stderr

2008-02-22 Thread Bojan Tesanovic
Hi Jack, here is a link that can be of help http://bugs.php.net/bug.php?id=22839 also you can use custom error handler function , catch errors and write to stderr function myErrorHandler($errno, $errstr, $errfile, $errline) { $ERROR=''; switch ($errno) { case E_USER_ERROR

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Neo [GC]
Ah, i thought to remember that the limit is lower on IIS than on Apache, maybe i've just some memory faults. ;) GET is meant to define what to GET, not to define content. This sounds a bit academic, but remember that the GET-args are a part of the URI and so will also go into the http-log for

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Daniel Brown
If it's on the same domain/user account, that's probably a better idea but with $data['rurl'] being used, I'm (ignorantly) assuming that RURL = Remote URL. On 5/3/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Thu, May 3, 2007 9:26 am, Merlin wrote: > I am checking plausability inside a

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Daniel Brown
Beating a dead horse here, since it's been mentioned twice already, but yeah --- $_SESSION's are the way to go with this. And wherever you have your error handling, do: And for the record, it's not just the HTTP server that trims it, but the browser generally does, as well, to avoid

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Richard Lynch
On Thu, May 3, 2007 9:26 am, Merlin wrote: > I am checking plausability inside a php script that receives a POST > submit. If an error occures the user should be redirected back, along > with his original data filled into the forms. > > There is a problem with this. As the GET method, which the red

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Stut
Merlin wrote: I am checking plausability inside a php script that receives a POST submit. If an error occures the user should be redirected back, along with his original data filled into the forms. There is a problem with this. As the GET method, which the redirect is using, only allows a cer

Re: [PHP] Redirect via GET is loosing characters

2007-05-03 Thread Neo [GC]
Merlin schrieb: Hi there, I am checking plausability inside a php script that receives a POST submit. If an error occures the user should be redirected back, along with his original data filled into the forms. There is a problem with this. As the GET method, which the redirect is using, onl

Re: [PHP] redirect with header still not working

2007-04-17 Thread Ross
Thanks all I manged to fix it. The headers were already sent by a validation class I was using and needed a bit of output buffering to get it working. R. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] redirect with header still not working

2007-04-17 Thread Richard Lynch
On Tue, April 17, 2007 10:02 am, Ross wrote: > Right, > > Have tried the full url for the header and it still doesn't work. I > may have > to resort to...javacript redirects unless someone can suggest a way > around > it. > > Here is the phpinfo(); > > http://s202801613.websitehome.co.uk/info.php >

Re: [PHP] redirect with header still not working

2007-04-17 Thread Chris Shiflett
Ross wrote: > Have tried the full url for the header and it still doesn't work. I forget what your exact issue is, but a good first step to take when debugging a problem with header() is to replace it with echo. For example: echo "Location: $url"; Instead of: header("Location: $url"); Almost e

Re: [PHP] redirect with header still not working

2007-04-17 Thread Jim Lucas
Ross wrote: Right, Have tried the full url for the header and it still doesn't work. I may have to resort to...javacript redirects unless someone can suggest a way around it. Here is the phpinfo(); http://s202801613.websitehome.co.uk/info.php Is is 1and1 hosting if anyone had had any expe

Re: [PHP] redirect with header still not working

2007-04-17 Thread Jim Lucas
Ross wrote: Right, Have tried the full url for the header and it still doesn't work. I may have to resort to...javacript redirects unless someone can suggest a way around it. Here is the phpinfo(); http://s202801613.websitehome.co.uk/info.php Is is 1and1 hosting if anyone had had any expe

RE: [PHP] redirect with header still not working

2007-04-17 Thread Jim Moseby
> > Have tried the full url for the header and it still doesn't > work. I may have > to resort to...javacript redirects unless someone can suggest > a way around > it. > > Here is the phpinfo(); > > http://s202801613.websitehome.co.uk/info.php > > > Is is 1and1 hosting if anyone had had an

Re: [PHP] redirect with header still not working

2007-04-17 Thread Dave Goodchild
That is, unless you use output buffering. It may not be the most elegant solution (using header() to redirect users increases server calls), but I built a template-driven php site that calls: ...depending on certain conditions which means I can then use header() even after I have started output

Re: [PHP] redirect with header still not working

2007-04-17 Thread Dave Goodchild
Can you re-iterate what is happening - I have a site with 1and1 and use header() with no issues.

Re: [PHP] redirect http to https

2007-04-10 Thread Richard Lynch
On Mon, April 9, 2007 8:38 am, Martin Marques wrote: > Ben Liu escribió: >> What's the prescribed method for redirecting a user forcibly to from >> the >> non-SSL secured version of a page to the SSL-secured version? Is >> this >> handled at the web server level or at the script level. I found this

Re: [PHP] redirect http to https

2007-04-10 Thread Jason Karns
On 4/10/07, Zoltán Németh <[EMAIL PROTECTED]> wrote: I have separate document roots for the http and the https stuff, say "htdocs" and "htdocs-secure" - this can be done with apache configuration then I need only to put a single redirecting line into the htdocs/index.php like https://my.server.c

Re: [PHP] redirect http to https

2007-04-10 Thread Zoltán Németh
I have separate document roots for the http and the https stuff, say "htdocs" and "htdocs-secure" - this can be done with apache configuration then I need only to put a single redirecting line into the htdocs/index.php like https://my.server.com/";); ?> and that's all greets Zoltán Németh 2007.

Re: [PHP] redirect http to https

2007-04-10 Thread Chris
{header("Location: https://".$_SERVER['SERVER_NAME'].$_SERVER['SCRIPT_NAME']);exit;} ?> Very bad solution. Don't just tell us it's bad, explain why (even with an RTFM or URL to look at)... nobody learns from an answer like this. The only thing I can think of is that $_SERVER variables c

Re: [PHP] redirect http to https

2007-04-09 Thread Ben Liu
On 4/9/07, Peter Lauri <[EMAIL PROTECTED]> wrote: You might be able to do this by putting an .htaccess file in your webroot of non-ssl: -- RewriteEngine On RewriteRule ^/(.*)$ https://www.yourdomain.com/$1 [L] -- This appears to work: RewriteEngine On RewriteCond %{SERVER_PORT} !^44

RE: [PHP] redirect http to https

2007-04-09 Thread Peter Lauri
> -Original Message- > From: Ben Liu [mailto:[EMAIL PROTECTED] > Sent: Monday, April 09, 2007 3:52 PM > To: Martin Marques; PHP > Subject: Re: [PHP] redirect http to https > > On 4/9/07, Martin Marques wrote: > > > > > This should be done with the re

Re: [PHP] redirect http to https

2007-04-09 Thread Tijnema !
On 4/9/07, Ben Liu <[EMAIL PROTECTED]> wrote: What's the prescribed method for redirecting a user forcibly to from the non-SSL secured version of a page to the SSL-secured version? Is this handled at the web server level or at the script level. I found this by googling: https://".$_SERVER['SERVE

Re: [PHP] redirect http to https

2007-04-09 Thread edwardspl
Ben Liu wrote: > On 4/9/07, Martin Marques wrote: > >> >> This should be done with the rewrite instruction of apache, or what ever >> instructionyour web server has. > > > Um...guess I will have to check with our hosting company about this. > Thanks. > > - Ben > Hello, FYI : https://www.yourdom

Re: [PHP] redirect http to https

2007-04-09 Thread Ben Liu
On 4/9/07, Martin Marques wrote: This should be done with the rewrite instruction of apache, or what ever instructionyour web server has. Um...guess I will have to check with our hosting company about this. Thanks. - Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vis

Re: [PHP] redirect http to https

2007-04-09 Thread Martin Marques
Ben Liu escribió: What's the prescribed method for redirecting a user forcibly to from the non-SSL secured version of a page to the SSL-secured version? Is this handled at the web server level or at the script level. I found this by googling: This should be done with the rewrite instruction o

Re: [PHP] redirect http to https

2007-04-09 Thread edwardspl
Ben Liu wrote: > What's the prescribed method for redirecting a user forcibly to from > the non-SSL secured version of a page to the SSL-secured version? Is > this handled at the web server level or at the script level. I found > this by googling: > > if($_SERVER['SERVER_PORT'] !== $encport || $_

Re: [Fwd: Re: [PHP] redirect using php]

2006-04-05 Thread Schalk
Thanks everyone for your help. In the end the simplest one that works for this specific project was: echo ""; Andrei wrote: Andrei wrote: It works with document.location = '...'; too. I use only this method and it worked on all browsers... Assuming the end user has JS turned on. JS an

[Fwd: Re: [PHP] redirect using php]

2006-04-05 Thread Andrei
Andrei wrote: It works with document.location = '...'; too. I use only this method and it worked on all browsers... Assuming the end user has JS turned on. JS and Meta Refreshes are not acceptable when you need to be sure the redirect works. Depends on your user target... I gener

Re: [PHP] redirect using php

2006-04-05 Thread John Nichel
Andrei wrote: It works with document.location = '...'; too. I use only this method and it worked on all browsers... Assuming the end user has JS turned on. JS and Meta Refreshes are not acceptable when you need to be sure the redirect works. -- John C. Nichel IV Programmer/System Admin

Re: [PHP] redirect using php

2006-04-05 Thread Mark Kelly
On Wednesday 05 April 2006 14:33, Chris Shiflett wrote: > Mark Kelly wrote: > > > > You can also use something like: > > > > > > > > echo ""; > > > > > > There's no need to use a meta tag to mimic HTTP headers. PHP > > > provides the header() function. > > > > I have been using that method when I g

Re: [PHP] redirect using php

2006-04-05 Thread Thomas Munz
; header('location: ' . $url); > die(); > } > } > ?> > > HTH > > Dan > > - > Dan Parry > Senior Developer > Virtua Webtech Ltd > http://www.virtuawebtech.co.uk > > -Original M

Re: [PHP] redirect using php

2006-04-05 Thread Chris Shiflett
Mark Kelly wrote: > > You can also use something like: > > > > echo ""; > > There's no need to use a meta tag to mimic HTTP headers. PHP > provides the header() function. I have been using that method when I got part-way through some processing that produces output, and hit something that requir

Re: [PHP] redirect using php

2006-04-05 Thread tedd
At 11:21 PM +0200 4/4/06, Schalk wrote: Greetings All, In JSP I have access to a function called sendRedirect() to send a user from one page to another, usually after some processing completed. Is there a similar function in PHP? After processing a form and sending the data via email, I need

RE: [PHP] redirect using php

2006-04-05 Thread Dan Parry
Senior Developer Virtua Webtech Ltd http://www.virtuawebtech.co.uk -Original Message- From: Mark Kelly [mailto:[EMAIL PROTECTED] Sent: 05 April 2006 14:19 To: php-general@lists.php.net Subject: Re: [PHP] redirect using php On Wednesday 05 April 2006 13:55, Chris Shiflett wrote: > Mar

Re: [PHP] redirect using php

2006-04-05 Thread Mark Kelly
On Wednesday 05 April 2006 13:55, Chris Shiflett wrote: > Mark Kelly wrote: > > You can also use something like: > > > > echo ""; > > There's no need to use a meta tag to mimic HTTP headers. PHP provides > the header() function. I have been using that method when I got part-way through some proces

Re: [PHP] redirect using php

2006-04-05 Thread Chris Shiflett
Mark Kelly wrote: You can also use something like: echo ""; There's no need to use a meta tag to mimic HTTP headers. PHP provides the header() function. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] redirect using php

2006-04-05 Thread Andrei
It works with document.location = '...'; too. I use only this method and it worked on all browsers... Andy Barry wrote: Andrei wrote: document.location = 'http://where.to.go.com/example.php?param1='; Wasn't it -> document.location.href ='www.example.com'; o_O ? Barry -- PHP Gene

Re: [PHP] redirect using php

2006-04-05 Thread Barry
Andrei wrote: document.location = 'http://where.to.go.com/example.php?param1='; Wasn't it -> document.location.href ='www.example.com'; o_O ? Barry -- Smileys rule (cX.x)C --o(^_^o) Dance for me! ^(^_^)o (o^_^)o o(^_^)^ o(^_^o) -- PHP General Mailing List (http://www.php.net/) To unsubscri

Re: [PHP] redirect using php

2006-04-05 Thread Andrei
Or with javascript: PS: Sorry Mark... Andy Mark Kelly wrote: On Tuesday 04 April 2006 22:27, Brady Mitchell wrote:

Re: [PHP] redirect using php

2006-04-05 Thread Mark Kelly
On Tuesday 04 April 2006 22:27, Brady Mitchell wrote: > > -Original Message- > > In JSP I have access to a function called sendRedirect() to > > send a user > > from one page to another, usually after some processing completed. Is > > there a similar function in PHP? > > Take a look at the

Re: [PHP] redirect using php

2006-04-04 Thread Schalk
Brady Mitchell wrote: -Original Message- In JSP I have access to a function called sendRedirect() to send a user from one page to another, usually after some processing completed. Is there a similar function in PHP? Take a look at the header() function. http://php.net/header

RE: [PHP] redirect using php

2006-04-04 Thread Brady Mitchell
> -Original Message- > In JSP I have access to a function called sendRedirect() to > send a user > from one page to another, usually after some processing completed. Is > there a similar function in PHP? Take a look at the header() function. http://php.net/header To redirect you can us

RE: [PHP] redirect using php

2006-04-04 Thread Chrome
http://uk.php.net/manual/en/function.header.php --- http://chrome.me.uk -Original Message- From: Schalk [mailto:[EMAIL PROTECTED] Sent: 04 April 2006 22:21 To: php-general@lists.php.net Subject: [PHP] redirect using php Greetings All, In JSP I have access to a funct

Re: [PHP] redirect based off server string

2005-08-10 Thread Leon Vismer
If you are using apache you can use the redirect module Servername www.ces.ncsu.edu ServerAlias * Redirect permanent / http://www.nc4h.org/ -- Leon On Wednesday 10 August 2005 16:52, Robert Sossomon wrote: > Anyone have a script or know of a way to check and see what the url is of a > syst

Re: [PHP] redirect based off server string

2005-08-10 Thread Greg Schnippel
Try doing a pattern match on the server string and then using Header to redirect them if its coming from the old server: if (preg_match("/ces.ncsu/i", $_SERVER["HTTP_HOST"])) { header("Location: http://www.nc4h.org";); } - schnippy On 8/10/05, Robert Sossomon <[EMAIL PROTECTED]> wr

Re: [PHP] Redirect with referer info

2005-07-30 Thread Dotan Cohen
On 7/30/05, Joe Wollard <[EMAIL PROTECTED]> wrote: > To obtain a certain portion of the referring url you might look at > parse_url(); > See http://us3.php.net/manual/en/function.parse-url.php > > - or - > > If you want to bounce the user right back to the previous page including get > variables

Re: [PHP] Redirect with referer info

2005-07-30 Thread Joe Wollard
To obtain a certain portion of the referring url you might look at parse_url(); See http://us3.php.net/manual/en/function.parse-url.php - or - If you want to bounce the user right back to the previous page including get variables you could just use this snippet. On Jul 30, 2005, at 9:36

Re: [PHP] Redirect with referer info

2005-07-30 Thread Matt Darby
Dotan Cohen wrote: Hi list, I need to redirerect a page, and send the referer information along with the redirect. I have tried: header("Location: $url"); and print""; Both of them redirect as expected, but the browser (Firefox and Opera) do not send referer information along with the request.

Re: [PHP] Redirect after download

2004-12-01 Thread Richard Lynch
Justin England wrote: > I am writing a file download system and I need to be able to do a > redirect after the download is finished. The Redirect is sent as a header, before your download content. The browser is free to act on that Redirect header and IGNORE the file download content as soon as i

Re: [PHP] Redirect after download

2004-12-01 Thread Minuk Choi
have you considered attempting to use header("Location: ".$URL); where $URL contains the URL AFTER putting ob_start(); at the top of the php file? - Original Message - From: "Justin England" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 01, 2004 4:07 AM Subject:

Re: [PHP] Redirect after download

2004-12-01 Thread Thomas Munz
> I am writing a file download system and I need to be able to do a > redirect after the download is finished. > > Basically, the user will be presented with a simple HTML page that > contains a link to download the file (href="/download.php?fileid=143"). > I have the code to send the file working

RE: [PHP] Redirect then error message to user

2004-10-22 Thread Graham Cossey
27;]=='2') { ... etc... Graham > -Original Message----- > From: Stuart Felenstein [mailto:[EMAIL PROTECTED] > Sent: 22 October 2004 21:55 > To: Brent Baisley > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] Redirect then error message to user > > > Brent - Th

Re: [PHP] Redirect then error message to user

2004-10-22 Thread Stuart Felenstein
Brent - Thank you I will try that method. Can you elaborate more on below. I take it to mean you have one page/script that your pages are going to do all the checks. This form is 5 pages long. So I chose session variables just to keep it neat and "maybe", more secure. Stuart --- Brent Baisl

Re: [PHP] Redirect then error message to user

2004-10-22 Thread Brent Baisley
You can pass the error in the redirect URL: header("Location: http://www.xx.com/page1.php?errmsg=You missed some stuff") On your main page you just check if there is an errmsg to be displayed: if(isset($_GET['errmsg'])) { echo $_GET['errmsg']; } That a simplified version obviously. Bu

Re: [PHP] Redirect then error message to user

2004-10-22 Thread Stuart Felenstein
The only problem I'm having here is that if a user goes backwards, the error from the session variable will show up. I put an unset $.. underneath the echo but that seems to have no effect. Stuart --- Stuart Felenstein <[EMAIL PROTECTED]> wrote: > See below: > --- Jason Wong <[EMAIL PROTECT

Re: [PHP] Redirect then error message to user

2004-10-22 Thread Stuart Felenstein
See below: --- Jason Wong <[EMAIL PROTECTED]> wrote: > What are you trying to do here? > Is 'Page1' == TestMulti4a.php? > Are you trying to display $_SESSION['er'] as set in > Page2? > If so why are you assigning $_POST['er'] to > $_SESSION['er']? All you need to > do is echo $_SESSION['er']. >

RE: [PHP] Redirect then error message to user

2004-10-22 Thread Stuart Felenstein
Sorry, all fixed now! Thank you for the help! Stuart -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Redirect then error message to user

2004-10-22 Thread Jason Wong
On Saturday 23 October 2004 02:38, Stuart Felenstein wrote: > This isn't working: > Page2 (after page1 has been posted): > >else >{ > $_SESSION['er'] = 'Please make sure to fill in all 3 > corresponding values .'; If you want keep changes to any session variables (so that they're

RE: [PHP] Redirect then error message to user

2004-10-22 Thread Stuart Felenstein
This isn't working: Page2 (after page1 has been posted): else { $_SESSION['er'] = 'Please make sure to fill in all 3 corresponding values .'; header("Location: http://www.x.com/TestMulti4a.php"; ); exit; } } Page1: Opening after session_start $_SESSION['er']

Re: [PHP] Redirect then error message to user

2004-10-22 Thread Jason Wong
On Saturday 23 October 2004 01:25, Stuart Felenstein wrote: > I'm not quite sure how to get an error message to > print out after a redirect. I know it's possible. It's not possible. Think about it. How *can* you print something out when you've already told the browser to go somewhere else? BTW

RE: [PHP] Redirect then error message to user

2004-10-22 Thread Stuart Felenstein
Now why didn't I think of that ! Thank you Jay! Stuart --- Jay Blanchard <[EMAIL PROTECTED]> wrote: > [snip] >{ > header("Location: > http://www.xx.com/page1.php"; > ); > print "You have errors"; > exit; >} > > } > [/snip] > > You either need to carry info about the

RE: [PHP] Redirect then error message to user

2004-10-22 Thread Jay Blanchard
[snip] { header("Location: http://www.xx.com/page1.php"; ); print "You have errors"; exit; } } [/snip] You either need to carry info about the error in a session variable or url string or something...above your redirect happens before any error can be sent to the browser

Re: [PHP] redirect

2003-10-30 Thread alain dhaene
it works, thx "Chris W. Parker" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] Pablo Zorzoli on Wednesday, October 29, 2003 11:20 AM said: > You cannot do any echo ""; before header("location:.."); maybe that's > the problem. The solution would be to

Re: [PHP] redirect

2003-10-29 Thread Marek Kilimajer
alain dhaene wrote: But I get the following warning: Warning: Cannot modify header information - headers already sent by (output started at /home/schoolre/public_html/Hitek/Online/Registratie/registratieFuncties.php: 1) The warning states it clearly, output started on line 1 in registratieFuncti

RE: [PHP] redirect

2003-10-29 Thread Chris W. Parker
alain dhaene on Wednesday, October 29, 2003 11:29 AM said: > I have check my code. > I haven't use a echo in my code. > It's very strange. I will search more on the manule. PHP has so far been very good to me with reporting this error. I would trust the error messag

Re: [PHP] redirect

2003-10-29 Thread Chris Shiflett
--- alain dhaene <[EMAIL PROTECTED]> wrote: > I have check my code. > I haven't use a echo in my code. > It's very strange. I will search more on the manule. I don't think the manual will help you here. You *do* have output in your script prior to the call to header(). Trust me. :-) One way to fi

Re: [PHP] redirect

2003-10-29 Thread Chris Shiflett
--- alain dhaene <[EMAIL PROTECTED]> wrote: > Is there in php something as a redirect to another page like in asp? Yes, and as with ASP, there are several methods. Make an example script that has only this: http://www.google.com/'); ?> As for your error about headers already being sent, this is

Re: [PHP] redirect

2003-10-29 Thread alain dhaene
I have check my code. I haven't use a echo in my code. It's very strange. I will search more on the manule. thx "Pablo Zorzoli" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > On Wed, 2003-10-29 at 16:17, alain dhaene wrote: > > But I get the following warning: > > > > Warning: Ca

  1   2   3   >