Re: Sending and = over a URL

2015-03-15 Thread Phillip Vector

Thank you! :)

On Sun, Mar 15, 2015 at 1:06 AM, Andrew Scott andr...@andyscott.id.au
wrote:


 Try URLEncode and URLDecode

 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411


 On Sun, Mar 15, 2015 at 6:37 PM, Phillip Vector vec...@mostdeadlygame.com
 
 wrote:

 
  If it helps...
 
 
  cfoutput
 
 
  cfset ServerPassword = 'Test123'
 
  cfset Text = ReplaceNoCase(cgi.query_string,
  'fuseaction=IncomingMessage.DefaultMessage=', '')
  #Text#P
 
  cfset Text = Decrypt(text,'#ServerPassword#')
  #Text#P
  cfif find('IncomingMessage.DefaultMessage=',Text)
  PassedP
 
  cfset FinalURL = ReplaceNoCase(Text,
  'fuseaction=IncomingMessage.Default', '')
 
 
  HR
  #FInalURL#cfabort
 
  cfloop list=#FinalURL# delimiters= index=i
  cfloop list=#i# delimiters== index=x
  cfset i = x
  /cfloop
  /cfloop
 
  #Message# - #Name# - #x# - #y#
  HR
 
  cfelse
  Failure. Get a job hippie.
  cfabort
  /cfif
 
 
  /cfoutput
 
 
 
  It bombs out at the decryption line. Is there something obvious I'm
 missing
  here? I get a java.lang.ArrayIndexOutOfBoundsException error. The first
  text line has the URL code I am passing in to decrypt and I managed to
 work
  around the = and  issue (unless that is what is causing the issue). Can
  someone help a brotha out? :)
 
  On Sun, Mar 15, 2015 at 12:21 AM, Phillip Vector 
  vec...@mostdeadlygame.com
  wrote:
 
   I have a program that sends me info via a URL. I'd like to encrypt it,
  but
   when I do, I get 's and ='s in the string.
  
   Is there some way I can still send the whole string with those
 characters
   in it through a base URL string or is there an encryption method that
   doesn't use those special characters?
  
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360262
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Sending and = over a URL

2015-03-15 Thread Phillip Vector

I have a program that sends me info via a URL. I'd like to encrypt it, but
when I do, I get 's and ='s in the string.

Is there some way I can still send the whole string with those characters
in it through a base URL string or is there an encryption method that
doesn't use those special characters?


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360259
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Sending and = over a URL

2015-03-15 Thread Phillip Vector

If it helps...


cfoutput


cfset ServerPassword = 'Test123'

cfset Text = ReplaceNoCase(cgi.query_string,
'fuseaction=IncomingMessage.DefaultMessage=', '')
#Text#P

cfset Text = Decrypt(text,'#ServerPassword#')
#Text#P
cfif find('IncomingMessage.DefaultMessage=',Text)
PassedP

cfset FinalURL = ReplaceNoCase(Text,
'fuseaction=IncomingMessage.Default', '')


HR
#FInalURL#cfabort

cfloop list=#FinalURL# delimiters= index=i
cfloop list=#i# delimiters== index=x
cfset i = x
/cfloop
/cfloop

#Message# - #Name# - #x# - #y#
HR

cfelse
Failure. Get a job hippie.
cfabort
/cfif


/cfoutput



It bombs out at the decryption line. Is there something obvious I'm missing
here? I get a java.lang.ArrayIndexOutOfBoundsException error. The first
text line has the URL code I am passing in to decrypt and I managed to work
around the = and  issue (unless that is what is causing the issue). Can
someone help a brotha out? :)

On Sun, Mar 15, 2015 at 12:21 AM, Phillip Vector vec...@mostdeadlygame.com
wrote:

 I have a program that sends me info via a URL. I'd like to encrypt it, but
 when I do, I get 's and ='s in the string.

 Is there some way I can still send the whole string with those characters
 in it through a base URL string or is there an encryption method that
 doesn't use those special characters?



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360260
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Sending and = over a URL

2015-03-15 Thread Andrew Scott

Try URLEncode and URLDecode

Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+:  http://plus.google.com/113032480415921517411


On Sun, Mar 15, 2015 at 6:37 PM, Phillip Vector vec...@mostdeadlygame.com
wrote:


 If it helps...


 cfoutput


 cfset ServerPassword = 'Test123'

 cfset Text = ReplaceNoCase(cgi.query_string,
 'fuseaction=IncomingMessage.DefaultMessage=', '')
 #Text#P

 cfset Text = Decrypt(text,'#ServerPassword#')
 #Text#P
 cfif find('IncomingMessage.DefaultMessage=',Text)
 PassedP

 cfset FinalURL = ReplaceNoCase(Text,
 'fuseaction=IncomingMessage.Default', '')


 HR
 #FInalURL#cfabort

 cfloop list=#FinalURL# delimiters= index=i
 cfloop list=#i# delimiters== index=x
 cfset i = x
 /cfloop
 /cfloop

 #Message# - #Name# - #x# - #y#
 HR

 cfelse
 Failure. Get a job hippie.
 cfabort
 /cfif


 /cfoutput



 It bombs out at the decryption line. Is there something obvious I'm missing
 here? I get a java.lang.ArrayIndexOutOfBoundsException error. The first
 text line has the URL code I am passing in to decrypt and I managed to work
 around the = and  issue (unless that is what is causing the issue). Can
 someone help a brotha out? :)

 On Sun, Mar 15, 2015 at 12:21 AM, Phillip Vector 
 vec...@mostdeadlygame.com
 wrote:

  I have a program that sends me info via a URL. I'd like to encrypt it,
 but
  when I do, I get 's and ='s in the string.
 
  Is there some way I can still send the whole string with those characters
  in it through a base URL string or is there an encryption method that
  doesn't use those special characters?
 


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360261
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


isvalid(url) issue

2014-08-27 Thread John M Bliss

ACF 10's isvalid(url) says that this is not a valid URL. What's your
favorite alternative to isvalid(url)?

http://www.domain.com/page.php?var=valuevar=valuevar=http://www.domain.com/path/page.htmvar=value

-- 
John Bliss - http://www.linkedin.com/in/jbliss


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359205
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: isvalid(url) issue

2014-08-27 Thread Russ Michaels

you are better off using your own regex to define what you consider to be
valid.
you may find something specific on cflib.org or riaforge.org
or there is always http://www.validatethis.org/



On Wed, Aug 27, 2014 at 7:02 PM, John M Bliss bliss.j...@gmail.com wrote:


 ACF 10's isvalid(url) says that this is not a valid URL. What's your
 favorite alternative to isvalid(url)?


 http://www.domain.com/page.php?var=valuevar=valuevar=http://www.domain.com/path/page.htmvar=value

 --
 John Bliss - http://www.linkedin.com/in/jbliss


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359206
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: isvalid(url) issue

2014-08-27 Thread John M Bliss

This seems better: http://cflib.org/udf/isURL


On Wed, Aug 27, 2014 at 2:19 PM, Russ Michaels r...@michaels.me.uk wrote:


 you are better off using your own regex to define what you consider to be
 valid.
 you may find something specific on cflib.org or riaforge.org
 or there is always http://www.validatethis.org/



 On Wed, Aug 27, 2014 at 7:02 PM, John M Bliss bliss.j...@gmail.com
 wrote:

 
  ACF 10's isvalid(url) says that this is not a valid URL. What's your
  favorite alternative to isvalid(url)?
 
 
 
 http://www.domain.com/page.php?var=valuevar=valuevar=http://www.domain.com/path/page.htmvar=value
 
  --
  John Bliss - http://www.linkedin.com/in/jbliss
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359207
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: isvalid(url) issue

2014-08-27 Thread Byron Mann

Wonder if encoding your query string values would result in a positive
response.

Byron Mann
Lead Engineer  Architect
HostMySite.com
On Aug 27, 2014 2:03 PM, John M Bliss bliss.j...@gmail.com wrote:


 ACF 10's isvalid(url) says that this is not a valid URL. What's your
 favorite alternative to isvalid(url)?


 http://www.domain.com/page.php?var=valuevar=valuevar=http://www.domain.com/path/page.htmvar=value

 --
 John Bliss - http://www.linkedin.com/in/jbliss


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359208
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: isvalid(url) issue

2014-08-27 Thread Russ Michaels

anyhting is probably better, isValid() seems to be quite unreliable judging
by the number of posts I have seen saying it doesn't work.
it would be interesting to see what it thinks about itself :-)
IsValid( IsValid() )




On Wed, Aug 27, 2014 at 7:21 PM, John M Bliss bliss.j...@gmail.com wrote:


 This seems better: http://cflib.org/udf/isURL


 On Wed, Aug 27, 2014 at 2:19 PM, Russ Michaels r...@michaels.me.uk
 wrote:

 
  you are better off using your own regex to define what you consider to be
  valid.
  you may find something specific on cflib.org or riaforge.org
  or there is always http://www.validatethis.org/
 
 
 
  On Wed, Aug 27, 2014 at 7:02 PM, John M Bliss bliss.j...@gmail.com
  wrote:
 
  
   ACF 10's isvalid(url) says that this is not a valid URL. What's your
   favorite alternative to isvalid(url)?
  
  
  
 
 http://www.domain.com/page.php?var=valuevar=valuevar=http://www.domain.com/path/page.htmvar=value
  
   --
   John Bliss - http://www.linkedin.com/in/jbliss
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359209
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: isvalid(url) issue

2014-08-27 Thread Adam Cameron



 ACF 10's isvalid(url) says that this is not a valid URL. What's your
 favorite alternative to isvalid(url)?


 http://www.domain.com/page.php?var=valuevar=valuevar=http://www.domain.com/path/page.htmvar=value


