Re: cflocation mystery- solved

2014-02-02 Thread Brian Cain
You should also be retiring a 301 status code to the client. This makes a difference for SEO purposes. In CF7 or before you would need to use the cfheader tag. CF8 and on, you can add the status code attribute to the cflocation tag. Sent from my iPhone > On Feb 2, 2014, at 11:51 AM, "Rob Voy

Re: cflocation mystery- solved

2014-02-02 Thread Rob Voyle
Thanks guys needed the absolute path in fileExist Rob ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/

Re: cflocation mystery

2014-02-02 Thread Bobby
Exception.log On 2/2/14, 12:18 PM, "Rob Voyle" wrote: > >Hi Timothy > >Which log would the error be in. I can't find the error in any of the >logs. >The site is public and only displays a generic error template rather than >the >specific error. > >Rob > >On 2 Feb 2014 at 11:58, Timothy Heald

Re: cflocation mystery

2014-02-02 Thread Timothy Heald
Nope, read that wrong. On Feb 2, 2014 12:39 PM, timothy.he...@gmail.com wrote: > Looks like newurl isn't a url, rather a path, it's appended to the domain > name. > On Feb 2, 2014 12:35 PM, "Cameron Childress" wrote: > >> >> fileExists() accepts a filename on the filesystem, not a URL. >> >> -Ca

Re: cflocation mystery

2014-02-02 Thread Timothy Heald
Looks like newurl isn't a url, rather a path, it's appended to the domain name. On Feb 2, 2014 12:35 PM, "Cameron Childress" wrote: > > fileExists() accepts a filename on the filesystem, not a URL. > > -Cameron > > > On Sun, Feb 2, 2014 at 11:41 AM, Rob Voyle wrote: > > > > > Hi Folks > > > > I

Re: cflocation mystery

2014-02-02 Thread Cameron Childress
fileExists() accepts a filename on the filesystem, not a URL. -Cameron On Sun, Feb 2, 2014 at 11:41 AM, Rob Voyle wrote: > > Hi Folks > > I have a basic ".html" site that I have converted to a coldfusion site. > > since there are many old .html links out there I added the following to my > no

Re: cflocation mystery

2014-02-02 Thread Timothy Heald
What version of cf? On Feb 2, 2014 12:19 PM, "Rob Voyle" wrote: > > Hi Timothy > > Which log would the error be in. I can't find the error in any of the logs. > The site is public and only displays a generic error template rather than > the > specific error. > > Rob > > On 2 Feb 2014 at 11:58, T

Re: cflocation mystery

2014-02-02 Thread Timothy Heald
We don't know what's on the variable, and it's working through the first half of the condition it sounds like. Can you cflocate to the tld or do you require a filename? On Feb 2, 2014 12:12 PM, "Russ Michaels" wrote: > > you firstly are trying to use fileExists on a URL, so it will always fail,

Re: cflocation mystery

2014-02-02 Thread Rob Voyle
Hi Timothy Which log would the error be in. I can't find the error in any of the logs. The site is public and only displays a generic error template rather than the specific error. Rob On 2 Feb 2014 at 11:58, Timothy Heald wrote: > > What's the error message? > On Feb 2, 2014 11:42 AM, "Rob

Re: cflocation mystery

2014-02-02 Thread Timothy Heald
Add the file. Like index.cfm our what ever On Feb 2, 2014 12:09 PM, "Rob Voyle" wrote: > > Hi Timothy > Instead of redirecting to: mydomain.com > http://www.mydomain.com";> > It is throwing an error rather than redirecting. > > How do I redirect? > > Rob > > > On 2 Feb 2014 at 11:56, Timothy He

Re: cflocation mystery

2014-02-02 Thread Russ Michaels
you firstly are trying to use fileExists on a URL, so it will always fail, fileExists requires an absolute path on the server see here: https://learn.adobe.com/wiki/display/coldfusionen/fileexists secondly an html page will never reach coldfusion, because it is an html page, so cfml code will nev

Re: cflocation mystery

2014-02-02 Thread Timothy Heald
What's the error? On Feb 2, 2014 12:09 PM, "Rob Voyle" wrote: > > Hi Timothy > Instead of redirecting to: mydomain.com > http://www.mydomain.com";> > It is throwing an error rather than redirecting. > > How do I redirect? > > Rob > > > On 2 Feb 2014 at 11:56, Timothy Heald wrote: > > > > > It's

