RE: Redirects

2014-11-11 Thread Steve LaBadie
I have over 400 redirects that have to be recreated and I am always adding more. Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Michael Grant [mailto:mgr...@modus.bz] Sent: Monday, November 10, 2014 9:28 PM To: cf

Re: Redirects

2014-11-11 Thread Byron Mann
...@po-box.esu.edu wrote: I have over 400 redirects that have to be recreated and I am always adding more. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag

RE: Redirects

2014-11-11 Thread Steve LaBadie
Message- From: Byron Mann [mailto:byronos...@gmail.com] Sent: Tuesday, November 11, 2014 8:51 AM To: cf-talk Subject: Re: Redirects With that many I might look into using some sort of command line script to manage. Here's a thread with a simple example on using appcmd for IIS to create

Redirects

2014-11-10 Thread Steve LaBadie
We are currently using a meta date redirect from a UNIX box. The redirects currently sit on www and the production server sit at www4. We are taking down www so the redirects have to be recreated on our new production server which will be taking www. Current redirect structure: HTML BODY META

Re: Redirects

2014-11-10 Thread John M Bliss
Not sure I understand your question. Check out https://wikidocs.adobe.com/wiki/display/coldfusionen/cflocation On Mon, Nov 10, 2014 at 3:39 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: We are currently using a meta date redirect from a UNIX box. The redirects currently sit on www

RE: Redirects

2014-11-10 Thread William Seiter
Unless you need these redirects to be dynamically controlled by a datasource, I would handle them outside of CF. You could use a mod_rewrite on the server or even a virtual directory. If you are determined to utilize CF for this, look into the cflocation tag. (http://help.adobe.com/en_US

Re: Redirects

2014-11-10 Thread Jon Clausen
Sorry: typo. You should use a 307 status code for temporary redirects. Jon On Nov 10, 2014, at 3:53 PM, Jon Clausen jon_clau...@silowebworks.com wrote: Is the current “www4” a Linux or Windows machine? I would suggest handling those at the web server level, with a 303 status code to let

RE: Redirects

2014-11-10 Thread Steve LaBadie
www4 is a windows box Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Jon Clausen [mailto:jon_clau...@silowebworks.com] Sent: Monday, November 10, 2014 3:54 PM To: cf-talk Subject: Re: Redirects Is the current www4

Re: Redirects

2014-11-10 Thread Jon Clausen
-Original Message- From: Jon Clausen [mailto:jon_clau...@silowebworks.com] Sent: Monday, November 10, 2014 3:54 PM To: cf-talk Subject: Re: Redirects Is the current www4 a Linux or Windows machine? I would suggest handling those at the web server level, with a 303

RE: Redirects

2014-11-10 Thread Steve LaBadie
The Unix box (www) is going away and the www4 (windows box) will be renamed www. I need to be able to recreate the directory without making a mess out of the new server directory structure. I thought about creating a www folder and putting all of the redirects/forwards in it. Is this possible

Re: Redirects

2014-11-10 Thread Russ Michaels
of the new server directory structure. I thought about creating a www folder and putting all of the redirects/forwards in it. Is this possible? Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu javascript:; -Original Message- From: Jon Clausen

RE: Redirects

2014-11-10 Thread Steve LaBadie
I didn't give it any thought. Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Monday, November 10, 2014 4:21 PM To: cf-talk Subject: Re: Redirects Is there a specific

Re: Redirects

2014-11-10 Thread Jon Clausen
Can’t you just put an .htaccess file in the directory and use mod_rewrite to handle all of the redirects in the short-term? You can certainly recreate the physical files and have redirect code in place, if you want to, but the mod_rewrite will save you a lot of time and will be faster

Re: Redirects

2014-11-10 Thread Jon Clausen
Is the current “www4” a Linux or Windows machine? I would suggest handling those at the web server level, with a 303 status code to let the search engines know the redirect is temporary, rather than through the application - with the exception of perhaps some dynamic redirects that need

Re: Redirects

2014-11-10 Thread Russ Michaels
javascript:; -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk javascript:;] Sent: Monday, November 10, 2014 4:21 PM To: cf-talk Subject: Re: Redirects Is there a specific reason you are not using url rewrite? On Mon, Nov 10, 2014 at 21:17 PM, Steve LaBadie slaba