Just to be clear... it's saying it's not a valid URL because it's *not* a
valid URL. You need to encode some of the characters in 
http://www.domain.com/path/page.htm
http://www.domain.com/page.php?var=valuevar=valuevar=http://www.domain.com/path/page.htmvar=value
for it to be a valid value in a URL query string. The RFC is pretty clear
on this (http://tools.ietf.org/html/rfc3986#appendix-A). Once you deal with
that, then the URL passes validation.

Interestingly (stretching the definition a bit) ColdFusion 11 has a
regression here: it passes your dodgy string as a valid URL. Railo does too.

-- 
Adam


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359210
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Weird URL request parameters

2014-05-13 Thread UXB

 That country set looked suspicious so I googled
registering+only+mode+is+ON

Thanks Jen.  I tried searching for the URL variables but came up empty.  I
assumed that whatever it was that was generating the requests was using
proxies but couldn't make sense of what it's purpose was.  The domain of the
specific website they keep hitting does have a user forum so it now makes
sense as to what they are trying to do.  Thanks.



Dennis Powers
UXB Internet - A website Design and Hosting Company
P.O. Box 6028, Wolcott, CT 06716 - T:203-879-2844
W: http://www.uxbinternet.com
W: http://www.ctbusinesslist.com



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358634
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Weird URL request parameters

2014-05-12 Thread UXB

Does anyone know or have a clue as to what is generating these requests?

/index.cfm?fid=2889Result:+used+x_fields.txt;+chosen
+nickname+%22pn49o0w5bs%22;+registered+%28registering+only+mode+is+ON%29;

They are coming from various IP's in Europe, southeast Asia, Ukraine and
Middle USA on a nearly regular basis.

They are not causing any issue since we trap them but I was wondering if
anyone knew what software was generating them and/or why?




Dennis Powers
UXB Internet - A website Design and Hosting Company
P.O. Box 6028, Wolcott, CT 06716 - T:203-879-2844
W: http://www.uxbinternet.com
W: http://www.ctbusinesslist.com




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358622
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Weird URL request parameters

2014-05-12 Thread Jen Larkin

That country set looked suspicious so I googled registering+only+mode+is+ON

The top results were at a blackhat seo site, so I googled the tool
mentioned there. It's a bot trying to post spam to forums.
http://en.wikipedia.org/wiki/XRumer

On Mon, May 12, 2014 at 6:35 PM, UXB denn...@uxbinternet.com wrote:

 Does anyone know or have a clue as to what is generating these requests?

 /index.cfm?fid=2889Result:+used+x_fields.txt;+chosen
 +nickname+%22pn49o0w5bs%22;+registered+%28registering+only+mode+is+ON%29;

 They are coming from various IP's in Europe, southeast Asia, Ukraine and
 Middle USA on a nearly regular basis.

 They are not causing any issue since we trap them but I was wondering if
 anyone knew what software was generating them and/or why?




 Dennis Powers
 UXB Internet - A website Design and Hosting Company
 P.O. Box 6028, Wolcott, CT 06716 - T:203-879-2844
 W: http://www.uxbinternet.com
 W: http://www.ctbusinesslist.com




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358623
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-26 Thread John M Bliss

So, tasks showing:

Next Run: EXPIRED

...before their scheduled run-time this AM actually DID run and now show,
for example:

Last Run: 2/26/2014 1:24:00 AM
Next Run: EXPIRED

W. T. F.


On Tue, Feb 25, 2014 at 10:36 PM, John M Bliss bliss.j...@gmail.com wrote:

 I even edited the neo-cron.xml file, replaced all of my new %40's with
 @'s, cycled the server, confirmed that the @'s are back in the URL's...but
 they still show as:

 Next Run: EXPIRED


 On Tue, Feb 25, 2014 at 10:30 PM, John M Bliss bliss.j...@gmail.comwrote:

 Even worse: when I use:

 var=cf-talk%40houseoffusion.com

 ...CF tells me:

 Next Run: EXPIRED

 ...despite the fact that I have:

 Duration: Jan 28, 2009 - INDEFINITELY
 Recurring Daily at 1:24 AM

 This is only for tasks with URL containing %40


 On Tue, Feb 25, 2014 at 10:23 PM, John M Bliss bliss.j...@gmail.comwrote:

 That's what I typed. I did not think it mattered that my value was
 actually an email address:

 var=cf-talk@houseoffusion.com

 Versions of CF before 10 did not complain about that it a task URL.


 On Tue, Feb 25, 2014 at 10:12 PM, Raymond Camden 
 raymondcam...@gmail.com wrote:


 I think GMail is mucking it up. This is what I saw:


 https://www.evernote.com/shard/s3/sh/8e0fdc74-d3a1-4384-b8ca-f3c99c6c87a7/30019c7b1b44d51381e339d16d4a1f40


 On Tue, Feb 25, 2014 at 9:06 PM, John M Bliss bliss.j...@gmail.com
 wrote:

 
  No. I wrote, 
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
  
  
 
  CF earlier than v10 was fine with:
 
  var=va...@gmail.com
 
 
  On Tue, Feb 25, 2014 at 10:03 PM, Raymond Camden 
 raymondcam...@gmail.com
  wrote:
 
  
   Was there a @ in your original post?
  
  
   On Tue, Feb 25, 2014 at 9:01 PM, John M Bliss bliss.j...@gmail.com
 
   wrote:
  
   
In:
   
var=value
   
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value

   
...it was not allowing an @ in the value. Instead, I had to use
 %40
   
   
On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels 
 r...@michaels.me.uk
wrote:
   

 Yea its neo-cron.xml I think

 Russ Michaels
 www.michaels.me.uk
 cfmldeveloper.com
 cflive.net
 cfsearch.com
 On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com
 wrote:

 
  Anyone? Is there an .xml file I can edit?
 
 
  On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss 
  bliss.j...@gmail.com
  wrote:
 
   ACF 10,0,12,286680
  
   I have a Scheduled Task imported from ACF 9 which works
 fine.
However,
  now
   when I edit it, change the schedule (but not the URL), and
 click
Save,
  I'm
   getting:
  
   URL is specified in wrong format.
  
   URL (which I know works) is:
  
  
 

   
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
  
   Any idea why it doesn't like that URL?
  
   --
   John Bliss - http://www.linkedin.com/in/jbliss
  
 
 
 
  --
  John Bliss - http://www.linkedin.com/in/jbliss
 
 
 


   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357776
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-26 Thread Cameron Childress

As a side note, when you get a chance I would change that variable name
from var to something else, unless that was just dummy info for the list.

Since var means something special inside functions it could be reserved
now or in the future.

-Cameron

On Tue, Feb 25, 2014 at 10:23 PM, John M Bliss wrote:


 That's what I typed. I did not think it mattered that my value was actually
 an email address:

 var=cf-talk@houseoffusion.com

 Versions of CF before 10 did not complain about that it a task URL.


 On Tue, Feb 25, 2014 at 10:12 PM, Raymond Camden raymondcam...@gmail.com
 wrote:

 
  I think GMail is mucking it up. This is what I saw:
 
 
 
 https://www.evernote.com/shard/s3/sh/8e0fdc74-d3a1-4384-b8ca-f3c99c6c87a7/30019c7b1b44d51381e339d16d4a1f40
 
 
  On Tue, Feb 25, 2014 at 9:06 PM, John M Bliss bliss.j...@gmail.com
  wrote:
 
  
   No. I wrote, 
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
   
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
   
   
  
   CF earlier than v10 was fine with:
  
   var=va...@gmail.com
  
  
   On Tue, Feb 25, 2014 at 10:03 PM, Raymond Camden 
  raymondcam...@gmail.com
   wrote:
  
   
Was there a @ in your original post?
   
   
On Tue, Feb 25, 2014 at 9:01 PM, John M Bliss bliss.j...@gmail.com
wrote:
   

 In:

 var=value

   
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
 

 ...it was not allowing an @ in the value. Instead, I had to use
 %40


 On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels 
 r...@michaels.me.uk
 wrote:

 
  Yea its neo-cron.xml I think
 
  Russ Michaels
  www.michaels.me.uk
  cfmldeveloper.com
  cflive.net
  cfsearch.com
  On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com
 wrote:
 
  
   Anyone? Is there an .xml file I can edit?
  
  
   On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss 
   bliss.j...@gmail.com
   wrote:
  
ACF 10,0,12,286680
   
I have a Scheduled Task imported from ACF 9 which works fine.
 However,
   now
when I edit it, change the schedule (but not the URL), and
  click
 Save,
   I'm
getting:
   
URL is specified in wrong format.
   
URL (which I know works) is:
   
   
  
 

   
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
   
Any idea why it doesn't like that URL?
   
--
John Bliss - http://www.linkedin.com/in/jbliss
   
  
  
  
   --
   John Bliss - http://www.linkedin.com/in/jbliss
  
  
  
 
 


   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:35
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-26 Thread John M Bliss

That was obfuscated for this list.


On Wed, Feb 26, 2014 at 9:35 AM, Cameron Childress camer...@gmail.comwrote:


 As a side note, when you get a chance I would change that variable name
 from var to something else, unless that was just dummy info for the list.

 Since var means something special inside functions it could be reserved
 now or in the future.

 -Cameron

 On Tue, Feb 25, 2014 at 10:23 PM, John M Bliss wrote:

 
  That's what I typed. I did not think it mattered that my value was
 actually
  an email address:
 
  var=cf-talk@houseoffusion.com
 
  Versions of CF before 10 did not complain about that it a task URL.
 
 
  On Tue, Feb 25, 2014 at 10:12 PM, Raymond Camden 
 raymondcam...@gmail.com
  wrote:
 
  
   I think GMail is mucking it up. This is what I saw:
  
  
  
 
 https://www.evernote.com/shard/s3/sh/8e0fdc74-d3a1-4384-b8ca-f3c99c6c87a7/30019c7b1b44d51381e339d16d4a1f40
  
  
   On Tue, Feb 25, 2014 at 9:06 PM, John M Bliss bliss.j...@gmail.com
   wrote:
  
   
No. I wrote, 
   
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value

   
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value


   
CF earlier than v10 was fine with:
   
var=va...@gmail.com
   
   
On Tue, Feb 25, 2014 at 10:03 PM, Raymond Camden 
   raymondcam...@gmail.com
wrote:
   

 Was there a @ in your original post?


 On Tue, Feb 25, 2014 at 9:01 PM, John M Bliss 
 bliss.j...@gmail.com
 wrote:

 
  In:
 
  var=value
 

   
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
  
 
  ...it was not allowing an @ in the value. Instead, I had to use
  %40
 
 
  On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels 
  r...@michaels.me.uk
  wrote:
 
  
   Yea its neo-cron.xml I think
  
   Russ Michaels
   www.michaels.me.uk
   cfmldeveloper.com
   cflive.net
   cfsearch.com
   On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com
  wrote:
  
   
Anyone? Is there an .xml file I can edit?
   
   
On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss 
bliss.j...@gmail.com
wrote:
   
 ACF 10,0,12,286680

 I have a Scheduled Task imported from ACF 9 which works
 fine.
  However,
now
 when I edit it, change the schedule (but not the URL), and
   click
  Save,
I'm
 getting:

 URL is specified in wrong format.

 URL (which I know works) is:


   
  
 

   
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value

 Any idea why it doesn't like that URL?

 --
 John Bliss - http://www.linkedin.com/in/jbliss

   
   
   
--
John Bliss - http://www.linkedin.com/in/jbliss
   
   
   
  
  
 
 


   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357778
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


URL is specified in wrong format

2014-02-25 Thread John M Bliss

ACF 10,0,12,286680

I have a Scheduled Task imported from ACF 9 which works fine. However, now
when I edit it, change the schedule (but not the URL), and click Save, I'm
getting:

URL is specified in wrong format.

URL (which I know works) is:

http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value

Any idea why it doesn't like that URL?

-- 
John Bliss - http://www.linkedin.com/in/jbliss


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357755
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden

So I went to test this. I made a new scheduled task and I'm immediately
logged out.

There was an error accessing this page. Check logs for more details. 


On Tue, Feb 25, 2014 at 1:24 PM, John M Bliss bliss.j...@gmail.com wrote:


 ACF 10,0,12,286680

 I have a Scheduled Task imported from ACF 9 which works fine. However, now
 when I edit it, change the schedule (but not the URL), and click Save, I'm
 getting:

 URL is specified in wrong format.

 URL (which I know works) is:

 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value

 Any idea why it doesn't like that URL?

 --
 John Bliss - http://www.linkedin.com/in/jbliss


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357756
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden

Yeah - sorry man - ignore me.


On Tue, Feb 25, 2014 at 1:30 PM, John M Bliss bliss.j...@gmail.com wrote:


 WTF? That's a different / bigger(?) problem...


 On Tue, Feb 25, 2014 at 2:29 PM, Raymond Camden raymondcam...@gmail.com
 wrote:

 
  So I went to test this. I made a new scheduled task and I'm immediately
  logged out.
 
  There was an error accessing this page. Check logs for more details. 
 
 
  On Tue, Feb 25, 2014 at 1:24 PM, John M Bliss bliss.j...@gmail.com
  wrote:
 
  
   ACF 10,0,12,286680
  
   I have a Scheduled Task imported from ACF 9 which works fine. However,
  now
   when I edit it, change the schedule (but not the URL), and click Save,
  I'm
   getting:
  
   URL is specified in wrong format.
  
   URL (which I know works) is:
  
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
  
   Any idea why it doesn't like that URL?
  
   --
   John Bliss - http://www.linkedin.com/in/jbliss
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357759
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden

Wow, I can't do anything in my CF Admin anymore. I login. I try to change
something. And I get that error. Sorry to hijack the thread.

There was an error while verifying the token. Either the session timed out
or un-authenticated access is suspected.


On Tue, Feb 25, 2014 at 1:29 PM, Raymond Camden raymondcam...@gmail.comwrote:

 So I went to test this. I made a new scheduled task and I'm immediately
 logged out.

 There was an error accessing this page. Check logs for more details. 


 On Tue, Feb 25, 2014 at 1:24 PM, John M Bliss bliss.j...@gmail.comwrote:


 ACF 10,0,12,286680

 I have a Scheduled Task imported from ACF 9 which works fine. However, now
 when I edit it, change the schedule (but not the URL), and click Save, I'm
 getting:

 URL is specified in wrong format.

 URL (which I know works) is:

 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value

 Any idea why it doesn't like that URL?

 --
 John Bliss - http://www.linkedin.com/in/jbliss


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357758
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss

WTF? That's a different / bigger(?) problem...


On Tue, Feb 25, 2014 at 2:29 PM, Raymond Camden raymondcam...@gmail.comwrote:


 So I went to test this. I made a new scheduled task and I'm immediately
 logged out.

 There was an error accessing this page. Check logs for more details. 


 On Tue, Feb 25, 2014 at 1:24 PM, John M Bliss bliss.j...@gmail.com
 wrote:

 
  ACF 10,0,12,286680
 
  I have a Scheduled Task imported from ACF 9 which works fine. However,
 now
  when I edit it, change the schedule (but not the URL), and click Save,
 I'm
  getting:
 
  URL is specified in wrong format.
 
  URL (which I know works) is:
 
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
 
  Any idea why it doesn't like that URL?
 
  --
  John Bliss - http://www.linkedin.com/in/jbliss
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357757
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss

Anyone? Is there an .xml file I can edit?


On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss bliss.j...@gmail.com wrote:

 ACF 10,0,12,286680

 I have a Scheduled Task imported from ACF 9 which works fine. However, now
 when I edit it, change the schedule (but not the URL), and click Save, I'm
 getting:

 URL is specified in wrong format.

 URL (which I know works) is:

 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value

 Any idea why it doesn't like that URL?

 --
 John Bliss - http://www.linkedin.com/in/jbliss




-- 
John Bliss - http://www.linkedin.com/in/jbliss


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357763
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread Russ Michaels

Yea its neo-cron.xml I think

Russ Michaels
www.michaels.me.uk
cfmldeveloper.com
cflive.net
cfsearch.com
On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com wrote:


 Anyone? Is there an .xml file I can edit?


 On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss bliss.j...@gmail.com
 wrote:

  ACF 10,0,12,286680
 
  I have a Scheduled Task imported from ACF 9 which works fine. However,
 now
  when I edit it, change the schedule (but not the URL), and click Save,
 I'm
  getting:
 
  URL is specified in wrong format.
 
  URL (which I know works) is:
 
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
 
  Any idea why it doesn't like that URL?
 
  --
  John Bliss - http://www.linkedin.com/in/jbliss
 



 --
 John Bliss - http://www.linkedin.com/in/jbliss


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357764
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss

In:

var=valuehttp://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value

...it was not allowing an @ in the value. Instead, I had to use %40


On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels r...@michaels.me.uk wrote:


 Yea its neo-cron.xml I think

 Russ Michaels
 www.michaels.me.uk
 cfmldeveloper.com
 cflive.net
 cfsearch.com
 On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com wrote:

 
  Anyone? Is there an .xml file I can edit?
 
 
  On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss bliss.j...@gmail.com
  wrote:
 
   ACF 10,0,12,286680
  
   I have a Scheduled Task imported from ACF 9 which works fine. However,
  now
   when I edit it, change the schedule (but not the URL), and click Save,
  I'm
   getting:
  
   URL is specified in wrong format.
  
   URL (which I know works) is:
  
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
  
   Any idea why it doesn't like that URL?
  
   --
   John Bliss - http://www.linkedin.com/in/jbliss
  
 
 
 
  --
  John Bliss - http://www.linkedin.com/in/jbliss
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357767
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden

Was there a @ in your original post?


On Tue, Feb 25, 2014 at 9:01 PM, John M Bliss bliss.j...@gmail.com wrote:


 In:

 var=value
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
 

 ...it was not allowing an @ in the value. Instead, I had to use %40


 On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels r...@michaels.me.uk
 wrote:

 
  Yea its neo-cron.xml I think
 
  Russ Michaels
  www.michaels.me.uk
  cfmldeveloper.com
  cflive.net
  cfsearch.com
  On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com wrote:
 
  
   Anyone? Is there an .xml file I can edit?
  
  
   On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss bliss.j...@gmail.com
   wrote:
  
ACF 10,0,12,286680
   
I have a Scheduled Task imported from ACF 9 which works fine.
 However,
   now
when I edit it, change the schedule (but not the URL), and click
 Save,
   I'm
getting:
   
URL is specified in wrong format.
   
URL (which I know works) is:
   
   
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
   
Any idea why it doesn't like that URL?
   
--
John Bliss - http://www.linkedin.com/in/jbliss
   
  
  
  
   --
   John Bliss - http://www.linkedin.com/in/jbliss
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357768
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss

No. I wrote, 
http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=valuehttp://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value


CF earlier than v10 was fine with:

var=va...@gmail.com


On Tue, Feb 25, 2014 at 10:03 PM, Raymond Camden raymondcam...@gmail.comwrote:


 Was there a @ in your original post?


 On Tue, Feb 25, 2014 at 9:01 PM, John M Bliss bliss.j...@gmail.com
 wrote:

 
  In:
 
  var=value
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
  
 
  ...it was not allowing an @ in the value. Instead, I had to use %40
 
 
  On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels r...@michaels.me.uk
  wrote:
 
  
   Yea its neo-cron.xml I think
  
   Russ Michaels
   www.michaels.me.uk
   cfmldeveloper.com
   cflive.net
   cfsearch.com
   On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com wrote:
  
   
Anyone? Is there an .xml file I can edit?
   
   
On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss bliss.j...@gmail.com
wrote:
   
 ACF 10,0,12,286680

 I have a Scheduled Task imported from ACF 9 which works fine.
  However,
now
 when I edit it, change the schedule (but not the URL), and click
  Save,
I'm
 getting:

 URL is specified in wrong format.

 URL (which I know works) is:


   
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value

 Any idea why it doesn't like that URL?

 --
 John Bliss - http://www.linkedin.com/in/jbliss

   
   
   
--
John Bliss - http://www.linkedin.com/in/jbliss
   
   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357769
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden

I think GMail is mucking it up. This is what I saw:

https://www.evernote.com/shard/s3/sh/8e0fdc74-d3a1-4384-b8ca-f3c99c6c87a7/30019c7b1b44d51381e339d16d4a1f40


On Tue, Feb 25, 2014 at 9:06 PM, John M Bliss bliss.j...@gmail.com wrote:


 No. I wrote, 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
 
 

 CF earlier than v10 was fine with:

 var=va...@gmail.com


 On Tue, Feb 25, 2014 at 10:03 PM, Raymond Camden raymondcam...@gmail.com
 wrote:

 
  Was there a @ in your original post?
 
 
  On Tue, Feb 25, 2014 at 9:01 PM, John M Bliss bliss.j...@gmail.com
  wrote:
 
  
   In:
  
   var=value
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
   
  
   ...it was not allowing an @ in the value. Instead, I had to use %40
  
  
   On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels r...@michaels.me.uk
   wrote:
  
   
Yea its neo-cron.xml I think
   
Russ Michaels
www.michaels.me.uk
cfmldeveloper.com
cflive.net
cfsearch.com
On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com wrote:
   

 Anyone? Is there an .xml file I can edit?


 On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss 
 bliss.j...@gmail.com
 wrote:

  ACF 10,0,12,286680
 
  I have a Scheduled Task imported from ACF 9 which works fine.
   However,
 now
  when I edit it, change the schedule (but not the URL), and click
   Save,
 I'm
  getting:
 
  URL is specified in wrong format.
 
  URL (which I know works) is:
 
 

   
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
 
  Any idea why it doesn't like that URL?
 
  --
  John Bliss - http://www.linkedin.com/in/jbliss
 



 --
 John Bliss - http://www.linkedin.com/in/jbliss



   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357770
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss

That's what I typed. I did not think it mattered that my value was actually
an email address:

var=cf-talk@houseoffusion.com

Versions of CF before 10 did not complain about that it a task URL.


On Tue, Feb 25, 2014 at 10:12 PM, Raymond Camden raymondcam...@gmail.comwrote:


 I think GMail is mucking it up. This is what I saw:


 https://www.evernote.com/shard/s3/sh/8e0fdc74-d3a1-4384-b8ca-f3c99c6c87a7/30019c7b1b44d51381e339d16d4a1f40


 On Tue, Feb 25, 2014 at 9:06 PM, John M Bliss bliss.j...@gmail.com
 wrote:

 
  No. I wrote, 
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
  
  
 
  CF earlier than v10 was fine with:
 
  var=va...@gmail.com
 
 
  On Tue, Feb 25, 2014 at 10:03 PM, Raymond Camden 
 raymondcam...@gmail.com
  wrote:
 
  
   Was there a @ in your original post?
  
  
   On Tue, Feb 25, 2014 at 9:01 PM, John M Bliss bliss.j...@gmail.com
   wrote:
  
   
In:
   
var=value
   
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value

   
...it was not allowing an @ in the value. Instead, I had to use %40
   
   
On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels r...@michaels.me.uk
wrote:
   

 Yea its neo-cron.xml I think

 Russ Michaels
 www.michaels.me.uk
 cfmldeveloper.com
 cflive.net
 cfsearch.com
 On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com wrote:

 
  Anyone? Is there an .xml file I can edit?
 
 
  On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss 
  bliss.j...@gmail.com
  wrote:
 
   ACF 10,0,12,286680
  
   I have a Scheduled Task imported from ACF 9 which works fine.
However,
  now
   when I edit it, change the schedule (but not the URL), and
 click
Save,
  I'm
   getting:
  
   URL is specified in wrong format.
  
   URL (which I know works) is:
  
  
 

   
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
  
   Any idea why it doesn't like that URL?
  
   --
   John Bliss - http://www.linkedin.com/in/jbliss
  
 
 
 
  --
  John Bliss - http://www.linkedin.com/in/jbliss
 
 
 


   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357771
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden

Ahhh - ok. :)