Re: cflocation mystery

2014-02-02 Thread Rob Voyle
Hi Timothy Instead of redirecting to: mydomain.com http://www.mydomain.com";> It is throwing an error rather than redirecting. How do I redirect? Rob On 2 Feb 2014 at 11:56, Timothy Heald wrote: > > It's no mystery, that's the correct response. Trap the 404 error > for html > files at the w

Re: cflocation mystery

2014-02-02 Thread Timothy Heald
What's the error message? On Feb 2, 2014 11:42 AM, "Rob Voyle" wrote: > > Hi Folks > > I have a basic ".html" site that I have converted to a coldfusion site. > > since there are many old .html links out there I added the following to my > notFound.cfm file: > > > http://www.mydomain.co

Re: cflocation mystery

2014-02-02 Thread Timothy Heald
And that's not what you're asking at all On Feb 2, 2014 11:42 AM, "Rob Voyle" wrote: > > Hi Folks > > I have a basic ".html" site that I have converted to a coldfusion site. > > since there are many old .html links out there I added the following to my > notFound.cfm file: > > > http://

Re: cflocation mystery

2014-02-02 Thread Timothy Heald
It's no mystery, that's the correct response. Trap the 404 error for html files at the web server and handle the cf side through either site wide or per application error handling. On Feb 2, 2014 11:42 AM, "Rob Voyle" wrote: > > Hi Folks > > I have a basic ".html" site that I have converted to

Re: cflocation and long urls

2013-08-28 Thread Rob Voyle
Hi Kevin I doubt that the + is the problem as it is now working fine as a relative link which includes the + / and = Rob On 28 Aug 2013 at 19:49, Kevin Parker wrote: > > My guess is your + signs may be seen as a space unless that's what > you > intended. I have seen this on the odd occasion

RE: cflocation and long urls

2013-08-28 Thread Russ Michaels
Try urlencodedformat Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 28 Aug 2013 10:50, "Kevin Parker" wrote: > > My guess is your + signs may be seen as a space unless that's what you > intended. I have seen this on the odd occasion but mainly on an older > system

RE: cflocation and long urls

2013-08-28 Thread Kevin Parker
My guess is your + signs may be seen as a space unless that's what you intended. I have seen this on the odd occasion but mainly on an older system on our Intranet. ++ Kevin Parker ++ -Original Message- From: Rob Voyle [mailto:robvo...@voyle.com] Sent: Wednesday, 28 Au

Re: cflocation and long urls

2013-08-27 Thread Rob Voyle
Hi Byron yes there are several + and / and = Rob On 27 Aug 2013 at 21:43, Byron Mann wrote: > > Are there any strange characters in the final decrypted uri? Like % > / +? > That are in the query_string portion of the URI? > > Byron Mann > Lead Engineer & Architect > HostMySite.com

Re: cflocation and long urls

2013-08-27 Thread Byron Mann
Are there any strange characters in the final decrypted uri? Like % / +? That are in the query_string portion of the URI? Byron Mann Lead Engineer & Architect HostMySite.com ~| Order the Adobe Coldfusion Anthology now! http://w

Re: cflocation and long urls -2

2013-08-27 Thread Rob Voyle
Hi folks Interesting it works fine with relative url. Not sure if it is a length issue in the cflocation or some other factor Thanks Rob ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Antho

Re: cflocation and long urls

2013-08-27 Thread Rob Voyle
Hi Bryan To check it I used "trim" no success. Then instead of using I put Again no success, What I did notice the link is an absolute link beginning http://www the cflocation appears to be appended to the url of the origninal page. such as http://www.originalpage.cfmhttp://wwwnewlink wh

Re: cflocation and long urls

2013-08-27 Thread Bryan Stevenson
Well just remember that copying and pasting often selects extra characters (like blanks either side of the string)and I'm mentioning this because Rob you have not said explicitly that you did check for thisjust being thorough ;-) If you've already made sure the values are trimmed and e

Re: cflocation and long urls

2013-08-27 Thread Dave Watts
> Also its not an error in the string as you suggest Dave. I have both copied it > straight from the database and then copied it from a cfm page where the > database query is being presented. Both work fine. Its just the cflocation > that is > not working.Using CF9 if that matters. I think you m