Re: Redirects

2014-11-10 Thread Michael Grant
:; javascript:;] Sent: Monday, November 10, 2014 4:21 PM To: cf-talk Subject: Re: Redirects Is there a specific reason you are not using url rewrite? On Mon, Nov 10, 2014 at 21:17 PM, Steve LaBadie slaba...@po-box.esu.edu javascript:; javascript:; wrote: The Unix box (www) is going away

Re: Redirects

2014-11-10 Thread Byron Mann
the same mainframe my dad installed there in the late 70's. Byron Mann Lead Engineer Architect HostMySite.com On Nov 10, 2014 3:39 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: We are currently using a meta date redirect from a UNIX box. The redirects currently sit on www and the production

Re: 301 Redirects - showing as 302's

2011-10-11 Thread Gabriel Perez
I am having the same issue, has anyone figured out a solution for this? I'm doing the following: cfheader statuscode=301 statustext=Moved permanently cfheader name=Location value=#SomeNewURL# It produces a 302 status code So I tried cfheader statuscode=301 statustext=Moved

301 Redirects - showing as 302's

2011-05-22 Thread Paul Giesenhagen
I'm doing the following: cfheader statuscode=301 statustext=Moved permanently cfheader name=Location value=#SomeNewURL# It produces a 302 status code So I tried cfheader statuscode=301 statustext=Moved permanently#Chr(13)##Chr(10)#Location:#SomeNewURL# cfheader name=Location

CF Domain Redirects

2010-06-03 Thread Che Vilnonis
. I'm using IIS6. Anyway, I'm using the following code in onSessionStart: !--- domain redirects. --- cfif cgi.server_name eq http://domain.com; or cgi.server_name contains domains.com cfheader statuscode=301 statustext=Moved permanently cfheader name=Location value=http

Re: CF Domain Redirects

2010-06-03 Thread Scott Brady
like have the www.domains.com or domains.com automatically redirect to www.domain.com. I'm using IIS6. Anyway, I'm using the following code in onSessionStart: !--- domain redirects. --- cfif cgi.server_name eq http://domain.com; or cgi.server_name contains domains.com cfheader

Re: CF Domain Redirects

2010-06-03 Thread Ian Skinner
On 6/3/2010 8:06 AM, Che Vilnonis wrote: 3. Are the any search engine related penalties to doing any of these redirects? If I am using the terminology correctly. I don't think you want to redirect, that search engines consider this basically a bait-and-switch no no. IIRC, you want

RE: CF Domain Redirects

2010-06-03 Thread DURETTE, STEVEN J (ATTASIAIT)
] Sent: Thursday, June 03, 2010 11:18 AM To: cf-talk Subject: Re: CF Domain Redirects I'd say that if it's an option, you can use ISAPI re-write to send domains.com users to domain.com. That is probably more efficient than having CF do it. But, if that's not an option for you, I'd put

RE: CF Domain Redirects

2010-06-03 Thread Che Vilnonis
be a simpler way than to create another site in IIS to do this. Che -Original Message- From: DURETTE, STEVEN J (ATTASIAIT) [mailto:sd1...@att.com] Sent: Thursday, June 03, 2010 11:27 AM To: cf-talk Subject: RE: CF Domain Redirects As long as you own the incorrect domains.com you should be able

Re: CF Domain Redirects

2010-06-03 Thread Casey Dougall
the www.domains.com or domains.com automatically redirect to www.domain.com. I'm using IIS6. Anyway, I'm using the following code in onSessionStart: !--- domain redirects. --- cfif cgi.server_name eq http://domain.com; or cgi.server_name contains domains.com cfheader statuscode=301

RE: CF Domain Redirects