On Tue, Feb 25, 2014 at 9:23 PM, John M Bliss bliss.j...@gmail.com wrote:


 That's what I typed. I did not think it mattered that my value was actually
 an email address:

 var=cf-talk@houseoffusion.com

 Versions of CF before 10 did not complain about that it a task URL.


 On Tue, Feb 25, 2014 at 10:12 PM, Raymond Camden raymondcam...@gmail.com
 wrote:

 
  I think GMail is mucking it up. This is what I saw:
 
 
 
 https://www.evernote.com/shard/s3/sh/8e0fdc74-d3a1-4384-b8ca-f3c99c6c87a7/30019c7b1b44d51381e339d16d4a1f40
 
 



-- 
===
Raymond Camden, Web Developer for Adobe

Email : raymondcam...@gmail.com
Blog : www.raymondcamden.com
Twitter: cfjedimaster


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357772
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss

Even worse: when I use:

var=cf-talk%40houseoffusion.com

...CF tells me:

Next Run: EXPIRED

...despite the fact that I have:

Duration: Jan 28, 2009 - INDEFINITELY
Recurring Daily at 1:24 AM

This is only for tasks with URL containing %40


On Tue, Feb 25, 2014 at 10:23 PM, John M Bliss bliss.j...@gmail.com wrote:

 That's what I typed. I did not think it mattered that my value was
 actually an email address:

 var=cf-talk@houseoffusion.com

 Versions of CF before 10 did not complain about that it a task URL.


 On Tue, Feb 25, 2014 at 10:12 PM, Raymond Camden 
 raymondcam...@gmail.comwrote:


 I think GMail is mucking it up. This is what I saw:


 https://www.evernote.com/shard/s3/sh/8e0fdc74-d3a1-4384-b8ca-f3c99c6c87a7/30019c7b1b44d51381e339d16d4a1f40


 On Tue, Feb 25, 2014 at 9:06 PM, John M Bliss bliss.j...@gmail.com
 wrote:

 
  No. I wrote, 
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
  
  
 
  CF earlier than v10 was fine with:
 
  var=va...@gmail.com
 
 
  On Tue, Feb 25, 2014 at 10:03 PM, Raymond Camden 
 raymondcam...@gmail.com
  wrote:
 
  
   Was there a @ in your original post?
  
  
   On Tue, Feb 25, 2014 at 9:01 PM, John M Bliss bliss.j...@gmail.com
   wrote:
  
   
In:
   
var=value
   
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value

   
...it was not allowing an @ in the value. Instead, I had to use
 %40
   
   
On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels r...@michaels.me.uk
 
wrote:
   

 Yea its neo-cron.xml I think

 Russ Michaels
 www.michaels.me.uk
 cfmldeveloper.com
 cflive.net
 cfsearch.com
 On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com
 wrote:

 
  Anyone? Is there an .xml file I can edit?
 
 
  On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss 
  bliss.j...@gmail.com
  wrote:
 
   ACF 10,0,12,286680
  
   I have a Scheduled Task imported from ACF 9 which works fine.
However,
  now
   when I edit it, change the schedule (but not the URL), and
 click
Save,
  I'm
   getting:
  
   URL is specified in wrong format.
  
   URL (which I know works) is:
  
  
 

   
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
  
   Any idea why it doesn't like that URL?
  
   --
   John Bliss - http://www.linkedin.com/in/jbliss
  
 
 
 
  --
  John Bliss - http://www.linkedin.com/in/jbliss
 
 
 


   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357773
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss

I even edited the neo-cron.xml file, replaced all of my new %40's with @'s,
cycled the server, confirmed that the @'s are back in the URL's...but they
still show as:

Next Run: EXPIRED


On Tue, Feb 25, 2014 at 10:30 PM, John M Bliss bliss.j...@gmail.com wrote:

 Even worse: when I use:

 var=cf-talk%40houseoffusion.com

 ...CF tells me:

 Next Run: EXPIRED

 ...despite the fact that I have:

 Duration: Jan 28, 2009 - INDEFINITELY
 Recurring Daily at 1:24 AM

 This is only for tasks with URL containing %40


 On Tue, Feb 25, 2014 at 10:23 PM, John M Bliss bliss.j...@gmail.comwrote:

 That's what I typed. I did not think it mattered that my value was
 actually an email address:

 var=cf-talk@houseoffusion.com

 Versions of CF before 10 did not complain about that it a task URL.


 On Tue, Feb 25, 2014 at 10:12 PM, Raymond Camden raymondcam...@gmail.com
  wrote:


 I think GMail is mucking it up. This is what I saw:


 https://www.evernote.com/shard/s3/sh/8e0fdc74-d3a1-4384-b8ca-f3c99c6c87a7/30019c7b1b44d51381e339d16d4a1f40


 On Tue, Feb 25, 2014 at 9:06 PM, John M Bliss bliss.j...@gmail.com
 wrote:

 
  No. I wrote, 
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value
  
  
 
  CF earlier than v10 was fine with:
 
  var=va...@gmail.com
 
 
  On Tue, Feb 25, 2014 at 10:03 PM, Raymond Camden 
 raymondcam...@gmail.com
  wrote:
 
  
   Was there a @ in your original post?
  
  
   On Tue, Feb 25, 2014 at 9:01 PM, John M Bliss bliss.j...@gmail.com
   wrote:
  
   
In:
   
var=value
   
  
 
 http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value

   
...it was not allowing an @ in the value. Instead, I had to use
 %40
   
   
On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels 
 r...@michaels.me.uk
wrote:
   

 Yea its neo-cron.xml I think

 Russ Michaels
 www.michaels.me.uk
 cfmldeveloper.com
 cflive.net
 cfsearch.com
 On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com
 wrote:

 
  Anyone? Is there an .xml file I can edit?
 
 
  On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss 
  bliss.j...@gmail.com
  wrote:
 
   ACF 10,0,12,286680
  
   I have a Scheduled Task imported from ACF 9 which works fine.
However,
  now
   when I edit it, change the schedule (but not the URL), and
 click
Save,
  I'm
   getting:
  
   URL is specified in wrong format.
  
   URL (which I know works) is:
  
  
 

   
  
 
 http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=value
  
   Any idea why it doesn't like that URL?
  
   --
   John Bliss - http://www.linkedin.com/in/jbliss
  
 
 
 
  --
  John Bliss - http://www.linkedin.com/in/jbliss
 
 
 


   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357774
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: same URL if moving app to new CF instance ?

2013-03-20 Thread Chris

Thanks, all.  Good ideas for testing.

Regards,
Chris