Re: cflocation and long urls

2013-08-27 Thread Rob Voyle
Hi Ray and Dave If it were a length issue then it wouldn't work if I just paste it in from the database. Also its not an error in the string as you suggest Dave. I have both copied it straight from the database and then copied it from a cfm page where the database query is being presented. Bot

RE: cflocation and long urls

2013-08-27 Thread Mark A Kruger
August 27, 2013 5:00 PM To: cf-talk Subject: Re: cflocation and long urls There is a max size for URLs. Some browsers may be more strict about it. On Tue, Aug 27, 2013 at 4:23 PM, Rob Voyle wrote: > > Hi folks > > I have a long encrypted url stored in a database: > > the cgi.qu

Re: cflocation and long urls

2013-08-27 Thread Dave Watts
> I have a long encrypted url stored in a database: > > the cgi.query_string is something like > > YJShGG8kxBWgJKOlo2z4oTM8jEanxnGNBzw+QBQw8JBtuiQ8Oyn6tc6qmbd+E7W > vcbfncSF/pq2ttDOdegKnxA== > > It works fine if i manually copy the total url from the database to the > browser, > > however if I u

Re: cflocation and long urls

2013-08-27 Thread Raymond Camden
There is a max size for URLs. Some browsers may be more strict about it. On Tue, Aug 27, 2013 at 4:23 PM, Rob Voyle wrote: > > Hi folks > > I have a long encrypted url stored in a database: > > the cgi.query_string is something like > > YJShGG8kxBWgJKOlo2z4oTM8jEanxnGNBzw+QBQw8JBtuiQ8Oyn6tc6qm

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread John M Bliss
P.S. My test was simply this: http://citiprogram.desk.com/customer/portal/articles/search?q=#URLEncodedFormat('thisis a test')#" addtoken="no"> On Wed, Jan 23, 2013 at 2:25 PM, John M Bliss wrote: > > On Wed, Jan 23, 2013 at 2:16 PM, Torrent Girl wrote: > >> this is a test > > > I just ran th

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread John M Bliss
On Wed, Jan 23, 2013 at 2:16 PM, Torrent Girl wrote: > this is a test I just ran that and ended up looking at this URL: http://citiprogram.desk.com/customer/portal/articles/search?q=this%20is%20a%20test ...where that page reads: 1 results found for "this is a test" ...all of which is corr

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Raymond Camden
By any wild chance did you urlencode it already? If you output form.searchparam _before_ the cflocation, and throw in an abort, is it encoded? Also - you don't need cfoutput tags around a cflocation. On Wed, Jan 23, 2013 at 2:16 PM, Torrent Girl wrote: > > >Still not clear RE: which page is

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl
>Still not clear RE: which page is which and where you're seeing what. > >Let's say you have: > >page1.cfm > > > > >...then, on page2.cfm, you should see in the browser's URL/location bar: > >...page2.cfm?variable=this%20is%20a%20test > >...and, on page2.cfm, if you do this: > >#url.variable# > >.

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Raymond Camden
index.cfm is part of the variable? So your telling cflocation to go to a url and pass along a value that also includes a file name in it?? Is this online someplace? Because this is a SERIOUSLY simple thing and I think all of us are missing something obvious. On Wed, Jan 23, 2013 at 1:59 PM, To

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl
>Still not clear RE: which page is which and where you're seeing what. > >Let's say you have: > >page1.cfm > > > > >...then, on page2.cfm, you should see in the browser's URL/location bar: > >...page2.cfm?variable=this%20is%20a%20test > >...and, on page2.cfm, if you do this: > >#url.variable# > >.

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl
>"When I output the var on the page I see the encoded version: >index.cfm?variable=this%20is%20a%20test" > >Eh? You wouldn't see index.cfm, etc. Seriously, like, do this: > >#url.variable# > >Do you see "this is a test" or "this%20etc" > > > >On Wed, Jan 23, 2013 at 10:38 AM, Torrent Girl wrote: >

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Raymond Camden
"When I output the var on the page I see the encoded version: index.cfm?variable=this%20is%20a%20test" Eh? You wouldn't see index.cfm, etc. Seriously, like, do this: #url.variable# Do you see "this is a test" or "this%20etc" On Wed, Jan 23, 2013 at 10:38 AM, Torrent Girl wrote: > > >Dumb qu

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread John M Bliss
Still not clear RE: which page is which and where you're seeing what. Let's say you have: page1.cfm ...then, on page2.cfm, you should see in the browser's URL/location bar: ...page2.cfm?variable=this%20is%20a%20test ...and, on page2.cfm, if you do this: #url.variable# ...that should prod

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl
>> but when I pass the var using cflocation it isn't. > >Where, specifically? In the browser's URL/location bar? Or when you >#url.variable#? (If the latter, that's the way it's >supposed to work.) > > >On Wed, Jan 23, 2013 at 10:22 AM, Torrent Girl wrote: > >> When I output the var on the page

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl
>Dumb question - what are you seeing in the browser? When you output >#url.variable# what do you see? > > >On Wed, Jan 23, 2013 at 10:22 AM, Torrent Girl wrote: > >> When I output the var on the page I see the encoded version: index.cfm?variable=this%20is%20a%20test when it passes as a URL str

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread John M Bliss
> but when I pass the var using cflocation it isn't. Where, specifically? In the browser's URL/location bar? Or when you #url.variable#? (If the latter, that's the way it's supposed to work.) On Wed, Jan 23, 2013 at 10:22 AM, Torrent Girl wrote: > > >Yep try this > > > > > > > > > > > > > >Tha

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Raymond Camden
Dumb question - what are you seeing in the browser? When you output #url.variable# what do you see? On Wed, Jan 23, 2013 at 10:22 AM, Torrent Girl wrote: > > >Yep try this > > > > > > > > > > > > > >That should work, especially if this is suffering the same problem as > >cfsavecontent and a few

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Torrent Girl
>Yep try this > > > > > > >That should work, especially if this is suffering the same problem as >cfsavecontent and a few other tags and functions. > >-- >Regards, >Andrew Scott >WebSite: http://www.andyscott.id.au/ >Google+: http://plus.google.com/113032480415921517411 That still didn't work