2010-06-03 Thread DURETTE, STEVEN J (ATTASIAIT)
: Thursday, June 03, 2010 11:33 AM To: cf-talk Subject: RE: CF Domain Redirects Scott, good point on onRequestStart. Ian, here is what prompted my post. When a user types domains.com, all of the links on the site say domains.com as they click through the site. I want them to say www.domain.com w

Re: CF Domain Redirects

2010-06-03 Thread Casey Dougall
: !--- domain redirects. --- cfif cgi.server_name eq http://domain.com; or cgi.server_name contains domains.com cfheader statuscode=301 statustext=Moved permanently cfheader name=Location value=http://www.domain.com; /cfif It seems to work. But I have a few questions. 1

RE: CF Domain Redirects

2010-06-03 Thread Che Vilnonis
Thanks Steve, I needed another opinion to convice me... :) -Original Message- From: DURETTE, STEVEN J (ATTASIAIT) [mailto:sd1...@att.com] Sent: Thursday, June 03, 2010 11:40 AM To: cf-talk Subject: RE: CF Domain Redirects Che, Technically it isn't totally another site. When you

RE: CF Domain Redirects

2010-06-03 Thread Jacob
I would do this at the server level.. use URL rewrite. I know there is a URL rewrite modules for IIS7, not sure about 6 though. Jacob -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Thursday, June 03, 2010 8:07 AM To: cf-talk Subject: CF Domain Redirects Here

RE: CF Domain Redirects

2010-06-03 Thread UXB Internet
to doing any of these redirects? YES. Search engines do not like redirects and as someone else said they are bait and switch behavior. Each search engine will handle 301 or 302 redirects differently with different penalties based on that particular search engine. Dennis Powers UXB Internet

RE: CF Domain Redirects

2010-06-03 Thread Che Vilnonis
Internet [mailto:denn...@uxbinternet.com] Sent: Thursday, June 03, 2010 2:09 PM To: cf-talk Subject: RE: CF Domain Redirects I'd like to have domain.com automatically redirect to www.domain.com. Assuming you own both domains then this should be done in the DNS not the web server or CF

RE: CF Domain Redirects