On Fri, Mar 15, 2013 at 6:05 PM, Dave Watts dwa...@figleaf.com wrote:


  We have a number of applications running on one instance of CF9, coming
  through three IIS v6 Web Sites (host headers separate the requests which
  are to three different Fully Qualified Domain Names(FQDNs)).
 
  As I understand, with the Web Server Configuration Tool I'm mapping one
 or
  more IIS Web Sites to one and only one CF instance.
 
  So if we move the high-resource app from its current CF instance to a new
  instance, I need to do something so the IIS Web Site knows which CF
  instance to send the request. But if the IIS Web Site is mapped to only
 one
  CF instance, I can't do that.
 
  Our customer would like the URL (FQDN and directories) to remain the
 same.

 You'll have to run the Web Server Configuration tool (wsconfig) to
 disconnect your IIS virtual server from the existing CF instance, and
 connect it to the new CF instance. Nothing else needs to change in
 IIS, including URLs. It's possible that you currently have your
 existing instance connected using the All web sites option with IIS,
 in which case you'll need to use wsconfig to delete that configuration
 and create individual connections for each IIS virtual server.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/

 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355118
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


same URL if moving app to new CF instance ?

2013-03-15 Thread Chris

Is there any way an application can keep the same URL, when we move it to
another ColdFusion instance on the same server? We need to separate one
high-resource application out of the CF instance that runs all the other
applications.

We can create a new IIS Web Site, we can create a new CF instance ... but
is there a way to keep the same URL?

thank you,
Chris


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355038
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: same URL if moving app to new CF instance ?

2013-03-15 Thread Matt Quackenbush

I don't think I'm understanding the question. You can configure your
domains to point to whatever URL you want them to point to, assuming you
have control of the domain and server(s) in question.

I think a lot more info is required in order to answer the underlying
question you seem to be having.


On Fri, Mar 15, 2013 at 4:24 PM, Chris 0404tow...@gmail.com wrote:


 Is there any way an application can keep the same URL, when we move it to
 another ColdFusion instance on the same server? We need to separate one
 high-resource application out of the CF instance that runs all the other
 applications.

 We can create a new IIS Web Site, we can create a new CF instance ... but
 is there a way to keep the same URL?

 thank you,
 Chris


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355039
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: same URL if moving app to new CF instance ?

2013-03-15 Thread Russ Michaels

What instance a website is using has nothing at all to do with the URL, so
your url would not change.
The instance your website is using is controlled by the handler mappings.


On Fri, Mar 15, 2013 at 9:24 PM, Chris 0404tow...@gmail.com wrote:


 Is there any way an application can keep the same URL, when we move it to
 another ColdFusion instance on the same server? We need to separate one
 high-resource application out of the CF instance that runs all the other
 applications.

 We can create a new IIS Web Site, we can create a new CF instance ... but
 is there a way to keep the same URL?

 thank you,
 Chris


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355040
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: same URL if moving app to new CF instance ?

2013-03-15 Thread Chris

Hi Russ, Matt,

We have a number of applications running on one instance of CF9, coming
through three IIS v6 Web Sites (host headers separate the requests which
are to three different Fully Qualified Domain Names(FQDNs)).

As I understand, with the Web Server Configuration Tool I'm mapping one or
more IIS Web Sites to one and only one CF instance.

So if we move the high-resource app from its current CF instance to a new
instance, I need to do something so the IIS Web Site knows which CF
instance to send the request. But if the IIS Web Site is mapped to only one
CF instance, I can't do that.

Our customer would like the URL (FQDN and directories) to remain the same.

I feel like I'm missing something simple and basic ... hope I'm not
over-thinking this!  Feel free to page-slap me with a really helpful URL :-)

thanks,
Chris


On Fri, Mar 15, 2013 at 5:46 PM, Russ Michaels r...@michaels.me.uk wrote:


 What instance a website is using has nothing at all to do with the URL, so
 your url would not change.
 The instance your website is using is controlled by the handler mappings.


 On Fri, Mar 15, 2013 at 9:24 PM, Chris 0404tow...@gmail.com wrote:

 
  Is there any way an application can keep the same URL, when we move it to
  another ColdFusion instance on the same server? We need to separate one
  high-resource application out of the CF instance that runs all the other
  applications.
 
  We can create a new IIS Web Site, we can create a new CF instance ... but
  is there a way to keep the same URL?
 
  thank you,
  Chris
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355041
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: same URL if moving app to new CF instance ?

2013-03-15 Thread Dave Watts

 We have a number of applications running on one instance of CF9, coming
 through three IIS v6 Web Sites (host headers separate the requests which
 are to three different Fully Qualified Domain Names(FQDNs)).

 As I understand, with the Web Server Configuration Tool I'm mapping one or
 more IIS Web Sites to one and only one CF instance.

 So if we move the high-resource app from its current CF instance to a new
 instance, I need to do something so the IIS Web Site knows which CF
 instance to send the request. But if the IIS Web Site is mapped to only one
 CF instance, I can't do that.

 Our customer would like the URL (FQDN and directories) to remain the same.

You'll have to run the Web Server Configuration tool (wsconfig) to
disconnect your IIS virtual server from the existing CF instance, and
connect it to the new CF instance. Nothing else needs to change in
IIS, including URLs. It's possible that you currently have your
existing instance connected using the All web sites option with IIS,
in which case you'll need to use wsconfig to delete that configuration
and create individual connections for each IIS virtual server.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355042
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Convert JS variable to URL variable for AJAX function

2013-01-08 Thread Les Irvin

I know this isn't technically a CF question (even though I'm using CF), but
I need some help putting a JS variable into a URL string to perform an Ajax
hit.  It will probably take someone smarter than me about 2 minutes to
figure out, please contact me off-list if you think you can help.  I'll
make a Paypal donation to the one who solves it for me.

Thanks,
Les


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353800
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


url rewriting

2013-01-08 Thread Scott Stewart

I'm very gingerly stepping into the world of url rewritng..
currently the site that I'm working on has urls that look like this:

http://www.domain.com/content.cfm/who-we-are

who-we-are is generated out of the CMS system (home grown) and doesn't 
actually exist.

what the bosses want is http://www.domain.com/who-we-are .  I'd like to 
do this with an ISAPI rewrite using IIS 7
The rub is this: content.cfm contains all the queries and such to figure 
out the content associated with who-we-are.
can I do the re-write and still have content.cfm run?

Secondly, I really suck at regEx, is there a good primer on creating 
rewrite scripts?

-- 
Scott Stewart
Adobe Certified Expert / Instructor
ColdFusion 8, 9


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353801
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Convert JS variable to URL variable for AJAX function

2013-01-08 Thread Russ Michaels

YoururlString += YourVar += yourvalue





On Mon, Jan 7, 2013 at 7:48 PM, Les Irvin les.cft...@gmail.com wrote:


 I know this isn't technically a CF question (even though I'm using CF), but
 I need some help putting a JS variable into a URL string to perform an Ajax
 hit.  It will probably take someone smarter than me about 2 minutes to
 figure out, please contact me off-list if you think you can help.  I'll
 make a Paypal donation to the one who solves it for me.

 Thanks,
 Les


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353808
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: $.get URL length CF10/Tomcat

2012-12-17 Thread Chad Baloga

Yep... that is what I ended up doing

Shouldn't you switch to $.post if your URL is getting too long?




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353515
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


$.get URL length CF10/Tomcat

2012-11-21 Thread Chad Baloga

We have run into a problem with CF10 where we throw a 500 error when the URL 
string to a CFC call is too long.  Does anyone know what setting needs changed??

isapi_redirect.log error is: jk_isapi_plugin.c (1920): error while getting the 
url

We are running CF10 w/ IIS 7.5 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353272
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: $.get URL length CF10/Tomcat

2012-11-21 Thread Dave Watts

 We have run into a problem with CF10 where we throw a 500 error when the URL 
 string to a CFC call
 is too long.  Does anyone know what setting needs changed??

 isapi_redirect.log error is: jk_isapi_plugin.c (1920): error while getting 
 the url

 We are running CF10 w/ IIS 7.5

Does the URL exceed 2048 bytes? If so, you'll need to increase the
value within the IIS Management Console ... Request Filtering ... Edit
Feature Settings. You can also control this setting via web.config,
appcmd.exe, and scripting:

http://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits#001

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353273
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: $.get URL length CF10/Tomcat

2012-11-21 Thread Raymond Camden

Shouldn't you switch to $.post if your URL is getting too long?


On Wed, Nov 21, 2012 at 7:28 AM, Dave Watts dwa...@figleaf.com wrote:


  We have run into a problem with CF10 where we throw a 500 error when the
 URL string to a CFC call
  is too long.  Does anyone know what setting needs changed??
 
  isapi_redirect.log error is: jk_isapi_plugin.c (1920): error while
 getting the url
 
  We are running CF10 w/ IIS 7.5

 Does the URL exceed 2048 bytes? If so, you'll need to increase the
 value within the IIS Management Console ... Request Filtering ... Edit
 Feature Settings. You can also control this setting via web.config,
 appcmd.exe, and scripting:


 http://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits#001

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/

 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353275
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


alias URL not recognizing relative paths

2012-10-29 Thread fun and learning

Hi All -

I have an issue with the following scenario.

I have a website www.abc.com. For the path www.abc.com/test, an alias is 
defined as test.com which points to www.abc.com/test. The new alias test.com is 
not recognizing the relative paths defined in www.abc.com/test.

I am using IIS server. Do I need to update any other settings in IIS for the 
alias to work properly?

Thanks 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353013
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: alias URL not recognizing relative paths

2012-10-29 Thread Dave Watts

 I have a website www.abc.com. For the path www.abc.com/test, an alias is 
 defined as test.com which points to www.abc.com/test. The new alias
 test.com is not recognizing the relative paths defined in www.abc.com/test.

 I am using IIS server. Do I need to update any other settings in IIS for the 
 alias to work properly?

I'm not sure what you did exactly, but you can't create an alias
(virtual web server) and have it inherit other aliases (virtual
directories). Each virtual server has to have its own virtual
directories created specifically for it.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353014
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: alias URL not recognizing relative paths

2012-10-29 Thread fun and learning

  I have a website www.abc.com. For the path www.abc.com/test, an 
 alias is defined as test.com which points to www.abc.com/test. The new 
 alias
  test.com is not recognizing the relative paths defined in www.abc.
 com/test.
 
  I am using IIS server. Do I need to update any other settings in IIS 
 for the alias to work properly?
 
 I'm not sure what you did exactly, but you can't create an alias
 (virtual web server) and have it inherit other aliases (virtual
 directories). Each virtual server has to have its own virtual
 directories created specifically for it.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/
 
 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

Thanks Dave, but I am not sure I follow you. In my case, both the websites

www.abc.com and test.com are hosted on same server. but test.com points to 
abc.com/test. Are you saying that test.com cannot access the resources under 
abc.com using relative path? 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353015
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: alias URL not recognizing relative paths

2012-10-29 Thread fun and learning

  I have a website www.abc.com. For the path www.abc.com/test, an 
 alias is defined as test.com which points to www.abc.com/test. The new 
 alias
  test.com is not recognizing the relative paths defined in www.abc.
 com/test.
 
  I am using IIS server. Do I need to update any other settings in IIS 
 for the alias to work properly?
 
 I'm not sure what you did exactly, but you can't create an alias
 (virtual web server) and have it inherit other aliases (virtual
 directories). Each virtual server has to have its own virtual
 directories created specifically for it.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/
 
 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

I apologize, but all the settings look right but this issue seems to be 
happening in in chrome and safari... 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353016
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: alias URL not recognizing relative paths

2012-10-29 Thread Russ Michaels

Any realive paths will be relative to that sites home directory.
So test.com cannot be relative to abc.com because it is a directory above,
to which it has no access.

Regards
Russ Michaels
On Oct 29, 2012 8:26 PM, fun and learning funandlrnn...@gmail.com wrote:


   I have a website www.abc.com. For the path www.abc.com/test, an
  alias is defined as test.com which points to www.abc.com/test. The new
  alias
   test.com is not recognizing the relative paths defined in www.abc.
  com/test.
  
   I am using IIS server. Do I need to update any other settings in IIS
  for the alias to work properly?
 
  I'm not sure what you did exactly, but you can't create an alias
  (virtual web server) and have it inherit other aliases (virtual
  directories). Each virtual server has to have its own virtual
  directories created specifically for it.
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  http://training.figleaf.com/
 
  Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
  GSA Schedule, and provides the highest caliber vendor-authorized
  instruction at our training centers, online, or onsite.

 I apologize, but all the settings look right but this issue seems to be
 happening in in chrome and safari...

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353019
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Connecting to MS Access 2007 from Coldfusion 9.0 through JDBC URL (Select 'other' datasource)

2012-08-28 Thread somesh y

Hi,

I am trying to connect to MS access 2007 from my cf 9.0 and getting following 
error.

java.sql.SQLException: [Microsoft][ODBC Driver Manager] Invalid string or 
buffer length
The root cause was that: java.sql.SQLException: [Microsoft][ODBC Driver 
Manager] Invalid string or buffer length

Connection Settings :

JDBC
jdbc:odbc:Driver={Microsoft Access Driver (*.mdb, 
*.accdb)};DBQ=E:/Inetpub/wwwroot/ssl/burs/Burs_be.accdb;;

Class: sun.jdbc.odbc.JdbcOdbcDriver

Driver : MS Access 2007

I would really appreciate if any idea, what i am doing mistake here ? any 
suggesions would be great.

