RE: [PHP] Redirects in PHP

2003-06-13 Thread Brian S. Drexler
But is this the type of stuff that gets penalized in Search Engines or no? -Original Message- From: Ernest E Vogelsinger [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 1:47 PM To: Zak Johnson Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Redirects in PHP At 19:00 13.06.2003, Zak

Re: [PHP] Redirects in PHP

2003-06-13 Thread Ernest E Vogelsinger
At 19:00 13.06.2003, Zak Johnson said: [snip] >This will not solve the OP's problem; the header will still be output >first, and the client will be immediately redirected. I am curious >though; why is everyone suggesting to use JavaScript when the following

RE: [PHP] Redirects in PHP

2003-06-13 Thread Johnny Martinez
You can do the cheesy: This page has moved. Please click this link. heheh J -Original Message- From: Carl Furst [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 10:43 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Redirects in PHP I can understand the abuse

RE: [PHP] Redirects in PHP

2003-06-13 Thread Carl Furst
ak Johnson; [EMAIL PROTECTED] Subject: Re: [PHP] Redirects in PHP Search engines frown on using meta refresh because of abuse problems. Some engines won't index the page period and all of them penalize you at the very least. While it will work as you described, you're sacrificing searc

RE: [PHP] Redirects in PHP

2003-06-13 Thread Brian S. Drexler
I don't know of any, but is there a "good" alternative? -Original Message- From: Zak Johnson [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 1:31 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Redirects in PHP On 2003-06-13 10:34-0600, Michael wrote: > Search engi

Re: [PHP] Redirects in PHP

2003-06-13 Thread Michael
You're absolutely right. Thus, the need for a server-side redirect. You can use meta refresh as long as the time is set to around 10 seconds without being penalized. I guess you could include a message that you are going to be transferred in 10 seconds, then provide a link for the impatient

Re: [PHP] Redirects in PHP

2003-06-13 Thread Zak Johnson
On 2003-06-13 10:34-0600, Michael wrote: > Search engines frown on using meta refresh because of > abuse problems. Some engines won't index the page > period and all of them penalize you at the very least. > While it will work as you described, you're sacrificing > search engine positioning

Re: [PHP] Redirects in PHP

2003-06-13 Thread Michael
Search engines frown on using meta refresh because of abuse problems. Some engines won't index the page period and all of them penalize you at the very least. While it will work as you described, you're sacrificing search engine positioning to use it. You need to weigh the trade-offs Mich

Re: [PHP] Redirects in PHP

2003-06-13 Thread Kevin Stone
- Original Message - From: "Zak Johnson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 13, 2003 11:00 AM Subject: Re: [PHP] Redirects in PHP > On 2003-06-13 10:54-0600, Kevin Stone wrote: > > Carl, you can avoid these issues by using o

Re: [PHP] Redirects in PHP

2003-06-13 Thread Wendell Brown
On Fri, 13 Jun 2003 10:54:39 -0600, Kevin Stone wrote: >Javascript.. bah humbug. :) > >Carl, you can avoid these issues by using output buffering allowing you to >call header() whever you want in your script. But he doesn't get to see the printed info - so it's basically the same difference. I

Re: [PHP] Redirects in PHP

2003-06-13 Thread Zak Johnson
On 2003-06-13 10:54-0600, Kevin Stone wrote: > Carl, you can avoid these issues by using output buffering allowing you to > call header() whever you want in your script. This will not solve the OP's problem; the header will still be output first, and the client will be immediately redirected. I a

Re: [PHP] Redirects in PHP

2003-06-13 Thread Kevin Stone
EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, June 13, 2003 10:28 AM Subject: RE: [PHP] Redirects in PHP > try a delayed javascript redirect. location header must be in the header > whichprevents your visitor from seeing html...thats irritating. i miss the > A

Re: [PHP] Redirects in PHP

2003-06-13 Thread Michael
I miss the response.redirect in Python and DTML which can be placed anywhere as well. Michael On Friday 13 June 2003 10:28 am, Johnny Martinez wrote: > try a delayed javascript redirect. location header must be in the header > whichprevents your visitor from seeing html...thats irritating. i mis

RE: [PHP] Redirects in PHP

2003-06-13 Thread chris sherwood
Build a JavaScript and have it execute as the document loads... i.e. in the body tag with an onLoad event... the header function in php will not do anything if you have sent output already -Original Message- From: Carl Furst [mailto:[EMAIL PROTECTED] Sent: June 13, 2003 9:23 AM To: [EMAI

RE: [PHP] Redirects in PHP

2003-06-13 Thread Johnny Martinez
try a delayed javascript redirect. location header must be in the header whichprevents your visitor from seeing html...thats irritating. i miss the ASP "response.redirect" which can be placed anywhere J -Original Message- From: Carl Furst [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2

Re: [PHP] Redirects in PHP

2003-06-13 Thread Wendell Brown
On Fri, 13 Jun 2003 12:22:44 -0400, Carl Furst wrote: >How do you do this? Use JavaScript. :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php