Re: CFLOCATION and urlencodedformat

2013-01-23 Thread Andrew Scott
Yep try this That should work, especially if this is suffering the same problem as cfsavecontent and a few other tags and functions. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 ~~

Re: cflocation not working

2012-11-15 Thread funand learning
I put this code in application.cfm, but when I put it in some other common include file it works. How to make this work in application.cfm file? On Thu, Nov 15, 2012 at 11:42 AM, Robert Harrison < rob...@austin-williams.com> wrote: > > Your problem is the cgi vars. Test it without the if stateme

RE: cflocation not working

2012-11-15 Thread Robert Harrison
Your problem is the cgi vars. Test it without the if statements and see if it works. If it does, it's you cgi var statements that need some work. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Ha

Re: cflocation not working

2012-11-15 Thread Raymond Camden
And if you output some text before the cflocation, does it work? On Thu, Nov 15, 2012 at 11:34 AM, funand learning wrote: > > I see "/test/folder1" > > On Thu, Nov 15, 2012 at 11:32 AM, Raymond Camden >wrote: > > > > > So when you output cgi.http_url, what do you see? > > > > > > > > On Thu, N

Re: cflocation not working

2012-11-15 Thread funand learning
I see "/test/folder1" On Thu, Nov 15, 2012 at 11:32 AM, Raymond Camden wrote: > > So when you output cgi.http_url, what do you see? > > > > On Thu, Nov 15, 2012 at 11:31 AM, fun and learning > wrote: > > > > > Hi All - > > > > I am using the following code to redirect a page > > > > > > >

Re: cflocation not working

2012-11-15 Thread Raymond Camden
So when you output cgi.http_url, what do you see? On Thu, Nov 15, 2012 at 11:31 AM, fun and learning wrote: > > Hi All - > > I am using the following code to redirect a page > > > > http://abc.com/test/folder2";> > > > > The second if statement does not work. if I do the

Re: cflocation in cfc

2010-05-22 Thread Mark Mandel
I would say so, yes... but given that you've given us no details, its very hard to say for sure. Sent from my mobile device On 23 May 2010 10:34, "Matthew P. Smith" wrote: bad idea? ~| Order the Adobe Coldfusion Anthology