Thanks
Somesh 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:352327
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Connecting to MS Access 2007 from Coldfusion 9.0 through JDBC URL (Select 'other' datasource)

2012-08-28 Thread Dave Watts

 I am trying to connect to MS access 2007 from my cf 9.0 and getting following 
 error.

Is there a reason you're not using SequeLink or the built-in JET driver?

Are you running a 64-bit version of CF?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:352331
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


The requested URL not found

2012-07-24 Thread fun and learning

Hi All,

We have youtube video with a link to our website embedded on it. The URL has 
query string as below:

www.abc.com/?visitfrom=youtube

The above URL is causing an error as The requested URL /?visitfrom=youtube not 
found on this server.

Could this be happening due to / before the start of query string? Do we need 
to change any settings on the server?

Thanks. 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351957
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


The requested URL not found

2012-07-24 Thread funand learning

Hi All,

We have youtube video with a link to our website embedded on it. The URL
has query string as below:

www.abc.com/?visitfrom=youtube

The above URL is causing an error as The requested URL /?visitfrom=youtube
not found on this server.

Could this be happening due to / before the start of query string? Do we
need to change any settings on the server?

Thanks.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351958
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: The requested URL not found

2012-07-24 Thread Robert Harrison

Probably, as you say, the / before the ?


Robert Harrison 
Director of Interactive Services

Austin  Williams
Advertising I Branding I Digital I Direct  
125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
T 631.231.6600 X 119   F 631.434.7022   
http://www.austin-williams.com

Blog:  http://www.austin-williams.com/blog
Twitter:  http://www.twitter.com/austin_williams 


-Original Message-
From: funand learning [mailto:funandlrnn...@gmail.com] 
Sent: Tuesday, July 24, 2012 9:51 AM
To: cf-talk
Subject: The requested URL not found


Hi All,

We have youtube video with a link to our website embedded on it. The URL has 
query string as below:

www.abc.com/?visitfrom=youtube

The above URL is causing an error as The requested URL /?visitfrom=youtube not 
found on this server.

Could this be happening due to / before the start of query string? Do we need 
to change any settings on the server?

Thanks.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351960
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: The requested URL not found

2012-07-24 Thread Will Swain

Possibly being daft here, but do you have the http:// prefix?

will

-Original Message-
From: funand learning [mailto:funandlrnn...@gmail.com] 
Sent: 24 July 2012 14:51
To: cf-talk
Subject: The requested URL not found


Hi All,

We have youtube video with a link to our website embedded on it. The URL has
query string as below:

www.abc.com/?visitfrom=youtube

The above URL is causing an error as The requested URL /?visitfrom=youtube
not found on this server.

Could this be happening due to / before the start of query string? Do we
need to change any settings on the server?

Thanks.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351961
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: The requested URL not found

2012-07-24 Thread funand learning

Yes, the URL looks like
http://abc.com/?visitfrom=youtubehttp://www.abc.com/?visitfrom=youtube



On Tue, Jul 24, 2012 at 8:59 AM, Will Swain w...@hothorse.com wrote:


 Possibly being daft here, but do you have the http:// prefix?

 will

 -Original Message-
 From: funand learning [mailto:funandlrnn...@gmail.com]
 Sent: 24 July 2012 14:51
 To: cf-talk
 Subject: The requested URL not found


 Hi All,

 We have youtube video with a link to our website embedded on it. The URL
 has
 query string as below:

 www.abc.com/?visitfrom=youtube

 The above URL is causing an error as The requested URL /?visitfrom=youtube
 not found on this server.

 Could this be happening due to / before the start of query string? Do we
 need to change any settings on the server?

 Thanks.




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351962
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: The requested URL not found

2012-07-24 Thread Dave Watts

 We have youtube video with a link to our website embedded on it. The URL has 
 query string as below:

 www.abc.com/?visitfrom=youtube

 The above URL is causing an error as The requested URL /?visitfrom=youtube 
 not found on this server.

 Could this be happening due to / before the start of query string? Do we 
 need to change any settings on the server?

Does the site have a default document defined? Does the directory
contain a default document? That URL is fine assuming there's a
default document for that directory.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351963
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: The requested URL not found

2012-07-24 Thread Russ Michaels

Add the fikename to the url and it should work.

Regards
Russ Michaels
On Jul 24, 2012 3:11 PM, funand learning funandlrnn...@gmail.com wrote:


 Yes, the URL looks like
 http://abc.com/?visitfrom=youtubehttp://www.abc.com/?visitfrom=youtube



 On Tue, Jul 24, 2012 at 8:59 AM, Will Swain w...@hothorse.com wrote:

 
  Possibly being daft here, but do you have the http:// prefix?
 
  will
 
  -Original Message-
  From: funand learning [mailto:funandlrnn...@gmail.com]
  Sent: 24 July 2012 14:51
  To: cf-talk
  Subject: The requested URL not found
 
 
  Hi All,
 
  We have youtube video with a link to our website embedded on it. The URL
  has
  query string as below:
 
  www.abc.com/?visitfrom=youtube
 
  The above URL is causing an error as The requested URL
 /?visitfrom=youtube
  not found on this server.
 
  Could this be happening due to / before the start of query string? Do
 we
  need to change any settings on the server?
 
  Thanks.
 
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351964
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: The requested URL not found

2012-07-24 Thread funand learning

What if the URL is getting converted to friendlyURLs? How can this be
handled?

On Tue, Jul 24, 2012 at 9:14 AM, Russ Michaels r...@michaels.me.uk wrote:


 Add the fikename to the url and it should work.

 Regards
 Russ Michaels
 On Jul 24, 2012 3:11 PM, funand learning funandlrnn...@gmail.com
 wrote:

 
  Yes, the URL looks like
  http://abc.com/?visitfrom=youtubehttp://www.abc.com/?visitfrom=youtube
 
 
 
  On Tue, Jul 24, 2012 at 8:59 AM, Will Swain w...@hothorse.com wrote:
 
  
   Possibly being daft here, but do you have the http:// prefix?
  
   will
  
   -Original Message-
   From: funand learning [mailto:funandlrnn...@gmail.com]
   Sent: 24 July 2012 14:51
   To: cf-talk
   Subject: The requested URL not found
  
  
   Hi All,
  
   We have youtube video with a link to our website embedded on it. The
 URL
   has
   query string as below:
  
   www.abc.com/?visitfrom=youtube
  
   The above URL is causing an error as The requested URL
  /?visitfrom=youtube
   not found on this server.
  
   Could this be happening due to / before the start of query string? Do
  we
   need to change any settings on the server?
  
   Thanks.
  
  
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351966
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: The requested URL not found

2012-07-24 Thread Russ Michaels

Just update ur url rewriting to handle these urls as well.

Regards
Russ Michaels
On Jul 24, 2012 3:36 PM, funand learning funandlrnn...@gmail.com wrote:


 What if the URL is getting converted to friendlyURLs? How can this be
 handled?

 On Tue, Jul 24, 2012 at 9:14 AM, Russ Michaels r...@michaels.me.uk
 wrote:

 
  Add the fikename to the url and it should work.
 
  Regards
  Russ Michaels
  On Jul 24, 2012 3:11 PM, funand learning funandlrnn...@gmail.com
  wrote:
 
  
   Yes, the URL looks like
   http://abc.com/?visitfrom=youtube
 http://www.abc.com/?visitfrom=youtube
  
  
  
   On Tue, Jul 24, 2012 at 8:59 AM, Will Swain w...@hothorse.com wrote:
  
   
Possibly being daft here, but do you have the http:// prefix?
   
will
   
-Original Message-
From: funand learning [mailto:funandlrnn...@gmail.com]
Sent: 24 July 2012 14:51
To: cf-talk
Subject: The requested URL not found
   
   
Hi All,
   
We have youtube video with a link to our website embedded on it. The
  URL
has
query string as below:
   
www.abc.com/?visitfrom=youtube
   
The above URL is causing an error as The requested URL
   /?visitfrom=youtube
not found on this server.
   
Could this be happening due to / before the start of query string?
 Do
   we
need to change any settings on the server?
   
Thanks.
   
   
   
   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351971
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: url path problem when running a CF site on my local computer

2012-03-27 Thread Russ Michaels

for the site in question, open the errors settings in IIS and set it to
detailed errors, this should give you more info as to what the problem is
rather than just a server 500 error.


On Tue, Mar 27, 2012 at 12:09 AM, Nick Gleason n.glea...@citysoft.comwrote:


 Russ, Matt,

 You guys are great.  Manage thanks.  I edited the hosts file as suggested
 below to allow a dev.mydomain.com hostname and I input that into IIS.  I'm
 now getting the following message from IIS which at least seems like a step
 in the right direction:
 -
 HTTP Error 500.19 - Internal Server Error
 The requested page cannot be accessed because the related configuration
 data
 for the page is invalid
 -

 It seems like there is a permissions issue here somewhere.  I've been
 tweaking some settings but so far have not been able to track it down.

 N


 
 ..

 CitySoft, Inc. | http://www.citysoft.com

 Phone: (866) 751-1992 | Direct: (617) 899-5395 | Fax: (617) 507-0444

 Spend Less  Do More - Community Enterprise combines great features
 with an affordable price.


 
 ..


  -Original Message-
  From: Russ Michaels [mailto:r...@michaels.me.uk]
  Sent: Monday, March 26, 2012 3:11 PM
  To: cf-talk
  Subject: Re: url path problem when running a CF site on my local
  computer
 
 
  set each of your sites to use dev.yourdomain.com
 
  run notepad as administrator
  now open the file c:\windows\system32\drivers\etc
 
  at the bottom of this file enter
 
  127.0.0.1 dev.yourdomain.com
 
  repeat for additional domains
 
  and save the file.
 
  all the domains you have entered here will now resolve to your local
  machine
 
 
  On Mon, Mar 26, 2012 at 10:57 PM, Matt Quackenbush
  quackfu...@gmail.comwrote:
 
  
   Bind to 127.0.0.1 instead of your standard public-facing IP like on
   the server.
  
   Or, just bind to *:80. That should work as well.
  
  
   On Mon, Mar 26, 2012 at 4:52 PM, Nick Gleason n.glea...@citysoft.com
   wrote:
  
   
Hi there.  So, I took the plunge and upgraded to Windows 7 and got
IIS installed.  So far so good.  I've set up a web site in IIS to
use for
   this
purpose, but the tricky part has been getting it to display through
a browser.  When we user our remote servers, we assign a site to an
IP and add one or more host headers so that requests through a
browser will resolve correctly.  But, that doesn't seem to be the
right scenario with a
   locally
deployed site.  I'm searching online but if anyone can suggest how
best
   to
configure a local site in IIS, that would certainly be appreciated.
   
Best,
   
Nick
   
 -Original Message-
 From: Russ Michaels [mailto:r...@michaels.me.uk]
 Sent: Sunday, March 25, 2012 2:14 AM
 To: cf-talk
 Subject: Re: url path problem when running a CF site on my local
 computer


 you need to put your website in the root and not inside a test
 folder so that your links work.
 Otherwise you will need to make your links relative to the page
 they are on or include /text/ in the link, which is not really a
 good solution.
 If you are running windows 7 then you get the full version of
  IIS7
 for free so wont have any such problems.
 Download the web platform installer and use this to install IIS
 and other useful components.

 If you are on windows XP then you can use IIS 6 but it is limited
 to 1 site, so you would be better off using Apache.

 Or if you want to get rid of the hassle of running a local dev
 server altogether then try www.cfmldeveloper.com

 --

 Russ Michaels

 www.bluethunderinternet.com  : Business hosting services 
  solutions
 www.cfmldeveloper.com: ColdFusion developer community
 www.michaels.me.uk   : my blog
 www.cfsearch.com : ColdFusion search engine
 **
 *skype me* : russmichaels



   
   
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350559
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: url path problem when running a CF site on my local computer

2012-03-26 Thread Nick Gleason

Hi there.  So, I took the plunge and upgraded to Windows 7 and got IIS
installed.  So far so good.  I've set up a web site in IIS to use for this
purpose, but the tricky part has been getting it to display through a
browser.  When we user our remote servers, we assign a site to an IP and add
one or more host headers so that requests through a browser will resolve
correctly.  But, that doesn't seem to be the right scenario with a locally
deployed site.  I'm searching online but if anyone can suggest how best to
configure a local site in IIS, that would certainly be appreciated.

Best,

Nick

 -Original Message-
 From: Russ Michaels [mailto:r...@michaels.me.uk]
 Sent: Sunday, March 25, 2012 2:14 AM
 To: cf-talk
 Subject: Re: url path problem when running a CF site on my local
 computer
 
 
 you need to put your website in the root and not inside a test folder
 so that your links work.
 Otherwise you will need to make your links relative to the page they
 are on or include /text/ in the link, which is not really a good
 solution.
 If you are running windows 7 then you get the full version of IIS7 for
 free so wont have any such problems.
 Download the web platform installer and use this to install IIS and
 other useful components.
 
 If you are on windows XP then you can use IIS 6 but it is limited to 1
 site, so you would be better off using Apache.
 
 Or if you want to get rid of the hassle of running a local dev server
 altogether then try www.cfmldeveloper.com
 
 --
 
 Russ Michaels
 
 www.bluethunderinternet.com  : Business hosting services  solutions
 www.cfmldeveloper.com: ColdFusion developer community
 www.michaels.me.uk   : my blog
 www.cfsearch.com : ColdFusion search engine
 **
 *skype me* : russmichaels
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350550
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: url path problem when running a CF site on my local computer