2010-06-03 Thread Justin Scott
Dennis, I decided to use an IIS redirect. I'm curious to know what penalty a redirect would be in say Google's eyes. After all, domain.com to www.domain.com is a redirect... and it would be absurd to penalize a site for a simple redirect like that. Make the redirect permanent (301 status

Re: CF Domain Redirects

2010-06-03 Thread Jason Fisher
Don't know if anyone pointed this out, but cgi.server_name doesn't include the protocol (like 'http://'). So, your test should be more like so: cfif cgi.server_name eq domain.com or cgi.server_name contains domains.com cfheader statuscode=301 statustext=Moved permanently cfheader

Re: CF Domain Redirects

2010-06-03 Thread Andrew Clarke
Che is using a 301 redirect, which is a permanent redirect. AFAIK search engines tend to penalize 302 (temporary) redirects, but are fine with 301s. I would agree that DNS would generally be considered the best solution, followed by a 301 redirect in IIS, followed by a 301 in ColdFusion

RE: CF Domain Redirects

2010-06-03 Thread UXB Internet
Dennis, I decided to use an IIS redirect. I'm curious to know what penalty a redirect would be in say Google's eyes. As I indicated each spider handles 30X redirects differently. Justin pointed you to Google's rules which bears repeating: http://googlewebmastercentral.blogspot.com/2009/02

RE: CF Domain Redirects

2010-06-03 Thread UXB Internet
I pressed send to quickly: Also this is good reference for Google: http://googlewebmastercentral.blogspot.com/search?q=301+redirects Quote: Enable crawling and use 301 (permanent) redirects where possible Where possible, the most important step is often to use appropriate 301 redirects

CFHTTP and 30X Redirects

2010-04-07 Thread Dennis Powers
-directed location without an issue. My question: Is there a limit on how many time a URL can be redirected. So far in our tests we have found up to 3 redirects from the main one and am just wondering if there is a limit? I am most likely going to pick an arbitrary number to prevent looping

Re: CFHTTP and 30X Redirects

2010-04-07 Thread Dave Watts
My question:  Is there a limit on how many time a URL can be redirected? Not really: http://en.wikipedia.org/wiki/URL_redirection#Redirect_loops Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB)

RE: CFHTTP and 30X Redirects

2010-04-07 Thread UXB Internet
[mailto:dwa...@figleaf.com] Sent: Wednesday, April 07, 2010 8:57 PM To: cf-talk Subject: Re: CFHTTP and 30X Redirects My question:  Is there a limit on how many time a URL can be redirected? Not really: http://en.wikipedia.org/wiki/URL_redirection#Redirect_loops Dave Watts, CTO, Fig Leaf

Firefox redirects to machine's IP address?

2008-09-29 Thread Greg Morphis
If I type in http://localhost:8300/ into Firefox it goes to the machine's IP address and I get a Network error.. In IE this works fine.. it takes me to my CF root directory.. What gives? ~| Adobe® ColdFusion® 8 software 8 is the

Re: Firefox redirects to machine's IP address?

2008-09-29 Thread Greg Morphis
BTW I'm using Firefox 3.0.2 on Windows XP. I checked the hosts file, there's only 1 entry localhost 127.0.0.1 On Mon, Sep 29, 2008 at 10:16 AM, Greg Morphis [EMAIL PROTECTED] wrote: If I type in http://localhost:8300/ into Firefox it goes to the machine's IP address and I get a Network error..

Re: Firefox redirects to machine's IP address?

2008-09-29 Thread Ryan Stille
Greg Morphis wrote: If I type in http://localhost:8300/ into Firefox it goes to the machine's IP address and I get a Network error.. In IE this works fine.. it takes me to my CF root directory.. What gives? Sounds like a webserver redirect issue. I've run into this before, but I don't

Re: Firefox redirects to machine's IP address?

2008-09-29 Thread Greg Morphis
If it were a webserver redirect issue wouldnt it affect both IE and FF? I have Apache on here(Tomcat 5.5 for Flex) however with CF I installed the Jrun option... On Mon, Sep 29, 2008 at 10:39 AM, Ryan Stille [EMAIL PROTECTED] wrote: Greg Morphis wrote: If I type in http://localhost:8300/ into

Re: Firefox redirects to machine's IP address?

2008-09-29 Thread Ryan Stille
I've had it happen where it did *not* affect IE and FF the same. But it doesn't sound like you even talking to Apache, port 8300 is usually talking to JRun's built in http server. What happens in IE, does it redirect you somewhere different or does the page just display properly at the

Re: Firefox redirects to machine's IP address?

2008-09-29 Thread Greg Morphis
I uninstalled FF3 and installed 2.0.0.17 and it's working now.. On 9/29/08, Greg Morphis [EMAIL PROTECTED] wrote: If it were a webserver redirect issue wouldnt it affect both IE and FF? I have Apache on here(Tomcat 5.5 for Flex) however with CF I installed the Jrun option... On Mon, Sep

Re: Firefox redirects to machine's IP address?

2008-09-29 Thread Greg Morphis
for SG I reinstalled FF3 and it too is working.. maybe something up with the config? IE was working fine, taking me to the cf root but in FF it was taking me to my IP address on the LAN. On 9/29/08, Ryan Stille [EMAIL PROTECTED] wrote: I've had it happen where it did *not* affect IE and FF the

Re: HTTP 301 redirects using CFHTTP?

2006-08-01 Thread Pete Ruckelshaus
=/404.cfm /cfif Ultimately I will have the redirects in a database which I will load into memory (via the application scope) for faster access. Memory usage won't be an issue, there's only 100 or so URL's to redirect. If anyone sees any issues with this code, please let me know. Thanks, Pete

RE: HTTP 301 redirects using CFHTTP?

2006-08-01 Thread Russ
and then have apache or iis rewrite use it... Russ -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 7:45 AM To: CF-Talk Subject: Re: HTTP 301 redirects using CFHTTP? OK, thanks James, that was the shove in the right direction that I

HTTP 301 redirects using CFHTTP?

2006-07-31 Thread Pete Ruckelshaus
I'm rolling out a newly redesigned site and need to implement a bunch of redirects that return an HTTP response code of 301 (Moved Permanently). There will be a database table (loaded into memory) that will have the bad good URL's. Has anyone here done this, specifically the redirect

Re: HTTP 301 redirects using CFHTTP?

2006-07-31 Thread James Holmes
CFHTTP has no place in this. You need CFHEADER if you are doing it via CF. On 8/1/06, Pete Ruckelshaus [EMAIL PROTECTED] wrote: I'm rolling out a newly redesigned site and need to implement a bunch of redirects that return an HTTP response code of 301 (Moved Permanently

Re: Processing after redirects

2006-07-03 Thread B V
|To: CF-Talk |Subject: Re: Processing after redirects | |ASYNC Event Gateway seems like an option, but I found the culprit; not |the 30 something form fields or the 30 queries bt the Script.aculo.us |javascript and google andalytics javascript. Moving them later in the |page so the form fields

Re: Processing after redirects

2006-07-03 Thread Rob Wilkerson
). Action page redirects them 4). Action page continues processign their form data while they are visiting another page I want to do this because I have A LOT of variables to process, and I don't want them to wait, so is it possible to continue processing their request after they've been