Re: cflocation tag

2009-12-04 Thread Mike Stromme
Barney, Thank you, thank you, thank you I had a in the application.cfm file. thanks, Mike Do you have CFFLUSH above the CFLOCATION tag anywhere (like another > template or Application.cfm)? Once you flush the page, you can no > longer do a CFLOCATION (or CFHEADER, CFCONTENT, etc.

Re: cflocation tag

2009-12-04 Thread Barney Boisvert
Do you have CFFLUSH above the CFLOCATION tag anywhere (like another template or Application.cfm)? Once you flush the page, you can no longer do a CFLOCATION (or CFHEADER, CFCONTENT, etc.). cheers, barneyb On Fri, Dec 4, 2009 at 11:27 AM, Mike Stromme wrote: > > Anyone ever have cflocation stop

Re: cflocation problem

2008-05-06 Thread alex poyaoan
thanks to all the inputs will try which is best ... > Hi everybody > need help on this > > I have this code on an action template > > > INSERT into table1(listID, secondID, emailID) > VALUES('#Form.ListID#','#Form.secondID#','#form.emailID#' ) > > > > I need to go back to the previous form

Re: cflocation problem

2008-05-05 Thread Axel Schultze
1) URL parameter absolutely works in cflocation In /wwwroot/cfdocs... you find this example 2) I use session.returnpage ="../somewhere/pagename.cfm" and pair it with ...it's pretty flexible 3) If you n

Re: cflocation problem

2008-05-05 Thread Axel Schultze
In /wwwroot/cfdocs... you find this example so 1) URL parameter absolutely works 2) I use session.returnpage ="../somewhere/pagename.cfm" > Hi everybody > need help on this > > I have this code on an action template > > > INSERT in

RE: cflocation problem

2008-05-05 Thread Dave Francis
Shouldn't that be -Original Message- From: Phillip Vector [mailto:[EMAIL PROTECTED] Sent: Monday, May 05, 2008 12:12 PM To: CF-Talk Subject: Re: cflocation problem "Is there a way to insert that value in the cflocation url? I tried it but it gives me an er

RE: cflocation problem

2008-05-05 Thread Leitch, Oblio
wever, you're right - it would expose it to tampering. From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Mon 5/5/2008 12:08 PM To: CF-Talk Subject: RE: cflocation problem > I don't believe you can send url variables with cflocation. You can do this.

Re: cflocation problem

2008-05-05 Thread Phillip Vector
"Is there a way to insert that value in the cflocation url? I tried it but it gives me an error wHAT i WANT TO DI IS " Ok... So Alex... What's the problem again? On Mon, May 5, 2008 at 9:08 AM, Dave Watts <[EMAIL PROTECTED]> wrote: > > I don't believe you can send url variables with cflocation.

RE: cflocation problem

2008-05-05 Thread Dave Watts
> I don't believe you can send url variables with cflocation. You can do this. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Training: Adobe/Google/Paperthin Certified Partners http://training.figleaf.com/ WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers

Re: cflocation problem

2008-05-05 Thread Phillip Vector
I don't believe you can send url variables with cflocation. I'm also assuming from what you wrote that you already tried that. Anyway, you don't want to do that anyway because it opens up a way for people to manipulate the URL and get into areas they shouldn't be. Good practice? On Mon, May 5, 2

RE: cflocation problem

2008-05-05 Thread Leitch, Oblio
So, why can't you? From: alex poyaoan [mailto:[EMAIL PROTECTED] Sent: Mon 5/5/2008 11:16 AM To: CF-Talk Subject: cflocation problem Hi everybody need help on this I have this code on an action template INSERT into table1(listID, secondID, emailID) VALUE

Re: cflocation problem

2008-05-05 Thread Phillip Vector
A quick and easy solution would be to store form.id into a session. then cflocation to it and call it from #session.formid#. Might not be the BEST answer, but I'm still waking up. :) On Mon, May 5, 2008 at 8:16 AM, alex poyaoan <[EMAIL PROTECTED]> wrote: > Hi everybody > need help on this > >

RE: CFLOCATION, but with a form