2012-03-26 Thread Matt Quackenbush

Bind to 127.0.0.1 instead of your standard public-facing IP like on the
server.

Or, just bind to *:80. That should work as well.


On Mon, Mar 26, 2012 at 4:52 PM, Nick Gleason n.glea...@citysoft.comwrote:


 Hi there.  So, I took the plunge and upgraded to Windows 7 and got IIS
 installed.  So far so good.  I've set up a web site in IIS to use for this
 purpose, but the tricky part has been getting it to display through a
 browser.  When we user our remote servers, we assign a site to an IP and
 add
 one or more host headers so that requests through a browser will resolve
 correctly.  But, that doesn't seem to be the right scenario with a locally
 deployed site.  I'm searching online but if anyone can suggest how best to
 configure a local site in IIS, that would certainly be appreciated.

 Best,

 Nick

  -Original Message-
  From: Russ Michaels [mailto:r...@michaels.me.uk]
  Sent: Sunday, March 25, 2012 2:14 AM
  To: cf-talk
  Subject: Re: url path problem when running a CF site on my local
  computer
 
 
  you need to put your website in the root and not inside a test folder
  so that your links work.
  Otherwise you will need to make your links relative to the page they
  are on or include /text/ in the link, which is not really a good
  solution.
  If you are running windows 7 then you get the full version of IIS7 for
  free so wont have any such problems.
  Download the web platform installer and use this to install IIS and
  other useful components.
 
  If you are on windows XP then you can use IIS 6 but it is limited to 1
  site, so you would be better off using Apache.
 
  Or if you want to get rid of the hassle of running a local dev server
  altogether then try www.cfmldeveloper.com
 
  --
 
  Russ Michaels
 
  www.bluethunderinternet.com  : Business hosting services  solutions
  www.cfmldeveloper.com: ColdFusion developer community
  www.michaels.me.uk   : my blog
  www.cfsearch.com : ColdFusion search engine
  **
  *skype me* : russmichaels
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350551
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: url path problem when running a CF site on my local computer

2012-03-26 Thread Russ Michaels

set each of your sites to use dev.yourdomain.com

run notepad as administrator
now open the file c:\windows\system32\drivers\etc

at the bottom of this file enter

127.0.0.1 dev.yourdomain.com

repeat for additional domains

and save the file.

all the domains you have entered here will now resolve to your local machine


On Mon, Mar 26, 2012 at 10:57 PM, Matt Quackenbush quackfu...@gmail.comwrote:


 Bind to 127.0.0.1 instead of your standard public-facing IP like on the
 server.

 Or, just bind to *:80. That should work as well.


 On Mon, Mar 26, 2012 at 4:52 PM, Nick Gleason n.glea...@citysoft.com
 wrote:

 
  Hi there.  So, I took the plunge and upgraded to Windows 7 and got IIS
  installed.  So far so good.  I've set up a web site in IIS to use for
 this
  purpose, but the tricky part has been getting it to display through a
  browser.  When we user our remote servers, we assign a site to an IP and
  add
  one or more host headers so that requests through a browser will resolve
  correctly.  But, that doesn't seem to be the right scenario with a
 locally
  deployed site.  I'm searching online but if anyone can suggest how best
 to
  configure a local site in IIS, that would certainly be appreciated.
 
  Best,
 
  Nick
 
   -Original Message-
   From: Russ Michaels [mailto:r...@michaels.me.uk]
   Sent: Sunday, March 25, 2012 2:14 AM
   To: cf-talk
   Subject: Re: url path problem when running a CF site on my local
   computer
  
  
   you need to put your website in the root and not inside a test folder
   so that your links work.
   Otherwise you will need to make your links relative to the page they
   are on or include /text/ in the link, which is not really a good
   solution.
   If you are running windows 7 then you get the full version of IIS7 for
   free so wont have any such problems.
   Download the web platform installer and use this to install IIS and
   other useful components.
  
   If you are on windows XP then you can use IIS 6 but it is limited to 1
   site, so you would be better off using Apache.
  
   Or if you want to get rid of the hassle of running a local dev server
   altogether then try www.cfmldeveloper.com
  
   --
  
   Russ Michaels
  
   www.bluethunderinternet.com  : Business hosting services  solutions
   www.cfmldeveloper.com: ColdFusion developer community
   www.michaels.me.uk   : my blog
   www.cfsearch.com : ColdFusion search engine
   **
   *skype me* : russmichaels
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350552
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: url path problem when running a CF site on my local computer

2012-03-26 Thread Nick Gleason

Russ, Matt,

You guys are great.  Manage thanks.  I edited the hosts file as suggested
below to allow a dev.mydomain.com hostname and I input that into IIS.  I'm
now getting the following message from IIS which at least seems like a step
in the right direction:
-
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data
for the page is invalid
-

It seems like there is a permissions issue here somewhere.  I've been
tweaking some settings but so far have not been able to track it down.

N


..
 
CitySoft, Inc. | http://www.citysoft.com
 
Phone: (866) 751-1992 | Direct: (617) 899-5395 | Fax: (617) 507-0444
 
Spend Less  Do More - Community Enterprise combines great features 
with an affordable price.


..


 -Original Message-
 From: Russ Michaels [mailto:r...@michaels.me.uk]
 Sent: Monday, March 26, 2012 3:11 PM
 To: cf-talk
 Subject: Re: url path problem when running a CF site on my local
 computer
 
 
 set each of your sites to use dev.yourdomain.com
 
 run notepad as administrator
 now open the file c:\windows\system32\drivers\etc
 
 at the bottom of this file enter
 
 127.0.0.1 dev.yourdomain.com
 
 repeat for additional domains
 
 and save the file.
 
 all the domains you have entered here will now resolve to your local
 machine
 
 
 On Mon, Mar 26, 2012 at 10:57 PM, Matt Quackenbush
 quackfu...@gmail.comwrote:
 
 
  Bind to 127.0.0.1 instead of your standard public-facing IP like on
  the server.
 
  Or, just bind to *:80. That should work as well.
 
 
  On Mon, Mar 26, 2012 at 4:52 PM, Nick Gleason n.glea...@citysoft.com
  wrote:
 
  
   Hi there.  So, I took the plunge and upgraded to Windows 7 and got
   IIS installed.  So far so good.  I've set up a web site in IIS to
   use for
  this
   purpose, but the tricky part has been getting it to display through
   a browser.  When we user our remote servers, we assign a site to an
   IP and add one or more host headers so that requests through a
   browser will resolve correctly.  But, that doesn't seem to be the
   right scenario with a
  locally
   deployed site.  I'm searching online but if anyone can suggest how
   best
  to
   configure a local site in IIS, that would certainly be appreciated.
  
   Best,
  
   Nick
  
-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk]
Sent: Sunday, March 25, 2012 2:14 AM
To: cf-talk
Subject: Re: url path problem when running a CF site on my local
computer
   
   
you need to put your website in the root and not inside a test
folder so that your links work.
Otherwise you will need to make your links relative to the page
they are on or include /text/ in the link, which is not really a
good solution.
If you are running windows 7 then you get the full version of
 IIS7
for free so wont have any such problems.
Download the web platform installer and use this to install IIS
and other useful components.
   
If you are on windows XP then you can use IIS 6 but it is limited
to 1 site, so you would be better off using Apache.
   
Or if you want to get rid of the hassle of running a local dev
server altogether then try www.cfmldeveloper.com
   
--
   
Russ Michaels
   
www.bluethunderinternet.com  : Business hosting services 
 solutions
www.cfmldeveloper.com: ColdFusion developer community
www.michaels.me.uk   : my blog
www.cfsearch.com : ColdFusion search engine
**
*skype me* : russmichaels
   
   
   
  
  
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350553
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: url path problem when running a CF site on my local computer

2012-03-25 Thread Russ Michaels

you need to put your website in the root and not inside a test folder so
that your links work.
Otherwise you will need to make your links relative to the page they are on
or include /text/ in the link, which is not really a good solution.
If you are running windows 7 then you get the full version of IIS7 for free
so wont have any such problems.
Download the web platform installer and use this to install IIS and other
useful components.

If you are on windows XP then you can use IIS 6 but it is limited to 1
site, so you would be better off using Apache.

Or if you want to get rid of the hassle of running a local dev server
altogether then try www.cfmldeveloper.com

--

Russ Michaels

www.bluethunderinternet.com  : Business hosting services  solutions
www.cfmldeveloper.com: ColdFusion developer community
www.michaels.me.uk   : my blog
www.cfsearch.com : ColdFusion search engine
**
*skype me* : russmichaels


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350531
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: url path problem when running a CF site on my local computer

2012-03-25 Thread Nick Gleason