RE: Processing after redirects

2006-07-03 Thread Snake
or not. snake -Original Message- From: B V [mailto:[EMAIL PROTECTED] Sent: 03 July 2006 20:21 To: CF-Talk Subject: Re: Processing after redirects I am aware of CFFLUSH, but can i still redirect the user and continue processing? e.g I have to redirect the user for a number of reasons

strange redirects in CF6.1

2005-12-07 Thread Ray Champagne
My dev server just started to act up in the past two weeks. In some directories, when I am trying to navigate directly to a CF page, my server has started to redirect the page to index.cfm in that directory. No matter what I do, I can't get the page to come up without redirecting. This

Re: Redirects on Region

2005-02-21 Thread Mark Drew
- Original Message - From: Paul Hastings [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Sunday, February 20, 2005 9:57 PM Subject: Re: Redirects on Region Mickael wrote: Thanks for the info. I haven't looked at it in its entirety yet. But is says something about

Re: Redirects on Region

2005-02-21 Thread Paul Hastings
Mark Drew wrote: Also might be worth looking at http://www.ip-to-country.com/ we also have a db-based solution but nigel's java class runs circles around it. ~| Find out how CFTicket can increase your company's customer

Redirects on Region

2005-02-20 Thread Mickael
Hello All, I was wondering if someone could tell me how the following is done. When you go to google.com for instance it knows that I am from Canada and redirects me to google.ca. I would like to implement the same sort of thing on a site that I working on. For me is it is a little simpler

Re: Redirects on Region

2005-02-20 Thread Jochem van Dieten
Mickael wrote: When you go to google.com for instance it knows that I am from Canada and redirects me to google.ca. I would like to implement the same sort of thing on a site that I working on. For me is it is a little simpler, the site is for people in Israel and the rest of the world

Re: Redirects on Region

2005-02-20 Thread Mickael
van Dieten [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Sunday, February 20, 2005 12:01 PM Subject: Re: Redirects on Region Mickael wrote: When you go to google.com for instance it knows that I am from Canada and redirects me to google.ca. I would like to implement the same

Re: Redirects on Region

2005-02-20 Thread Jochem van Dieten
Mickael wrote: Thanks for the info. I haven't looked at it in its entirety yet. But is says something about loading a jar file on the server. I am on shared hosting, is that something that I can do in my webspace or requires the hosting company to install? You should ask the hosting

Re: Redirects on Region

2005-02-20 Thread Paul Hastings
Mickael wrote: Thanks for the info. I haven't looked at it in its entirety yet. But is says something about loading a jar file on the server. I am on shared hosting, is that something that I can do in my webspace or requires the hosting company to install? first off, you should get the

Re: Redirects on Region

2005-02-20 Thread Mickael
Cool thanks - Original Message - From: Paul Hastings [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Sunday, February 20, 2005 9:57 PM Subject: Re: Redirects on Region Mickael wrote: Thanks for the info. I haven't looked at it in its entirety yet. But is says

Capture cflocations/redirects

2004-09-03 Thread Ian Skinner
I'm experiencing some kind of redirect/cflocation endless loop.Is there some easy way to trap the iterations of this loop so that I can see what is trying to redirect to where? -- Ian Skinner Web Programmer BloodSource

Re: Capture cflocations/redirects

2004-09-03 Thread Jochem van Dieten
Ian Skinner wrote: I'm experiencing some kind of redirect/cflocation endless loop.Is there some easy way to trap the iterations of this loop so that I can see what is trying to redirect to where? Recording proxy or the FireFox LiveHTPHeaders plugin. Jochem [Todays Threads] [This Message]

Re: Capture cflocations/redirects

2004-09-03 Thread S . Isaac Dealey
I'm experiencing some kind of redirect/cflocation endless loop.Is there some easy way to trap the iterations of this loop so that I can see what is trying to redirect to where? Create a custom tag to wrap the cflocation tag. Replace all instances of cflocation with cf_location or whatever the

RE: Capture cflocations/redirects

2004-09-03 Thread Cornillon, Matthieu (Consultant)
that it stops in its tracks.By trial-and-error, you should be able to test each of the redirects. I'm afraid that it's not the easiest way in the world.Still, it shouldn't take more than a few minutes to find the problem. HTH, Matthieu [Todays Threads] [This Message] [Subscription] [Fast

Re: Capture cflocations/redirects

2004-09-03 Thread Jochem van Dieten
S.Isaac Dealey wrote: I'm experiencing some kind of redirect/cflocation endless loop.Is there some easy way to trap the iterations of this loop so that I can see what is trying to redirect to where? Create a custom tag to wrap the cflocation tag. Replace all instances of cflocation with

Server-side redirects, jsessionID and IIS

2003-09-19 Thread Nathan Mische
I'm doing a server side redirect using getPageContext().forward(). With J2EE sessions enabled I think the redirect ends up being to something like http://www.myserver.com/index.cfm;jsessionID=123456789?param1=whatever. Am I correct in this thinking? Anyway, using getPageContext().forward() with

Just Curious (Redirects)

2002-09-18 Thread Lee Fuller
Curious as to what everyone is using for IIS 5 and a error-redirect processor? IEP was something many of us used for redirecting 404 (and other) errors in Website Pro. But with IIS.. What are y'all using? TTAIA __ Structure

RE: Just Curious (Redirects)

2002-09-18 Thread Joshua Miller
: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 10:27 AM To: CF-Talk Subject: Just Curious (Redirects) Curious as to what everyone is using for IIS 5 and a error-redirect processor? IEP was something many of us used for redirecting 404 (and other) errors in Website

RE: Just Curious (Redirects)

2002-09-18 Thread UXB Internet
://www.uxbinternet.com/ http://dennis.uxb.net/ -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 10:27 AM To: CF-Talk Subject: Just Curious (Redirects) Curious as to what everyone is using for IIS 5 and a error-redirect processor? IEP was something many of us

Server Side Redirects in CFMX

2002-08-19 Thread Jeff Garza
I've heard that there is a server-side redirect function for CFMX... I haven't been able to track it down and I remember hearing something about it here. Would someone have the syntax for this handy? Thanks, Jeff Garza __

RE: Server Side Redirects in CFMX

2002-08-19 Thread Dave Watts
I've heard that there is a server-side redirect function for CFMX... I haven't been able to track it down and I remember hearing something about it here. Would someone have the syntax for this handy? cfscript getPageContext.forward('somewhere.cfm'); /cfscript Dave Watts, CTO, Fig Leaf

RE: Server Side Redirects in CFMX

2002-08-19 Thread Pete Freitag
cfscript getPageContext.forward('somewhere.cfm'); /cfscript Actually getPageContext is a method, not an instance, so you need the () cfscript getPageContext().forward('somewhere.cfm'); /cfscript _ Pete Freitag CTO, CFDEV.COM http://www.cfdev.com/

RE: Server Side Redirects in CFMX

2002-08-19 Thread Dave Watts
cfscript getPageContext.forward('somewhere.cfm'); /cfscript Actually getPageContext is a method, not an instance, so you need the () cfscript getPageContext().forward('somewhere.cfm'); /cfscript D'oh! Thanks for the correction! Dave Watts, CTO, Fig Leaf Software

Re: Server Side Redirects in CFMX

2002-08-19 Thread Adam Churvis
for ColdFusion http://www.macromedia.com/support/forums/team_macromedia/ - Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, August 19, 2002 12:36 PM Subject: RE: Server Side Redirects in CFMX cfscript getPageContext.forward('somewhere.cfm

RE: Server Side Redirects in CFMX

2002-08-19 Thread Joel Nath
Subject: RE: Server Side Redirects in CFMX I've heard that there is a server-side redirect function for CFMX... I haven't been able to track it down and I remember hearing something about it here. Would someone have the syntax for this handy? cfscript getPageContext.forward('somewhere.cfm

RE: Server Side Redirects in CFMX

2002-08-19 Thread Matt Liotta
, August 19, 2002 7:15 PM To: CF-Talk Subject: RE: Server Side Redirects in CFMX Hi, Whats the diff between cflocation and getPageContext().forward('somewhere.cfm') or is it just the same thing done in two diff ways.. any pro's or con's.. cheers Joel -Original Message

RE: Server Side Redirects in CFMX

2002-08-19 Thread Pete Freitag
by forwarding the request to a different location on the server. Some really old browsers won't support client side redirects (it was added to HTTP 1.1, so browsers that use HTTP 1.0 won't recognize the header). Server side redirects are faster than client side redirects because its all done on the server

RE: Server Side Redirects in CFMX

2002-08-19 Thread Joel Nath
Thanks.. for the info..:) I have used server-side redirects in other languages (.eg ASP).. and understand its capability... so i assume it is safe to use it in CF without any known problems or limitations. cheers Joel -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED

RE: Server Side Redirects in CFMX

2002-08-19 Thread Pete Freitag
so i assume it is safe to use [server side redirects] in CF without any known problems or limitations. The only limitation is that your code will not be backwards compatible with CF5 and below, otherwise I haven't seen any problems with using

Re: CF Error pages and redirects for 404 pages

2002-05-21 Thread Pete Ruckelshaus
), figures out which 404's are because of fatfingering/misspellings, and which ones are looking for lost pages, and from there a forwarding URL can be added to complete the redirect: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head titleDatabased Redirects/title /head body

CF Error pages and redirects for 404 pages

2002-05-20 Thread Pete Ruckelshaus
Hi, My challenge of the week is to provide automated forwarding services to URL's that return a File not found 404 error. This would act as a sort of switchboard that, whenever a 404 error was encountered, a query would be run against a database for the requested URL, and if there were a new

RE: CF Error pages and redirects for 404 pages

2002-05-20 Thread Matt Robertson
://mysecretbase.com -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 8:43 AM To: CF-Talk Subject: CF Error pages and redirects for 404 pages Hi, My challenge of the week is to provide automated forwarding services to URL's that return a File not found

Re: Web bugs, cookies and redirects...

2002-01-17 Thread Jim McAtee
using http port 80 (or any other http port). Some personal firewalls make this very simple. Jim - Original Message - From: Andrew Scott [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 17, 2002 12:05 AM Subject: RE: Web bugs, cookies and redirects... Can you

Re: Web bugs, cookies and redirects...

2002-01-17 Thread Jim McAtee
Here's a nice write up. http://www.privacyfoundation.org/resources/webbug.asp Jim - Original Message - From: Jim McAtee [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 17, 2002 1:58 AM Subject: Re: Web bugs, cookies and redirects... It's pretty simple. You

Re: Web bugs, cookies and redirects...

2002-01-17 Thread Jochem van Dieten
Martin P. Cadirola wrote: Hi there, I'm working on an app that uses a web bug (basically an img tag that calls another site; that site serves an image). I'd need to redirect a visitor -after- the web bug has been served. Since cookies are involved -as you may guess-, I don't use

RE: Web bugs, cookies and redirects...

2002-01-17 Thread Nick Betts
January 2002 12:13 To: CF-Talk Subject: Re: Web bugs, cookies and redirects... Martin P. Cadirola wrote: Hi there, I'm working on an app that uses a web bug (basically an img tag that calls another site; that site serves an image). I'd need to redirect a visitor -after- the web bug has been

RE: Web bugs, cookies and redirects...

2002-01-17 Thread Andrew Scott
this is always from spam mail, well at least that I have received anyway. -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Thursday, 17 January 2002 8:05 PM To: CF-Talk Subject: Re: Web bugs, cookies and redirects... Here's a nice write up. http

RE: Web bugs, cookies and redirects...

2002-01-17 Thread Janine Jakim
and redirects... Jim you mentioned firewalls, I have only used the Norton's Internet Security on my home network. But it allows for me to stop certain information from being sent back, so this would be why I keep getting these blocked in my emails then (as I have told it not to send my email

RE: Web bugs, cookies and redirects...

2002-01-17 Thread Janine Jakim
oops sorry-thought I was responding to something else. -Original Message- From: Janine Jakim Sent: Thursday, January 17, 2002 8:19 AM To: CF-Talk Subject: RE: Web bugs, cookies and redirects... You can dump all of them as none of them were helpful. Thanks for all your help yesterday

RE: Web bugs, cookies and redirects...

2002-01-17 Thread Dave Watts
Can you explain this web bug technique, I haven't heard it before. You can actually download a mail manager example written in CF, that demonstrates the use of web bugs in HTML email among many other things, here: http://www.cfugorama.com/cfugorama/codelibrary/SpamMaster.cfm Dave Watts, CTO,

Web bugs, cookies and redirects...

2002-01-16 Thread Martin P. Cadirola
Hi there, I'm working on an app that uses a web bug (basically an img tag that calls another site; that site serves an image). I'd need to redirect a visitor -after- the web bug has been served. Since cookies are involved -as you may guess-, I don't use cflocation but simply: CFHEADER

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Andrew Scott
3:16 PM To: CF-Talk Subject: Web bugs, cookies and redirects... Hi there, I'm working on an app that uses a web bug (basically an img tag that calls another site; that site serves an image). I'd need to redirect a visitor -after- the web bug has been served. Since cookies are involved -as you

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Brendan Avery
Scott [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16, 2002 20:33 To: CF-Talk Subject: RE: Web bugs, cookies and redirects... Instead of using the cfheader why not use Javscript to relocate the window itself. I haven't got code here but if you go to www.sitexperts.com

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Andrew Scott
: Web bugs, cookies and redirects... if you use javascript IN the email itself, your typical end-user will probably either get a 'warning' about unsafe content or nothing at all, instead of the intended effect. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Brendan Avery
-Talk Subject: RE: Web bugs, cookies and redirects... Did I miss something I saw no mention of being used in an email? Besides he is already doing a cfheader to do the same thing, so what drugs are you on!! -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Brendan Avery
oops i'm pretty sure that anything generated by cfheader would generate a warning on nearly as many email clients as any kind of javascript would. __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Andrew Scott
Sounds like you enjoy your life. I would have thought you would have added the caffeine addiction too? -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED]] Sent: Thursday, 17 January 2002 4:11 PM To: CF-Talk Subject: RE: Web bugs, cookies and redirects... i'm pretty sure

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Andrew Scott
Can you explain this web bug technique, I haven't heard it before. -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED]] Sent: Thursday, 17 January 2002 4:13 PM To: CF-Talk Subject: RE: Web bugs, cookies and redirects... oops i'm pretty sure that anything generated

  1   2   >