2007-12-18 Thread Dave Merrill
December 18, 2007 3:09 PM > To: CF-Talk > Subject: Re: CFLOCATION, but with a form > > Semi-relevant: cfhttp can submit a form with specified data > to a specified url, but the whole thing happens on the > server, without the browser relocating anywhere. What I'm > look

Re: CFLOCATION, but with a form

2007-12-18 Thread Ian Skinner
Semi-relevant: cfhttp can submit a form with specified data to a specified url, but the whole thing happens on the server, without the browser relocating anywhere. What I'm looking for is just like that, but navigating the browser to that submitted pg. Dave Merrill I am not seeing how this mech

RE: CFLOCATION, but with a form

2007-12-18 Thread Dave Watts
> Is there a form equivalent to the http mechanism used by > cflocation, where the server side generates info that gets > passed to a new page? No, there isn't. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instructi

Re: CFLOCATION, but with a form

2007-12-18 Thread Todd
Without javascript involved or using GetPageContext().Forward() ( read: http://www.bennadel.com/blog/382-Is-ColdFusion-s-GetPageContext-Forward-Method-Worth-Using-.htm), then I don't think you're going to find what you're looking for. On Dec 18, 2007 2:48 PM, Dave Merrill <[EMAIL PROTECTED]> wrote

RE: CFLOCATION, but with a form

2007-12-18 Thread Dave Merrill
essage- > From: Tom Chiverton > Sent: Tuesday, December 18, 2007 11:17 AM > To: CF-Talk > Subject: Re: CFLOCATION, but with a form > > On Tuesday 18 Dec 2007, Dave Merrill wrote: > > As I understand it, cflocation sends a redirect to the browser, > > naviga

Re: CFLOCATION, but with a form

2007-12-18 Thread Tom Chiverton
On Tuesday 18 Dec 2007, Dave Merrill wrote: > As I understand it, cflocation sends a redirect to the browser, navigating > it to a new page, potentially including url parameters. Is there any way to > do a similar thing, but emulating a form, so passed parameters can be kept > out of the url? Stor

Re: cflocation to cflayout

2007-09-04 Thread Raymond Camden
Use JavaScript. ColdFusion.navigate(...) Check the docs on the exact syntax. On 9/4/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote: > Anyone know if it is possible to use to redirect a page inside > of a to a ? I don't want it to break the page out. > > Thanks in advance for any help. > > ~~

Re: cflocation to cflayout

2007-09-04 Thread Brian Kotek
It isn't possible. cflocation will redirect the entire page. On 9/4/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote: > > Anyone know if it is possible to use to redirect a page > inside of a to a ? I don't want it to break the > page out. > > Thanks in advance for any help. > > ~

Re: cflocation/ie 6 bug - possible workaround

2007-05-30 Thread Rick Root
I see the JRun update but for an instant solution, I'm going to try the &#anchor hack. You IE6 people wanna hit this? http://www.it.dev.duke.edu/public/test.cfm Thanks Rick ~| Macromedia ColdFusion MX7 Upgrade to MX7 & exp

Re: cflocation/ie 6 bug - possible workaround

2007-05-30 Thread Catherine Alleva
This is the updated URL for Jrun hot fix: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=5c9389c8 This fixed the cflocation problem. FYI: If you upgrade to CFMX7, you'll have to install the hot fix again. ~| Deploy Web

Re: cflocation/ie 6 bug - possible workaround

2007-05-30 Thread Catherine Alleva
Update: URL for Jrun hot fix: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=5c9389c8 This fixed the cflocation problem. FYI: If you upgrade to CFMX7, you'll have to install the hot fix again. ~| Create Web Application

RE: cflocation sporadic file truncation on Jrun4, cannot install hotfix

2007-04-24 Thread Dave Watts
> I've seen your name on the boards here many times. Thanks > for taking the time to answer my question. You're welcome! > I have tried everything I can think of and that certainly > never occurred to me. I can see where it might not be immediately obvious, to say the least. > One other thin

Re: cflocation sporadic file truncation on Jrun4, cannot install hotfix

2007-04-24 Thread Gerald Weir
Hi Dave, I've seen your name on the boards here many times. Thanks for taking the time to answer my question. I have tried everything I can think of and that certainly never occurred to me. My browser definitely renames the file as wsconfig.zip and there is already a file in the D:/Jrun4/lib

RE: cflocation sporadic file truncation on Jrun4, cannot install hotfix

2007-04-24 Thread Dave Watts
> We are running CF MX6.1 on Jrun4 with Updater 6. We are > experiencing sporadic truncated pages being downloaded to our > clients. The pages start properly but break and some code is exposed. > > I am not asking about this question in particular but rather > the Hot Fix for this JRun issue wh

RE: Cflocation back to calling page

2007-02-26 Thread Andy Matthews
Assuming you're using a form, then add in a hidden field with the value of the current page. Then on submission, after your processing is done, use that value for the redirect. -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Sunday, February 25, 2007 10:11 PM To:

RE: Cflocation back to calling page

2007-02-26 Thread Coldfusion
: Sunday, February 25, 2007 11:24 PM To: CF-Talk Subject: Re: Cflocation back to calling page assuming there -is- a calling page... On 2/25/07, Richard Colman <[EMAIL PROTECTED]> wrote: > What is the easiest way to do a back to the calling page? > &

Re: Cflocation back to calling page

2007-02-25 Thread Charlie Griefer
assuming there -is- a calling page... On 2/25/07, Richard Colman <[EMAIL PROTECTED]> wrote: > What is the easiest way to do a back to the calling page? > > Rick Colman > > ~| ColdFusion MX7 and Flex 2 Build sales & ma

RE: cflocation - requires hitting submit button twice

2006-12-17 Thread Bobby Hartsfield
If your queries are cached, it's not going to make difference so make sure that's not the case. I do all of this in one template with smaller single step forms. 1) Check to see if the form was submitted. If so, validate any fields and update the record then redirect right back the same page so th