Thanks guys.  I do have some remote servers which I can use, but my sense
from CF Builder is that to use their debugging tools it's easier / better to
have the whole installation on the same machine as CF Builder. If you think
that's not really true, let me know.  In the mean time, I'll look into
upgrading to Windows 7 (I'm on vista).

Nick


 -Original Message-
 From: Russ Michaels [mailto:r...@michaels.me.uk]
 Sent: Sunday, March 25, 2012 2:14 AM
 To: cf-talk
 Subject: Re: url path problem when running a CF site on my local
 computer
 
 
 you need to put your website in the root and not inside a test folder
 so that your links work.
 Otherwise you will need to make your links relative to the page they
 are on or include /text/ in the link, which is not really a good
 solution.
 If you are running windows 7 then you get the full version of IIS7 for
 free so wont have any such problems.
 Download the web platform installer and use this to install IIS and
 other useful components.
 
 If you are on windows XP then you can use IIS 6 but it is limited to 1
 site, so you would be better off using Apache.
 
 Or if you want to get rid of the hassle of running a local dev server
 altogether then try www.cfmldeveloper.com
 
 --
 
 Russ Michaels
 
 www.bluethunderinternet.com  : Business hosting services  solutions
 www.cfmldeveloper.com: ColdFusion developer community
 www.michaels.me.uk   : my blog
 www.cfsearch.com : ColdFusion search engine
 **
 *skype me* : russmichaels
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350532
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: url path problem when running a CF site on my local computer

2012-03-25 Thread Russ Michaels

Vista should also allow you to install full version of IIS7 as well.
Try the web platform installer.

On Sun, Mar 25, 2012 at 4:26 PM, Nick Gleason n.glea...@citysoft.comwrote:


 Thanks guys.  I do have some remote servers which I can use, but my sense
 from CF Builder is that to use their debugging tools it's easier / better
 to
 have the whole installation on the same machine as CF Builder. If you think
 that's not really true, let me know.  In the mean time, I'll look into
 upgrading to Windows 7 (I'm on vista).

 Nick


  -Original Message-
  From: Russ Michaels [mailto:r...@michaels.me.uk]
  Sent: Sunday, March 25, 2012 2:14 AM
  To: cf-talk
  Subject: Re: url path problem when running a CF site on my local
  computer
 
 
  you need to put your website in the root and not inside a test folder
  so that your links work.
  Otherwise you will need to make your links relative to the page they
  are on or include /text/ in the link, which is not really a good
  solution.
  If you are running windows 7 then you get the full version of IIS7 for
  free so wont have any such problems.
  Download the web platform installer and use this to install IIS and
  other useful components.
 
  If you are on windows XP then you can use IIS 6 but it is limited to 1
  site, so you would be better off using Apache.
 
  Or if you want to get rid of the hassle of running a local dev server
  altogether then try www.cfmldeveloper.com
 
  --
 
  Russ Michaels
 
  www.bluethunderinternet.com  : Business hosting services  solutions
  www.cfmldeveloper.com: ColdFusion developer community
  www.michaels.me.uk   : my blog
  www.cfsearch.com : ColdFusion search engine
  **
  *skype me* : russmichaels
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350534
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


url path problem when running a CF site on my local computer

2012-03-24 Thread Nick Gleason

Hi folks,

Kind of a noob question here.  I'm setting up our application to run locally
on my laptop so I can use the debugger in CF Builder 2.  I'm running CF9 and
SQL Server 2008 R2.  I've managed to get the site to display locally in a
web browser using the built in web server.  I get it to display at this
address:
http://127.0.0.1:8500/test/ (I've named the application folder test in
this case).

The problem that I'm encountering is a path problem because the /test/
folder is not staying in the path.  So, as I click around the application, I
need the urls to look like this:
http://127.0.0.1:8500/test/index.cfm?fuseaction=Page.viewPagepageId=471 
http://127.0.0.1:8500/test/index.cfm?fuseaction=Page.viewPagepageId=479 

But, they look like this (and don't work):
http://127.0.0.1:8500/index.cfm?fuseaction=Page.viewPagepageId=471
http://127.0.0.1:8500/index.cfm?fuseaction=Page.viewPagepageId=479 

I think I could solve this by downloading IIS and installing that locally
and managing the paths that way.  But, that seems like a lot of overhead for
a problem that must be solvable with the built in web server.  I just don't
have a lot of experience with this scenario.

Any ideas?

Nick





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350520
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: url path problem when running a CF site on my local computer

2012-03-24 Thread Andrew Scott

The problem is that the directory test is just that a directory in the root
of the web server, when you define your links I am guessing that you are
using href=/ and then followed by whatever you wish to link too.

Because the webserver (internal ColdFusion) sees this as a normal
directory, then the href's will translate to the root of your server. The
only solution to do something like this would be to use either IIS / Apache
and use the web connectors to then connect ColdFusion to the site defined
in either of those.

ColdFusion's internal web server was designed to get up and running
quickly, but it was never designed to be used to server multiple sites like
this.


-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+: http://plus.google.com/108193156965451149543




On Sun, Mar 25, 2012 at 12:03 PM, Nick Gleason n.glea...@citysoft.comwrote:


 Hi folks,

 Kind of a noob question here.  I'm setting up our application to run
 locally
 on my laptop so I can use the debugger in CF Builder 2.  I'm running CF9
 and
 SQL Server 2008 R2.  I've managed to get the site to display locally in a
 web browser using the built in web server.  I get it to display at this
 address:
 http://127.0.0.1:8500/test/ (I've named the application folder test in
 this case).

 The problem that I'm encountering is a path problem because the /test/
 folder is not staying in the path.  So, as I click around the application,
 I
 need the urls to look like this:
 http://127.0.0.1:8500/test/index.cfm?fuseaction=Page.viewPagepageId=471
 http://127.0.0.1:8500/test/index.cfm?fuseaction=Page.viewPagepageId=479

 But, they look like this (and don't work):
 http://127.0.0.1:8500/index.cfm?fuseaction=Page.viewPagepageId=471
 http://127.0.0.1:8500/index.cfm?fuseaction=Page.viewPagepageId=479

 I think I could solve this by downloading IIS and installing that locally
 and managing the paths that way.  But, that seems like a lot of overhead
 for
 a problem that must be solvable with the built in web server.  I just don't
 have a lot of experience with this scenario.

 Any ideas?

 Nick





 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350526
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfform adding url params upon submit? Argh

2012-01-02 Thread Wayne Gregor

I just converted from CF windows to Linux (hurray for me!)

Remarkably... most everything works great (was the little 
issue of upper vs lower case).

One thing that is goofy is this.

I have a link to a form that has some URL params

http://www.gregorigroup.com/inforequest.cfm?mls=40544266start=1 
http://www.gregorigroup.com/inforequest.cfm?mls=40544266start=1

when I click the submit button all the URL parameters are 
returned with the url.

How can I suppress the url params upon return?

My cfform tag looks like this

cfform action=inforequest.cfm method=post


thanks!
-- 
*Wayne Gregori*
Office: 510-895-1066
Cell: 510-219-3887
w...@sfnet.com


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349290
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfform adding url params upon submit? Argh

2012-01-02 Thread Matt Quackenbush

I'm not sure I'm completely following you here, because the code you've
shown won't behave in the manner described, no matter what the operating
system. How are you determining that the URL params are being passed?

Sent from my Samsung Galaxy SII
On Jan 2, 2012 3:35 PM, Wayne Gregor w...@sfnet.com wrote:


 I just converted from CF windows to Linux (hurray for me!)

 Remarkably... most everything works great (was the little
 issue of upper vs lower case).

 One thing that is goofy is this.

 I have a link to a form that has some URL params

 http://www.gregorigroup.com/inforequest.cfm?mls=40544266start=1
 http://www.gregorigroup.com/inforequest.cfm?mls=40544266start=1

 when I click the submit button all the URL parameters are
 returned with the url.

 How can I suppress the url params upon return?

 My cfform tag looks like this

 cfform action=inforequest.cfm method=post


 thanks!
 --
 *Wayne Gregori*
 Office: 510-895-1066
 Cell: 510-219-3887
 w...@sfnet.com


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349291
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Spam:********, Re: cfform adding url params upon submit? Argh

2012-01-02 Thread Wayne Gregor

Thanks for waking me up Matt I dug into my code a bit and found the 
problem.

thanks,
Wayne

On Monday, January 02, 2012 2:03:11 PM, Matt Quackenbush wrote:

 I'm not sure I'm completely following you here, because the code you've
 shown won't behave in the manner described, no matter what the operating
 system. How are you determining that the URL params are being passed?

 Sent from my Samsung Galaxy SII
 On Jan 2, 2012 3:35 PM, Wayne Gregorw...@sfnet.com  wrote:


 I just converted from CF windows to Linux (hurray for me!)

 Remarkably... most everything works great (was the little
 issue of upper vs lower case).

 One thing that is goofy is this.

 I have a link to a form that has some URL params

 http://www.gregorigroup.com/inforequest.cfm?mls=40544266start=1
 http://www.gregorigroup.com/inforequest.cfm?mls=40544266start=1

 when I click the submit button all the URL parameters are
 returned with the url.

 How can I suppress the url params upon return?

 My cfform tag looks like this

 cfform action=inforequest.cfm method=post


 thanks!
 --
 *Wayne Gregori*
 Office: 510-895-1066
 Cell: 510-219-3887
 w...@sfnet.com




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349295
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What does this URL mean?

2011-04-10 Thread Peter Boughton

Here's a page which explains how URLs are made up: 
http://hybridchill.com/anatomy-of-a-url.html

And here's how your URL divides:

Protocol = http
Server = //localhost
Script Name = /students/index.cfm
Path Info = /register
Query String = action=studentreg

It's possible (but unlikely) that students is a context not part of the 
script name.
It's also possible (but even more unlikely) that index.cfm is a directory name 
and register is the script.

If you're running the code yourself, you can open up index.cfm and do...

cfdump var=#cgi# /cfabort/

...and you'll see the various variables including those mentioned in the page 
above.


Especially in the past, a lot of things used the Query String (which starts 
after the first ?) for things which *should* have used Path Info - mostly 
because Path Info was neither properly understood nor implemented in many 
servers, and server-side languages didn't make it as easy to work with as with 
query string.

Path Info was designed for identifying which file to display (different to 
which script to process with), whilst Query String was intended for querying 
(searching) in some way. Because it was easier, nearly everyone lumped 
everything into the query string.

There is no default format or imposed use to Path Info, so it is entirely a 
case of how the developer implemented it.

It's possible it could be used for an application name, but I've never seen 
that done.
It's likely to be the name of a page or section, which may or not be stored in 
a database. I've not encountered any CMS that constructs URLs in the way of 
your URL.

Due to the intended purpose of the Query String, early search engines initially 
ignored everything after a ? when spidering URLs, but when Google arrived on 
the scene, it wasn't long before they had started working out which variables 
in a query string identified pages.
At some point, a fad started of moving ALL variables (including ones which 
*should* stay in the query string) into the Path Info section, and claiming 
this was search engine friendly or search engine safe. (I'll try to avoid 
ranting on how stupid both these terms and practise is.)
Mostly outside the CF community, people were already achieving the same thing 
using URL rewriting (using Apache mod_rewrite, IIS ISAPI rewrite, or similar), 
which treats everything after the Server before the Query String as a single 
virtual path, converted into a script name and (potentially) query string 
variables - which meant there was no need for index.ext to be used.
This is generally called things like pretty URLs, vanity URLs, or similar 
terms - which more accurately reflect that they are (should be) done for HUMAN 
benefit (not search engines).


That's starting to drify off the original topic though, so I'll stop now... I 
think I've covered everything, and hopefully this all makes sense? Let me know 
if anything I've written is unclear? 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343639
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


What does this URL mean?

2011-04-09 Thread fun and learning

http://localhost/students/index.cfm/register?action=studentreg

I did not understand the use of 'register' after index.cfm. Can anyone please 
help me understand what it could mean? There is a index.cfm file in students 
folder. Could register be a folder name? 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343634
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What does this URL mean?

2011-04-09 Thread Jake Churchill

There is probably a parameter format being used there.  Register might be
the name of the application being used here
On Apr 9, 2011 7:37 PM, fun and learning funandlrnn...@gmail.com wrote:

 http://localhost/students/index.cfm/register?action=studentreg

 I did not understand the use of 'register' after index.cfm. Can anyone
please help me understand what it could mean? There is a index.cfm file in
students folder. Could register be a folder name?

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343635
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: What does this URL mean?

2011-04-09 Thread Wilfred Sessoms

It is probably the name of the page which is stored as a database record and 
the url is being constructed through a content management system (CMS) query. 

Wilfred A. Sessoms Sr.
http://www.nytechcentral.com

-Original Message-
From: fun and learning [mailto:funandlrnn...@gmail.com] 
Sent: Saturday, April 09, 2011 8:29 PM
To: cf-talk
Subject: What does this URL mean?


http://localhost/students/index.cfm/register?action=studentreg

I did not understand the use of 'register' after index.cfm. Can anyone please 
help me understand what it could mean? There is a index.cfm file in students 
folder. Could register be a folder name? 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343636
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: What does this URL mean?

2011-04-09 Thread Andrew Scott

Yeah this type of URL is usually a search engine friendly URL, everything
after the index is usually a page to run and the action. Which is the start
of SES and ISAPI rewrites.


Regards,
Andrew Scott
http://www.andyscott.id.au/



 -Original Message-
 From: Wilfred Sessoms [mailto:wsess...@firstchoiceimages.com]
 Sent: Sunday, 10 April 2011 12:00 PM
 To: cf-talk
 Subject: RE: What does this URL mean?
 
 
 It is probably the name of the page which is stored as a database record
and
 the url is being constructed through a content management system (CMS)
 query.
 
 Wilfred A. Sessoms Sr.
 http://www.nytechcentral.com
 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343637
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What does this URL mean?

2011-04-09 Thread Dave Watts

 http://localhost/students/index.cfm/register?action=studentreg

 I did not understand the use of 'register' after index.cfm. Can anyone please 
 help me understand
 what it could mean? There is a index.cfm file in students folder. Could 
 register be a folder name?

While normally you can guess that you have, for example, a file named
index.cfm, you shouldn't therefore assume that all URLs happen to map
to a specific file in a known location on the filesystem and that
there is a clear mapping of what you see in the URL with specific
filename and query parameters. URLs can really be quite a bit
different than that.

In this case, index.cfm could be a file or a directory, or neither.
register could be a file name, a value mapped to a URL parameter
within index.cfm, or something else entirely.

My guess - and it can be no more than a guess - is that there's a file
called index.cfm in a directory called students, and that this file is
looking at the raw query string and grabbing the first value to get
the literal string register, and that there's a URL parameter
available within the page called action with a value of
studentreg. Why someone would bother doing that, I can't really say.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343638
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


loss of session vars if url is rewriten - cf9, jBoss

2011-04-06 Thread Morchella Deliciosa

Hey guys. Long time no post. Any help and or advice would be greatly 
appreciated. i will respond as time allows.
this one has got me scratching my head.
Upgrading from cf 7 to 9. from webSphere to jBoss.

jboss-5.0.1.GA, apache2-2.2.10-2.24.5 
Jboss one box Apache on another..

if we use default (long and ugly) url our sessions are fine and persist.
if we re-write the url to make it pretty, before it hits the browser then we 
loose scope.

I know this has got to work for thousands of other apps...

---
###newest working
RewriteCond %{SERVER_NAME}= ^(.*)(cda-dev)
RewriteCond %{REQUEST_URI}= !^Rule_1
RewriteCond %{REQUEST_URI}= !^/cfmx02/(.*)
RewriteCond %{REQUEST_URI}= ^/=
RewriteRule ^/(.*) /cfmx02/cda/ [PT,QSA,L]

RewriteCond %{SERVER_NAME}= ^(.*)(cda-dev)
RewriteCond %{REQUEST_URI}= !^Rule_2
RewriteCond %{REQUEST_URI}= !^/cfmx02/(.*)
RewriteCond %{REQUEST_URI}= !^/server-status(.*)
RewriteCond %{REQUEST_URI}= !^/jmx-console/(.*)
RewriteCond %{REQUEST_URI}= ^/(.*)$
RewriteRule ^/(.*) /cfmx02/cda/$1 [PT,QSA,L]

JkMount /jmx-console/* jmx_console
JkMount /cfmx02/* load_balancer

---
System Information
Server Details
Server Product  ColdFusion
Version 9,0,1,274733  
Edition Enterprise  
Operating SystemUNIX  
OS Version  2.6.32.27-0.2-default  
Adobe Driver Version4.0 (Build 0005)  
---
application.cfm

CFAPPLICATION NAME=CDA-dev clientManagement=yes clientStorage=Cookie 
setClientCookies = yes sessionManagement=yes loginStorage=session 
sessionTimeout = #CreateTimeSpan(0,10,0,0)#

cfif NOT IsDefined(session.t_Id)
  !--- set default values ---
  cflock name=#session.sessionID#  timeout=10 TYPE=Exclusive
cfset session.t_Id = ''
cfset session.Msg = 'Please Login'
  /cflock
/cfif

cfinclude template = common/app_globals.cfm /
---

Thanks! 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343582
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


URL variable security

2011-01-24 Thread Richard White

Hi,

basic question but want to make sure i understand url variables! Is it possible 
for malicious code to be sent through url variables?

Basically, Some CFM files in our applications receive variables through the URL 
which are just used to do some processing if they are true e.g.

if url.variable 1 eq true
  do something...
end if

Would there be any need to validate whether this variable is true or false at 
the start of the page? I am thinking there isnt any need as if it isnt equal to 
true then nothing will happen anyway.

as a general rule i am only validating any url variables if they contain data 
to be placing in the database, is this right?

thanks 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:341127
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL variable security

2011-01-24 Thread Justin Scott

 basic question but want to make sure i understand url variables! Is it
 possible for malicious code to be sent through url variables?

Possible, yes, though it depends on how you use the data passed
through.  In your example, just testing the value against a static
value in the code (if url.var is 1), you have nothing to worry about.
If you're using that URL variable as part of a where clause in a
query, you can open yourself up to problems if you don't handle it
properly (i.e. using cfqueryparam).


-Justin

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:341128
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL variable security

2011-01-24 Thread Phillip Vector

If you don't use the data that is in the variables, then (as far as I
know), no validation of the data itself needs to be done.

On Mon, Jan 24, 2011 at 8:31 AM, Richard White rich...@j7is.co.uk wrote:

 Hi,

 basic question but want to make sure i understand url variables! Is it 
 possible for malicious code to be sent through url variables?

 Basically, Some CFM files in our applications receive variables through the 
 URL which are just used to do some processing if they are true e.g.

 if url.variable 1 eq true
  do something...
 end if

 Would there be any need to validate whether this variable is true or false at 
 the start of the page? I am thinking there isnt any need as if it isnt equal 
 to true then nothing will happen anyway.

 as a general rule i am only validating any url variables if they contain data 
 to be placing in the database, is this right?

 thanks

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:341129
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL variable security

2011-01-24 Thread Richard White

ok thanks for the help 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:341130
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL variable security

2011-01-24 Thread Ian Skinner

On 1/24/2011 8:50 AM, Richard White wrote:
 ok thanks for the help

I just wanted to add that your question, concerns and the replies DO NOT 
just apply to URL variables.  They apply to ANY and ALL data received 
from the client.  Including form POST values, COOKIE values, ect.

Anything and everything received from external, untrusted sources must 
be considered suspect.

I mention this because many people have the mistaken impression that 
form POST variables are more secure and thus do not need to be tested 
just because they are not written in the URL bar of the browser.  This 
is most definitely not true.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:341132
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL variable security

2011-01-24 Thread Gerald Guido


 Anything and everything received from external, untrusted sources must
 be considered suspect.


+1

I find that using tools like Portcullis.cfc to be warranted for forward
facing sites. As a minimum I would check to see if the request is actually
coming from your site before making any changes to data.

Even on internal stuff I use the following snippet to make sure people don't
have any urls that manipulated data bookmarked or saved as a shortcut.

 cfif NOT findnocase(cgi.SERVER_NAME,cgi.HTTP_REFERER)

!---  cfinclude template=#Application.tmp_url#/incl/header.cfm
---
 cfoutput
 div align=center
You are trying to access this page from a bookmark or an
unauthorised location.
br /
Please a href=someurl Got to the main website and
try again/a.

/div
/cfoutput
!---  cfinclude
template=#Application.tmp_url#/incl/footer.cfm ---
cfabort 
/cfif

G!

On Mon, Jan 24, 2011 at 12:08 PM, Ian Skinner h...@ilsweb.com wrote:


 On 1/24/2011 8:50 AM, Richard White wrote:
  ok thanks for the help

 I just wanted to add that your question, concerns and the replies DO NOT
 just apply to URL variables.  They apply to ANY and ALL data received
 from the client.  Including form POST values, COOKIE values, ect.

 Anything and everything received from external, untrusted sources must
 be considered suspect.

 I mention this because many people have the mistaken impression that
 form POST variables are more secure and thus do not need to be tested
 just because they are not written in the URL bar of the browser.  This
 is most definitely not true.



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:341135
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: URL variable security

2011-01-24 Thread Mary Jo Sminkey


 Anything and everything received from external, untrusted sources must
 be considered suspect.

I'd add that even if you might not have to worry about a security breach, you 
still probably want to scrub such variables to prevent errors from being 
generated (if for instance you expect it to be a numeric value) as anything on 
the URL (if forward-facing) is going to get a constant barrage of garbage 
against it that can load your logs up with errors if you aren't handling them. 


--- Mary Jo



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:341136
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Url Rewrite rule help

2011-01-17 Thread Wil Genovese

I'm working on a CF site and converting the standard url strings to SES urls. 
So far we have most of it working. But I'm working on this rewrite rule and I 
can not figure out why this fails when I try to add product paging.

Here is the rule

RewriteRule ^([^/]*)/parts/([\w\-/]+)?$ 
/mypage.cfm?type=productaction=getProductsCatsmodel=$1subcatpath=$2[L,QSA]


it works when a url like this is given:   
domain.com/model/parts/bodyparts/fenders/

but if I want to make it page though the products and add ?p=2 it fails:   
domain.com/model/parts/bodyparts/fenders/?p=2

QSA is supposed to append the query string, but as far I can can tell its not. 
This is also the last rule applied [L] so none of my other rules should affect 
this.

This is IIS 7 on a 64bit Windows Server. 

What am I missing?




Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well. 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340931
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Odd Code Showing up in URL

2011-01-14 Thread David Moore

I recently added an cferror to my websites and it has helped me discover a 
lot of issues I needed to fix. At the same time, I have some very odd code 
showing up and didn't know if it is something I should address or is it someone 
trying to hack into my websites. Here is an example:

http://www.oconeemed.org/index.cfm?PageID=21ParentPageID=4NavID=4ServiceID=-1%27PageText=off

You will notice the ServiceID of -1%27 which should be an integer. It also did 
not come from a Search Engine, which is a whole other issue I have noticed that 
I did not before.

I guess I am asking is if I should be concerned about this or is it just some 
kind of oddity. I am noticing it showing up on many of the websites I host.

Thank you in advance,

David G. Moore, Jr. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340880
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Odd Code Showing up in URL

2011-01-14 Thread Paul Alkema

I've found that a lot of these issues are caused by either bots, or someone
linking to a webpage and made a typo. Most likely bots.

In your error reporting do you have anything that grabs the user agent of
the error? I've found that looking at user agents can sometime help me to
determine if it's a bot or not but you have to keep in mind that there are
definitely tricky bots out there that emulate real people.

One of the websites I maintain has around 800,000 pageviews a month. This
website also has an error reporting like yours and I've found that the
majority of them are just bots.

I would just make sure you take proper security precautions on all of your
code and you should be fine. 

-Original Message-
From: David Moore [mailto:dgmoor...@hotmail.com] 
Sent: Friday, January 14, 2011 12:48 PM
To: cf-talk
Subject: Odd Code Showing up in URL


I recently added an cferror to my websites and it has helped me discover a
lot of issues I needed to fix. At the same time, I have some very odd code
showing up and didn't know if it is something I should address or is it
someone trying to hack into my websites. Here is an example:

http://www.oconeemed.org/index.cfm?PageID=21ParentPageID=4NavID=4ServiceI
D=-1%27PageText=off

You will notice the ServiceID of -1%27 which should be an integer. It also
did not come from a Search Engine, which is a whole other issue I have
noticed that I did not before.

I guess I am asking is if I should be concerned about this or is it just
some kind of oddity. I am noticing it showing up on many of the websites I
host.

Thank you in advance,

David G. Moore, Jr. 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340881
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Odd Code Showing up in URL

2011-01-14 Thread Justin Scott

 You will notice the ServiceID of -1%27 which should be an integer. It
 also did not come from a Search Engine, which is a whole other
 issue I have noticed that I did not before.

It's likely an automated bot probing the site for weaknesses.  If
you're properly sanitizing user input through data scrubbing and
following up with protections like cfqueryparam then it shouldn't be
much of a concern.  For integer URL values, I will always...

cfparam name=url.id default=0
cfset url.id = abs(val(trim(url.id)))

This guarantees a positive integer or zero.  That gets followed up
with use of cfqueryparam on any queries it touches.  Since it's a
positive integer or zero, the query won't error.  You can then check
to see if the query returned any results and take appropriate action.
For example, on a product detail page, there should always be an ID
value and the query should always return one product.  If the
recordcount is zero, then something is wrong with the URL value so I
just redirect them back to the home page.  Keeps the error reports to
a minimum and brushes off these kinds of probes without any sweat.


-Justin Scott

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340882
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Odd Code Showing up in URL

2011-01-14 Thread Robert Harrison

Error on line -1

I've seen this a couple of time also and have asked this on list without 
getting a solid answer. If it helps I can tell you that the few times I've seen 
this myself the error has been related to a query. 

Robert B. Harrison
Director of Interactive Services
Austin  Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be .

Plug in to our blog: AW Unplugged
http://www.austin-williams.com/unplugged



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340896
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Odd Code Showing up in URL

2011-01-14 Thread David Moore

I've found that a lot of these issues are caused by either bots, or someone
linking to a webpage and made a typo. Most likely bots.

I am checking to see if it is a bot or not. In this case, it was not. I guess 
that's why I was more curious. If it is a bot, like Google or Slurp, I mark it 
up to junk in/junk out.

I am using cfqueryparam everywhere now at the bequest of Mark Kruger, my mentor 
and guide through this world of CF Programming.

If anyone has any other suggestions, please continue to provide them. I am 
doing some URL Clean-up and will add some more if nothing works go to home 
page as has been suggested in this post as well.

I feel like it is someone looking for a way to hack in and I would love to know 
the best way to discourage this kind of coding.

David G. Moore, Jr.

Learning every day 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340902
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Odd Code Showing up in URL

2011-01-14 Thread Russ Michaels

here are a couple of security solutions that will help you protect your
code.

http://foundeo.com/security/

http://portcullis.riaforge.org/

Russ

On Fri, Jan 14, 2011 at 11:55 PM, David Moore dgmoor...@hotmail.com wrote:


 I've found that a lot of these issues are caused by either bots, or
 someone
 linking to a webpage and made a typo. Most likely bots.

 I am checking to see if it is a bot or not. In this case, it was not. I
 guess that's why I was more curious. If it is a bot, like Google or Slurp, I
 mark it up to junk in/junk out.

 I am using cfqueryparam everywhere now at the bequest of Mark Kruger, my
 mentor and guide through this world of CF Programming.

 If anyone has any other suggestions, please continue to provide them. I am
 doing some URL Clean-up and will add some more if nothing works go to home
 page as has been suggested in this post as well.

 I feel like it is someone looking for a way to hack in and I would love to
 know the best way to discourage this kind of coding.

 David G. Moore, Jr.

 Learning every day

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340903
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: (ot) passing URL parameters

2011-01-07 Thread Stephens, Larry V

My issue was calling a page that sent me an Excel (actually a CSV) file with 
passed parameters via the URL. I was getting a page not found error *unless* 
I introduced an error (like changing the name of one of the URL variables). 
Then I would get an error page.

My conclusion was that the page not found error was erroneous and something 
else was the problem.

One suggestion was:

Most probably a caching issue, the 404 page is cached in the browser or an 
intermediate proxy.


Turns out that was not the issue. Since you're creating a CSV file (my host 
doesn't have the latest CF version) you use #chr(13)# and #chr(44)# for 
linefeeds and commas. Turns out I had a typo and had #chr13# in one place, so 
the error was a variable not found error that I finally found after stripping 
out all the file creation language.

Just an FYI in case you find yourself in the same boat.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340558
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) passing URL parameters

2011-01-06 Thread Mack

Most probably a caching issue, the 404 page is cached in the browser
or an intermediate proxy.

-- 
Mack

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340499
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


(ot) passing URL parameters

2011-01-05 Thread Stephens, Larry V

Not strictly CF but at least it's in a CF program...

a href=AnotherPage.cfm?id=4duh=somethingdit=else

In AnotherPage.cfm are references  #URL.id#, etc.

If everything (at least as far as the URL references) is correct, I get a page 
not found error. If I intentionally cause an error, say by leaving out 
dit=else, then the page is found and the error is displayed.

If germaine, the page I'm calling outputs an Excel file...

I'm at a loss.

Larry Stephens

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340480
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Page callback loses URL parameter

2010-12-16 Thread Stephens, Larry V

Page stupid.cfm

Inside a javascript function on this page is code akin to this:

var x = 'scramble';
window.location = 'stupid.cfm?dothis=' + x;
// page reloads and functions correctly, i.e., the URL parameter is present




cfparam name=URL.dothis default = 

cfdump var=#URL.dothis#  !--- when link is clicked this shows  empty 
string ---

cfif URL.dothis EQ scramble
 ...
/cfif


...code...

a href=stupid.cfm?dothis=scramblescramble/a

a href=smart.cfm?dothis=scramblescramble/a



Page smart.cfm

cfdump var=#URL.dothis# !--- when above link is clicked this shows  
scramble ---


What would cause the call back to the same page to lose the URL parameter?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340095
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Want Help with cffileupload .swf Not Loading w/Non-URL Accessible CFIDE

2010-10-23 Thread Aaron Neff

Hi Matthew,

Just wanted to say good work and thanks for filing. I've +1'd this, since issue 
still exists in CF 9.0.1 CHF1.

I also added a note, here: http://kb2.adobe.com/cps/849/cpsid_84902.html

..in cffileupload_swf.js, these variables also reference CFIDE:  
   
- defaultAddIcon  
- defaultUploadIcon  
- defaultClearIcon  
- defaultDeleteIcon

Thanks!,
-Aaron Neff

Bugged and marked fox resolution in 9.0.1

http://cfbugs.adobe.com/cfbugreport/flexbugui/cfbugtracker/main.html#bugId=83328
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338507
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: IIS7 404 handler/URL Rewrite...

2010-09-24 Thread Eric Roberts

Not to be pain on this, but this is something I would like to accomplish
today before I leave (last day of contract)...anyone know why the
404_handler.cfm that is specified as the 404 handler in IIS is not executing
in IIS7 like it did in IIS6?  Is there something ese that needs to be done
in 7 that we didn't need to do in 6?

Thanks!
Eric


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337457
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


  1   2   3   4   5   6   7   8   9   10   >