Re: CFLocation to an exe on another server

2006-08-28 Thread Ben Doom
>Use javascript? > >Use the meta tag? Tried both. Both triggered IE to block the download of a "potentially harmful file". >Use the Java page context thing (I can't remember it off the top of my head >should be easy to find if you google it). Hadn't thought of that. Maybe worth a look if this

Re: CFLocation to an exe on another server

2006-08-28 Thread Ben Doom
>Redirect to server 2 to a file that redirects locally to the exe and see if >that works (it most likely won't if it is not working already). We're redirecting to someone else's server, anyway. Thanks for the idea, though. --Ben

RE: CFLocation to an exe on another server

2006-08-28 Thread loathe
CF-Talk > Subject: Re: CFLocation to an exe on another server > > This may sound like a bad solution .. (but it's all I could come up with > quickly). > > Redirect to server 2 to a file that redirects locally to the exe and see > if > that works (it most likely won

Re: CFLocation to an exe on another server

2006-08-28 Thread Ben Doom
> Here's the quandary: > > We're trying to redirect to a downloadable executable on another > server. If I type the address directly into the address bar of IE/Win, > it works fine. If I CFLocation to the file in Firefox, it works fine. > If I CFLocation to the file in IE/Win, it drops the .

Re: CFLocation to an exe on another server

2006-08-28 Thread Paul Giesenhagen
This may sound like a bad solution .. (but it's all I could come up with quickly). Redirect to server 2 to a file that redirects locally to the exe and see if that works (it most likely won't if it is not working already). Paul Giesenhagen QuillDesign 417-885-1375 http://www.quilldesign.com

Re: cflocation and HTTPS/HTTP

2006-05-11 Thread Crow T . Robot
you >need to follow-up with a META refresh to the correct protocol. > >M!ke > >-Original Message- >From: Snake [mailto:[EMAIL PROTECTED] >Sent: Wednesday, May 10, 2006 4:55 PM >To: CF-Talk >Subject: RE: cflocation and HTTPS/HTTP > >Try doing a javas

RE: cflocation and HTTPS/HTTP

2006-05-11 Thread Dawson, Michael
-Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 10, 2006 4:55 PM To: CF-Talk Subject: RE: cflocation and HTTPS/HTTP Try doing a javascript redirection and see if it still happens. I have had numerous problems with cflocation, sometimes it just doesn't work on

RE: cflocation and HTTPS/HTTP

2006-05-10 Thread Snake
that redirected the page instead. -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: 10 May 2006 22:43 To: CF-Talk Subject: Re: cflocation and HTTPS/HTTP Yea, I appreciate that, guys, but that's not the error I'm getting. Everything's fine on that f

Re: cflocation and HTTPS/HTTP

2006-05-10 Thread Ray Champagne
rc that is, if they are > relative img paths without http that wont happen. > > -Original Message- > From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] > Sent: 10 May 2006 21:32 > To: CF-Talk > Subject: RE: cflocation and HTTPS/HTTP > > Do you have images

RE: cflocation and HTTPS/HTTP

2006-05-10 Thread Snake
If you have full HTTP paths on all the image src that is, if they are relative img paths without http that wont happen. -Original Message- From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] Sent: 10 May 2006 21:32 To: CF-Talk Subject: RE: cflocation and HTTPS/HTTP Do you have

Re: cflocation and HTTPS/HTTP

2006-05-10 Thread Crow T. Robot
Hi Al: Thanks for taking the time to look this over. The security warning I get isn't the "There are secure and unsecure portions of this page, do you want to see only the secure items?" (I'm paraphrasing) one, it's the one that tells you when you're navigating from a secure page to a non-secu

RE: cflocation and HTTPS/HTTP

2006-05-10 Thread Everett, Al \(NIH/NIGMS\) [C]
Do you have images on the page? If you are hitting a page with https: but the tags are http: you'll get that message for every image. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240166 Archives: http://www.houseof

Re: cflocation and cfcontent

2006-03-23 Thread Ray Champagne
Yea, me neither. Which makes it all the more frustrating. I figured out a way to do what I needed with a "hidden" text box on the page that changes via javascript when the "Download" button is clicked. I just needed a "last downloaded" date to appear as if it had changed on the page. Works

Re: cflocation and cfcontent

2006-03-23 Thread Rob Wilkerson
I've done this using a hidden iframe and I imagine you could also do it using AJaX, but I haven't tried it that way. For me, this isn't a problem that comes up very often. On 3/23/06, Ray Champagne <[EMAIL PROTECTED]> wrote: > Yea, that's pretty much my thought, but I thought someone might have >

Re: cflocation and cfcontent

2006-03-23 Thread Ray Champagne
Yea, that's pretty much my thought, but I thought someone might have come up with a workaround, not necessarily using both in the same template, maybe a popup, I dunno. I've tried to think of elaborate ways to do what I want, and I've come close, but no cigar. Rob Wilkerson wrote: > I've never

Re: cflocation and cfcontent

2006-03-23 Thread Rob Wilkerson
I've never tried it, but I would assume it's impossible in the same way it's impossible to display page content if there's a cflocation tag present. The cflocation occurs on the server side. Content delivery - in any form - takes place on the client side. On 3/23/06, Ray Champagne <[EMAIL PROTEC

Re: cflocation/ie 6 bug - possible workaround

2006-03-15 Thread Catherine Alleva
: Catherine Alleva [mailto:[EMAIL PROTECTED] >Sent: Tuesday, January 17, 2006 4:38 PM >To: CF-Talk >Subject: Re: cflocation/ie 6 bug - possible workaround > > >Having the same problem..or similar. cflocation only works with IE 6 >once in a while. I noticed the problem about a mon

RE: cflocation/ie 6 bug - possible workaround

2006-01-18 Thread FROEHLING, ROBERT \(AIT\)
Catherine, I had the same problem last year. It was fixed after installing JRun4 Updater 6. http://www.macromedia.com/go/5c9389c8 Robert -Original Message- From: Catherine Alleva [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 17, 2006 4:38 PM To: CF-Talk Subject: Re: cflocation/ie

Re: cflocation/ie 6 bug - possible workaround

2006-01-18 Thread Larry Lyons
>On 1/18/06, Larry Lyons <[EMAIL PROTECTED]> wrote: > >First off, I believe the syntax should be >getPageContext.forward("whatever.cfm"). That being said, the thing you >need to be careful with when using the server-side re-direct is that >if you attempt to reload a page that was the result of one

Re: cflocation/ie 6 bug - possible workaround

2006-01-18 Thread Dave Carabetta
On 1/18/06, Larry Lyons <[EMAIL PROTECTED]> wrote: > >A number of our client sites have had problems where a page will display > >HTTP headers and/or simply "hang" if the page is referred to via a > >cflocation. > > > >This most often happens if the cflocation is inside other ColdFusion > >tags, an

  1   2   3   4   >