Re: OT - https requests stop working after Firewall and IP changes

2008-04-16 Thread rex
James Blaha wrote:
> Hi Dave,
>
> If you go on the CF server locally can you call a cfm page via HTTP and HTTPS?
>
> Where is the SSL cert sitting?
>
>   
If SSL still fails locally, check out the SSL Diagnostic Tool at 
http://www.microsoft.com/windowsserver2003/iis/diagnostictools/default.mspx

SSL is very picky especially if the cert wasn't issued on a requesting 
server (by that I mean the cert didnt follow the normal cycle of 
request-submit-download-install)

"Reissuing" it the way you did did not do anything.  I suggest that you 
backup/export the SSL cert and key and reimport it after the IP changes.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303657
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Need built-in JWS SSL help

2008-04-16 Thread James Holmes
Did you ever get anywhere with this? I've just hit exactly the same problem.

On Thu, Mar 6, 2008 at 11:43 PM, Matthew Williams
<[EMAIL PROTECTED]> wrote:
> So, it has come to my attention that I need to start encrypting the traffic 
> that I send to the CFadmin (and I must use the JRun admin for my sites, 
> they're all clustered and this is the only way to ensure you're looking at 
> the correct server).  I found this article by Bruce from '05, 
> http://www.bpurcell.org/blog/index.cfm?mode=entry&entry=1064.  It works 
> great... provided I'm using an older JRE.  As soon as I try this on CF8 with 
> JRE 1.6, it bombs out with a communication error.  I've got EAR files of 6.1, 
> 7.0.2, and 8 loaded on the same JRun install. When I run 7 and 8 on JRE 
> 1.4.2, I can view the site fine over SSL.  As soon as I switch CF8 to the 
> latest JRE, no go.  This is going to become extremely problematic for my in 
> the very near future.  Anyone have thoughts?  Otherwise, I'm going to be 
> burning a service request at Adobe.
>
>
>  Matthew Williams
>  Geodesic GraFX
>  www.geodesicgrafx.com/blog

-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303656
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Ok, so I've got these tables of data...

2008-04-16 Thread Azadi Saryev
UNION query?

(SELECT column1 as col1, column2 as col2,...
FROM table1)
UNION
(SELECT columnX as col1, columnY as col2,...
FROM table2)
UNION
(SELECT ...)

if you need to order the resultset in a particular way, i.e. order
within each selected group, you will have to play around with ORDER BY
clause and maybe even add some extra sort columns...

also, some db's will allow you to select different number of columns in
each select subquery, and even not require you to alias them to same
names, while others will barf at it...

hth

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/



Rick Faircloth wrote:
>  and each table contains specific property types,
> such as commercial properties, land, residential properties, etc.
>
> Usually, when I create a real estate database, I put properties
> of all types into one table.
>
> However, in this case, I'm pulling someone else's data into my database
> from their delimited text files.  Each of their text files contains
> a particular property type.  And all property types don't have the same
> data in their particular tables, so I can't put all the properties into one 
> table.
>
> That being said, I need to write a query that simply creates a record set
> of all the properties from all the property tables.
>
> I tried various joins, but I'm just getting syntax errors... never have been
> any good with joins.
>
> Do I need to alias all the data from each table to the same name, as in:
>
> select sa.street_address as prop_street_address, sc.street_address as 
> prop_street_address,
>sa.street_name as prop_street_name, sc.street_name as prop_street_name
>   from smlc_acr sa, smlc_com sc
>
> ???
>
> Any hints would be greatly appreciated.  :o)
>
> Rick
>   

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303655
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Ok, so I've got these tables of data...

2008-04-16 Thread Rick Faircloth
 and each table contains specific property types,
such as commercial properties, land, residential properties, etc.

Usually, when I create a real estate database, I put properties
of all types into one table.

However, in this case, I'm pulling someone else's data into my database
from their delimited text files.  Each of their text files contains
a particular property type.  And all property types don't have the same
data in their particular tables, so I can't put all the properties into one 
table.

That being said, I need to write a query that simply creates a record set
of all the properties from all the property tables.

I tried various joins, but I'm just getting syntax errors... never have been
any good with joins.

Do I need to alias all the data from each table to the same name, as in:

select sa.street_address as prop_street_address, sc.street_address as 
prop_street_address,
   sa.street_name as prop_street_name, sc.street_name as prop_street_name
  from smlc_acr sa, smlc_com sc

???

Any hints would be greatly appreciated.  :o)

Rick


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303654
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfhttp stopped working, anyone experienced this

2008-04-16 Thread [STS] Ravi Gehlot
Try using 

Ravi.




On Wed, Apr 16, 2008 at 9:26 PM, Cutter (CFRelated) <
[EMAIL PROTECTED]> wrote:

> If you can browse and ping then I doubt your firewall is at fault,
> unless your calling in a file whose MIME type isn't registered with the
> firewall. CFHTTP uses port 80 by default. If you can browse it from the
> server then the port isn't the issue (or the MIME type for that matter).
>
> Definitely use a try/catch. Or better, if on CF8, use the step debugger
> (if not in production and that's an option).
>
> Steve "Cutter" Blades
> Adobe Certified Professional
> Advanced Macromedia ColdFusion MX 7 Developer
> _
> http://blog.cutterscrossing.com
>
> AJ Mercer wrote:
> > are you happy with the URL being used, if it is being generated
> dynamically
> > it may be malformed or incorrect.
> >
> > Is it in a cf try?
> > Also, try dumping CFHTTP after the call - it will have a status code and
> > other info that my help
> >
> >
> >
> > On Wed, Apr 16, 2008 at 9:03 PM, Scott Mulholland <[EMAIL PROTECTED]>
> > wrote:
> >
> >> Yes on the browse, yes on the ping, I have an inquiry in on the
> firewall
> >> settings.
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303653
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Some JS help please

2008-04-16 Thread Cutter (CFRelated)
Two votes for Firebug. Never work without it. Pegs down my js fat finger 
problems, helps me know when external resources aren't available 
(usually by fat fingering resource paths), let's me see what headers are 
going out and being returned, see full server responses, and view the 
exact form variables that left in my requests. Absolutely wouldn't work 
without it.

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303652
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfhttp stopped working, anyone experienced this

2008-04-16 Thread Cutter (CFRelated)
If you can browse and ping then I doubt your firewall is at fault, 
unless your calling in a file whose MIME type isn't registered with the 
firewall. CFHTTP uses port 80 by default. If you can browse it from the 
server then the port isn't the issue (or the MIME type for that matter).

Definitely use a try/catch. Or better, if on CF8, use the step debugger 
(if not in production and that's an option).

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

AJ Mercer wrote:
> are you happy with the URL being used, if it is being generated dynamically
> it may be malformed or incorrect.
> 
> Is it in a cf try?
> Also, try dumping CFHTTP after the call - it will have a status code and
> other info that my help
> 
> 
> 
> On Wed, Apr 16, 2008 at 9:03 PM, Scott Mulholland <[EMAIL PROTECTED]>
> wrote:
> 
>> Yes on the browse, yes on the ping, I have an inquiry in on the firewall
>> settings.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303651
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF8 - Auto Populate a city text field based on zip code field?

2008-04-16 Thread James Blaha
Thanks I'll check this out ASAP.

-Jim 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303650
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfhttp stopped working, anyone experienced this

2008-04-16 Thread AJ Mercer
are you happy with the URL being used, if it is being generated dynamically
it may be malformed or incorrect.

Is it in a cf try?
Also, try dumping CFHTTP after the call - it will have a status code and
other info that my help



On Wed, Apr 16, 2008 at 9:03 PM, Scott Mulholland <[EMAIL PROTECTED]>
wrote:

> Yes on the browse, yes on the ping, I have an inquiry in on the firewall
> settings.
>
> -Original Message-
> From: AJ Mercer [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, April 16, 2008 3:18 AM
> To: CF-Talk
> Subject: Re: cfhttp stopped working, anyone experienced this
>
> if you log onto the server, can you browse to the URL?
> Can you ping the domain?
>
> Have firewall settings changed?
>
>
> On Wed, Apr 16, 2008 at 7:05 AM, Scott Mulholland <[EMAIL PROTECTED]>
> wrote:
>
> > I have a piece of code that has always worked that does a cfhttp to
> create
> > a
> > static file.  The file it calls is on the same server/domain.  Today the
> > cfhttp just keeps timing out.  cfhttp calls to other urls not on the
> > server
> > work without issue though.  Anyone else experience anything like this?
> >
> >
> >
> > Thanks,
> > Scott
> >
> >
> >
> >
>
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303649
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Bobby Hartsfield
Silly you indeed.

..:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com


-Original Message-
From: Don L [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 5:17 PM
To: CF-Talk
Subject: Re: Lots of bugs with cold fusion 8 (standard edition)

> > Today I've found another one,  fontSizes="10pt" ...>, also tried  fontSizes=".8em" ...>,
> > The font size Attribute does not work, check livedocs without 
> indication as to what type of syntax it's expecting.  Or is it just 
> me?  No, I did not run 8.0.1, weary of it...
> 
> It is in the livedocs in the attributes table for the cftextarea tag.
> See http://livedocs.adobe.com/coldfusion/8/htmldocs/help.
> html?content=Tags-pt0_01.html.
> 
> The tag expects a comma-separated list of sizes formatted as font
> size/description. To modify your example, you would need  richtext="yes" fontsizes="10pt/10pt"...> to have 10pt appear as an
> option in the Size select list in the editor.
> 
> Hope this helps,
>Phillip
Silly me, problem resolved, never mind. I just added {content}.  Did not mean to start a flame. 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303648
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


converting query for MS Acess

2008-04-16 Thread Mike Little
hey guys,

have the following query (which works in SQL Server)...

SELECT child.*
FROM categories AS parent, categories AS child
WHERE parent.cat_id = 
AND child.cat_lft BETWEEN parent.cat_lft AND parent.cat_rgt
AND NOT EXISTS (
SELECT *
FROM categories AS P
WHERE P.cat_lft BETWEEN parent.cat_lft AND parent.cat_rgt
AND child.cat_lft BETWEEN P.cat_lft AND P.cat_rgt
AND P.cat_id NOT IN (child.cat_id)
AND P.cat_id <> 
)
ORDER BY child.cat_lft

for the life of me i cannot workout how to get it to work for a MS Access db. i 
am wondering if access supports subqueries?

can anyone shed some light on this for me?

cheers
mike 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303647
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF8 - Auto Populate a city text field based on zip code field?

2008-04-16 Thread Mike Francisco
Jim: I use jquery to accomplish simple ajax calls like this. Once an
onChange event is detected on your zipcode field, you can call up a cf
template that contains a zip code query to your database. If it returns a
city name, then returned data can be placed on your city field.

Here's an example that's been out there for awhile now, but I think it'll
still give you a good idea.
http://www.365labs.net/cf_jquery/jquery_coldfusion_quickstart.htm



> -Original Message-
> From: James Blaha [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, April 16, 2008 2:56 PM
> To: CF-Talk
> Subject: Re: CF8 - Auto Populate a city text field based on zip code
> field?
> 
> Hi Mike,
> 
> I have all the zip/city info in a table already. When a user enters a zip
> code and leaves the text box do you know how to auto populate the city
> text field?
> 
> -Jim


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303646
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: default font size for a page

2008-04-16 Thread Don L
>I haven't used CF8 and all the new goodness that uses the YUI libraries.
>I've simply included the libraries explicitly as needed by downloading their
>package.
>
>On Wed, Apr 16, 2008 at 4:37 PM, D

Out of curiosity, you didn't use cf8, to wait till 'dust' is over? 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303645
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Eric Roberts
Congrats on quitting Cutter.  I quit 13 1\2 years ago after my first
daughter was born. Finished my pack or Marlborough reds and never looked
back.  You are past the physical addiction (that was your first week) and
most of the mental part.

Eric

/*-Original Message-
/*From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED]
/*Sent: Wednesday, April 16, 2008 4:49 PM
/*To: CF-Talk
/*Subject: Re: Lots of bugs with cold fusion 8 (standard edition)
/*
/*54th day without a smoke, and I'm still an evil bastard (but I'm makin'
/*it.)
/*
/*You've found your answers, and great suggestions have been made about
/*bug submissions, and reading documentation, and not pissing off
/*community leaders, so I'm going to take a breath and count to 10 now.
/*Sorry I came off an !^#hole, but your comment hit the wrong buttons.
/*
/*Steve "Cutter" Blades
/*Adobe Certified Professional
/*Advanced Macromedia ColdFusion MX 7 Developer
/*_
/*http://blog.cutterscrossing.com
/*
/*
/*

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303644
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Some JS help please

2008-04-16 Thread Josh Nathanson
A - ha...the select element has a name of "SiteID" while the id is 
"Site_ID" -- I think this can cause problems in IE.   You will want to have 
the name and the id be the same value.

Firebug is indispensable to me at this point.  Don't know how I lived 
without it.

-- Josh


- Original Message - 
From: "Bruce Sorge" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, April 16, 2008 2:57 PM
Subject: Re: Some JS help please


> Sure,
> Here it is:
>
> http://www.nomorepasting.com/getpaste.php?pasteid=14631
>
> It is not the entire form though. Just the result of the JS and down to
> the select, incase anyone notices and says "Hey, you forgot to close
> your form".
> And I am finding FireBug interesting.
>
> Bruce
>
> Charlie Griefer wrote:
>> Bruce - can you view the source and paste it to a
>> www.nomorepasting.com type site?
>>
>> hard to debug JS when it's not all been generated yet :)
>>
>> (but definitely use Firebug for your own testing/debugging.  Firebug 
>> rocks)
>>
>> On Wed, Apr 16, 2008 at 2:47 PM, Bruce Sorge <[EMAIL PROTECTED]> wrote:
>>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303643
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Some JS help please

2008-04-16 Thread Bruce Sorge
Sure,
Here it is:

http://www.nomorepasting.com/getpaste.php?pasteid=14631

It is not the entire form though. Just the result of the JS and down to 
the select, incase anyone notices and says "Hey, you forgot to close 
your form".
And I am finding FireBug interesting.

Bruce

Charlie Griefer wrote:
> Bruce - can you view the source and paste it to a
> www.nomorepasting.com type site?
>
> hard to debug JS when it's not all been generated yet :)
>
> (but definitely use Firebug for your own testing/debugging.  Firebug rocks)
>
> On Wed, Apr 16, 2008 at 2:47 PM, Bruce Sorge <[EMAIL PROTECTED]> wrote:
>   

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303642
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF8 - Auto Populate a city text field based on zip code field?

2008-04-16 Thread James Blaha
Hi Mike,

I have all the zip/city info in a table already. When a user enters a zip code 
and leaves the text box do you know how to auto populate the city text field?

-Jim 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303641
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Some JS help please

2008-04-16 Thread Matt Williams
>  On Wed, Apr 16, 2008 at 2:47 PM, Bruce Sorge <[EMAIL PROTECTED]> wrote:
>  > I changed everything to regular select and regular form. Still the same
>  >  issue. Just downloaded Firebug and I will work with that to see if I can
>  >  spot the problem.
>  >
>  >  Bruce

It may be as simple as the fact that the  element does not
exist before the JS runs. It is recommended that any JS depending on
the DOM being written to be deferred somehow. Something like the
window.onLoad() event. I can't remember the best practice here because
I'm spoiled by jQuery and $(document).ready()

-- 
Matt Williams
"It's the question that drives us."

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303640
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Some JS help please

2008-04-16 Thread Charlie Griefer
Bruce - can you view the source and paste it to a
www.nomorepasting.com type site?

hard to debug JS when it's not all been generated yet :)

(but definitely use Firebug for your own testing/debugging.  Firebug rocks)

On Wed, Apr 16, 2008 at 2:47 PM, Bruce Sorge <[EMAIL PROTECTED]> wrote:
> I changed everything to regular select and regular form. Still the same
>  issue. Just downloaded Firebug and I will work with that to see if I can
>  spot the problem.
>
>  Bruce
>
>
>  Josh Nathanson wrote:
>  > Does using  rather than a regular select change the id value
>  > somehow?  The error you're getting would indicate that the element with id
>  > "Site_ID" is not found.  You might want to use Firefox/Firebug and use
>  > "Inspect" to make sure the id is what you think it is.
>  >
>  > -- Josh
>  >
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303638
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Dave Watts
> And if I'm no longer a respected member of the community, 
> that's news to me. Why didn't someone call me? ;)

BECAUSE YOU'RE OUT, RAY! NOW STAY OUT!!!1!!

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

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303639
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Cutter (CFRelated)
54th day without a smoke, and I'm still an evil bastard (but I'm makin' it.)

You've found your answers, and great suggestions have been made about 
bug submissions, and reading documentation, and not pissing off 
community leaders, so I'm going to take a breath and count to 10 now. 
Sorry I came off an !^#hole, but your comment hit the wrong buttons.

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303637
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Some JS help please

2008-04-16 Thread Bruce Sorge
I changed everything to regular select and regular form. Still the same 
issue. Just downloaded Firebug and I will work with that to see if I can 
spot the problem.

Bruce

Josh Nathanson wrote:
> Does using  rather than a regular select change the id value 
> somehow?  The error you're getting would indicate that the element with id 
> "Site_ID" is not found.  You might want to use Firefox/Firebug and use 
> "Inspect" to make sure the id is what you think it is.
>
> -- Josh
>   

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303636
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Claude Schneegans
 >>My comment did have value. It is a fact that it is a waste of time to
report a bug on an out of date platform,

Especially when the "bug" is classified "RTFM" ;-)

 >>Why didn't someone call me?

That's the destiny of falling stars ;-)

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303635
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Eric Roberts
You didn't get the memo? Hehehe

Your comment made perfect sense to me.  If you aren't using the latest
release of your version of CF, then you can probably expect to find bugs
that were fixed in later releases.

Eric

/*-Original Message-
/*From: Raymond Camden [mailto:[EMAIL PROTECTED]
/*Sent: Wednesday, April 16, 2008 4:04 PM
/*To: CF-Talk
/*Subject: Re: Lots of bugs with cold fusion 8 (standard edition)
/*
/*My comment did have value. It is a fact that it is a waste of time to
/*report a bug on an out of date platform, which is what you have. If
/*you were reporting a bug on the latest version, I'd be all for it.
/*
/*And if I'm no longer a respected member of the community, that's news
/*to me. Why didn't someone call me? ;)
/*
/*On Wed, Apr 16, 2008 at 3:59 PM, Don L <[EMAIL PROTECTED]> wrote:
/*> > Whether or not you are wary of 801, it's silly to report bugs in 8
/*>  > w/o
/*>  > at least testing them in 801 first.
/*>  >
/*>  > 801 is the most recent release and it is pointless to report a bug in
/*>  > 8 (imho).
/*>  >
/*>
/*>  Why did you spend time to follow up a thread with ZERO value input? You
/*WERE a respected community member, please don't overuse it.
/*>
/*--
/*==
/*=
/*Raymond Camden, Camden Media
/*
/*Email : [EMAIL PROTECTED]
/*Blog : www.coldfusionjedi.com
/*AOL IM : cfjedimaster
/*
/*Keep up to date with the community: http://www.coldfusionbloggers.org
/*
/*

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303634
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Strange Behavior - stumped

2008-04-16 Thread Brad Wood
Nevermind.  Must have been a server restart.  It works fine for me now.
IE 7, 4:38 pm.  

~Brad

-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 4:36 PM
To: CF-Talk
Subject: RE: Strange Behavior - stumped

I get a 500 servlet error.  4:35 pm CST

~Brad

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303633
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Strange Behavior - stumped

2008-04-16 Thread Brad Wood
I get a 500 servlet error.  4:35 pm CST

~Brad

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Sent: Wednesday, April 16, 2008 4:16 PM
To: CF-Talk
Subject: Strange Behavior - stumped

On some browser this page shows up fine, on other the page is garbled.
Can you see this page ok?

http://209.41.164.253/store_finder/storefinder.cfm



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303632
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Strange Behavior - stumped

2008-04-16 Thread Claude Schneegans
 >>Can you see this page ok?

Looks OK to me with IE 6.
Opera 9.27
Safari 3.03
Firefox 2.0.0

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303631
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Strange Behavior - stumped

2008-04-16 Thread Dave Watts
> On some browser this page shows up fine, on other the page is 
> garbled. Can you see this page ok?
> 
> http://209.41.164.253/store_finder/storefinder.cfm

Works fine for me on IE7 and FF2 over Verizon broadband.

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

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303630
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Forcing a CFC to refresh...

2008-04-16 Thread Dave Watts
> Hmm - getting off topic - but the one Congressman site I've 
> got - they gave me a freaking FIT over using Coldfusion, and 
> said that *only* version 5 was "approved". I couldn't use 
> anything else.

That's odd, because I'm pretty sure SAA uses a later version - they support
SOAP services. They're pretty good about keeping on top of new technologies.
They even have their own internal web conference!

> I had to put so much regex all over forms to block "bad" 
> stuff and pass their security scans that it was ridiculous.
> 
> Using "cfqueryparam", or any other Coldfusion 
> validation/security didn't matter at all - if there wasn't 
> regx there to scrub *every* single variable on the site, it 
> wouldn't pass the scans and they wouldn't allow the file to 
> go live.

This isn't entirely a bad thing, although you should also be required to use
CFQUERYPARAM. CFQUERYPARAM won't help block XSS attacks.

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

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303629
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Raymond Camden
My comment did have value. It is a fact that it is a waste of time to
report a bug on an out of date platform, which is what you have. If
you were reporting a bug on the latest version, I'd be all for it.

And if I'm no longer a respected member of the community, that's news
to me. Why didn't someone call me? ;)

On Wed, Apr 16, 2008 at 3:59 PM, Don L <[EMAIL PROTECTED]> wrote:
> > Whether or not you are wary of 801, it's silly to report bugs in 8
>  > w/o
>  > at least testing them in 801 first.
>  >
>  > 801 is the most recent release and it is pointless to report a bug in
>  > 8 (imho).
>  >
>
>  Why did you spend time to follow up a thread with ZERO value input? You WERE 
> a respected community member, please don't overuse it.
>
-- 
===
Raymond Camden, Camden Media

Email : [EMAIL PROTECTED]
Blog : www.coldfusionjedi.com
AOL IM : cfjedimaster

Keep up to date with the community: http://www.coldfusionbloggers.org

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303628
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Some JS help please

2008-04-16 Thread Josh Nathanson
Does using  rather than a regular select change the id value 
somehow?  The error you're getting would indicate that the element with id 
"Site_ID" is not found.  You might want to use Firefox/Firebug and use 
"Inspect" to make sure the id is what you think it is.

-- Josh


- Original Message - 
From: "Bruce Sorge" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, April 16, 2008 1:58 PM
Subject: Some JS help please


>I am using this script:
> 
> 
>var SiteContact = {};
>var SitePhone = {};
>
>
>SiteContact["#qSelectAllSites.SiteID#"] =
> '#qSelectAllSites.SiteContact#';
>SitePhone["#qSelectAllSites.SiteID#"] =
> '#qSelectAllSites.SitePhone#';
>
>
>// Listen for changes to the select box
>document.getElementById('Site_ID').onchange = function() {
>document.getElementById('SiteContact').value =
> qSelectAllSites[this.options[this.selectedIndex].value];
>document.getElementByID('SitePhone').value =
> qSelectAllSites[this.options[this.selectedIndex].value];
>}
> 
> 
>
> Everything works OK except for the first document.getElementByID. I am
> getting the error message:
>
> Error: document.getElementById("Site_ID") has no properties
> Source File: http://10.120.5.30/tt/Restricted/CaseForm.cfm
> Line: 78
>
> The select is:
>  display="SiteName" value="SiteID">
>
> So what am I missing here? Doesn't the
> document.GetElementByID('Site_ID'). listen for the select list
> with the ID Site_ID?
>
> Thanks,
>
> Bruce
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303627
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Forcing a CFC to refresh...

2008-04-16 Thread Dave Watts
> Not using AT LEAST CF 7 is retardo though.  I'm sure they 
> probably have a few miles of red tape in the way.  I know the 
> government supposedly uses a lot of ColdFusion which is pretty cool.

Many agencies (and non-governmental organizations too, for that matter) have
long and complex requirements for software acceptance, so upgrades are slow.

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

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303626
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF8 - Auto Populate a city text field based on zip code field?

2008-04-16 Thread Mike Francisco
Hi Jim:  One option is to use the GeoNames.org webservice to return the
zip's info.  Place that on a cfc that is called via ajax using cf8's ajax or
other a js library such as jquery.

Geonames example:
http://ws.geonames.org/postalCodeSearch?postalcode=94101&country=us



> -Original Message-
> From: James Blaha [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, April 16, 2008 1:20 PM
> To: CF-Talk
> Subject: CF8 - Auto Populate a city text field based on zip code field?
> 
> All,
> 
> I have a cfform with an auto populate city text field that populates based
> off a query going to a city/zip validation table. My user just asked me if
> I could also populate the city text field with text if the user enters a
> zip code first.
> 
> Is there an easy way to do this?
> 
> -Jim


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303625
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Some JS help please

2008-04-16 Thread Bruce Sorge
Yeah, I will give that a shot.

Bruce

On Wed, Apr 16, 2008 at 2:15 PM, Charlie Griefer <[EMAIL PROTECTED]>
wrote:

> do you need for this to be cfform?  i haven't touched cfform in years
> because i used to find that the JS it generated conflicted with my own
> home-grown JS.  curious if something similar might be happening here.
>
> can you try it with a regular  and  and whatnot, just to
> see if maybe that's the issue?
>
>


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303624
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: default font size for a page

2008-04-16 Thread Sonny Savage
I haven't used CF8 and all the new goodness that uses the YUI libraries.
I've simply included the libraries explicitly as needed by downloading their
package.

On Wed, Apr 16, 2008 at 4:37 PM, Don L <[EMAIL PROTECTED]> wrote:

> >One thing I've found extremely useful is CSS "reset" templates.  They
> >essentially create a level playing field for the main browsers.  Yahoo!
> has
> >one in their YUI package, and there are some available from others as
> well.
> >The Yahoo! one sets a default size and then recommends using percentages
> to
> >specify font sizes of other elements.
> >
> >On Wed, Apr 16, 2008 at 3:14 PM, D
> >
>
> Well, first of all, good to know and thanks.  I used quite a bit of the
> new ajax related tags/functions, which uses YUI, Ext libraries and from
> Firebug, I seem to remember, they uses CSS from these libraries as well, but
> not including "reset" templates?
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303623
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Don L
> > Today I've found another one,  fontSizes="10pt" ...>, also tried  fontSizes=".8em" ...>,
> > The font size Attribute does not work, check livedocs without 
> indication as to what type of syntax it's expecting.  Or is it just 
> me?  No, I did not run 8.0.1, weary of it...
> 
> It is in the livedocs in the attributes table for the cftextarea tag.
> See http://livedocs.adobe.com/coldfusion/8/htmldocs/help.
> html?content=Tags-pt0_01.html.
> 
> The tag expects a comma-separated list of sizes formatted as font
> size/description. To modify your example, you would need  richtext="yes" fontsizes="10pt/10pt"...> to have 10pt appear as an
> option in the Size select list in the editor.
> 
> Hope this helps,
>Phillip
Silly me, problem resolved, never mind. I just added {content}.  Did not mean to start a flame. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303622
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Strange Behavior - stumped

2008-04-16 Thread coldfusion . developer
On some browser this page shows up fine, on other the page is garbled. Can you 
see this page ok?

http://209.41.164.253/store_finder/storefinder.cfm

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303621
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Some JS help please

2008-04-16 Thread Charlie Griefer
do you need for this to be cfform?  i haven't touched cfform in years
because i used to find that the JS it generated conflicted with my own
home-grown JS.  curious if something similar might be happening here.

can you try it with a regular  and  and whatnot, just to
see if maybe that's the issue?

On Wed, Apr 16, 2008 at 2:12 PM, Bruce Sorge <[EMAIL PROTECTED]> wrote:
> Thanks for seeing that Charlie.
>  But the issue still exists. It is the first document.getElementById.,
>  the Site_ID one.
>
>  Bruce
>
>
>  Charlie Griefer wrote:
>  > Hi Bruce:
>  >
>  > Haven't looked over all the code, but it's document.getElementById()
>  > ('Id', not 'ID').  hopefully that'll do it
>
>  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303620
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Cutter (CFRelated)
Don L,

Ray's imput had immense value, and he is still one of the most respected 
members of our community (where you are falling quickly).

If you are unwilling to follow the suggestions of those who obviously 
have more time and knowledge with this platform, who volunteer their 
time and knowledge freely, then maybe you should stop asking for help.

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303619
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Brian Kotek
Because it is, indeed, absurd to report a bug in anything other than the
latest version of the product.

Further, if you had bothered to read the documentation, you would see that
it says:

A comma separated list of the font sizes to display in the rich text editor
> Size selector. List entries must have the format of *numeric font 
> size*/*descriptive
> text*. For example, to display the text "small font" to indicate a font
> size of 1, specify "1/small font". By default, the following values appear
> in the selector:
> 1/xx-small,2/x-small,3/small,4/medium,5/large,6/x-large,7/xx-large.


So, the problem isn't that this is a bug. The problem is that you're using
it incorrectly. This works fine for me:






What you've done is incorrectly post to a public forum declaring something
to be a bug when in fact you just didn't bother to actually read the
documentation. I would think that given this, your attitude would be just a
bit more subdued.


On Wed, Apr 16, 2008 at 4:59 PM, Don L <[EMAIL PROTECTED]> wrote:

> > Whether or not you are wary of 801, it's silly to report bugs in 8
> > w/o
> > at least testing them in 801 first.
> >
> > 801 is the most recent release and it is pointless to report a bug in
> > 8 (imho).
> >
>
> Why did you spend time to follow up a thread with ZERO value input? You
> WERE a respected community member, please don't overuse it.
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303617
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Some JS help please

2008-04-16 Thread Bruce Sorge
Thanks for seeing that Charlie.
But the issue still exists. It is the first document.getElementById., 
the Site_ID one.

Bruce

Charlie Griefer wrote:
> Hi Bruce:
>
> Haven't looked over all the code, but it's document.getElementById()
> ('Id', not 'ID').  hopefully that'll do it

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303618
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Some JS help please

2008-04-16 Thread Charlie Griefer
Hi Bruce:

Haven't looked over all the code, but it's document.getElementById()
('Id', not 'ID').  hopefully that'll do it.

On Wed, Apr 16, 2008 at 1:58 PM, Bruce Sorge <[EMAIL PROTECTED]> wrote:
> I am using this script:
>  
>  
> var SiteContact = {};
> var SitePhone = {};
> 
> 
> SiteContact["#qSelectAllSites.SiteID#"] =
>  '#qSelectAllSites.SiteContact#';
> SitePhone["#qSelectAllSites.SiteID#"] =
>  '#qSelectAllSites.SitePhone#';
> 
>
> // Listen for changes to the select box
> document.getElementById('Site_ID').onchange = function() {
> document.getElementById('SiteContact').value =
>  qSelectAllSites[this.options[this.selectedIndex].value];
> document.getElementByID('SitePhone').value =
>  qSelectAllSites[this.options[this.selectedIndex].value];
> }
>  
>  
>
>  Everything works OK except for the first document.getElementByID. I am
>  getting the error message:
>
>  Error: document.getElementById("Site_ID") has no properties
>  Source File: http://10.120.5.30/tt/Restricted/CaseForm.cfm
>  Line: 78
>
>  The select is:
>display="SiteName" value="SiteID">
>
>  So what am I missing here? Doesn't the
>  document.GetElementByID('Site_ID'). listen for the select list
>  with the ID Site_ID?
>
>  Thanks,
>
>  Bruce
>
>  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303616
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Don L
> > Today I've found another one,  fontSizes="10pt" ...>, also tried  fontSizes=".8em" ...>,
> > The font size Attribute does not work, check livedocs without 
> indication as to what type of syntax it's expecting.  Or is it just 
> me?  No, I did not run 8.0.1, weary of it...
> 
> It is in the livedocs in the attributes table for the cftextarea tag.
> See http://livedocs.adobe.com/coldfusion/8/htmldocs/help.
> html?content=Tags-pt0_01.html.
> 
> The tag expects a comma-separated list of sizes formatted as font
> size/description. To modify your example, you would need  richtext="yes" fontsizes="10pt/10pt"...> to have 10pt appear as an
> option in the Size select list in the editor.
> 
> Hope this helps,
>Phillip
Thanks, I missed the doc, however, I intend to set a font size for content 
inside Text Area and Font selector is not included in my richeditor config.  
Attempt to use Style="font-size:smaller" as another attribute did not have 
effect... hmm, what else?


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303615
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Charlie Griefer
On Wed, Apr 16, 2008 at 1:59 PM, Don L <[EMAIL PROTECTED]> wrote:
> > Whether or not you are wary of 801, it's silly to report bugs in 8
>  > w/o
>  > at least testing them in 801 first.
>  >
>  > 801 is the most recent release and it is pointless to report a bug in
>  > 8 (imho).
>  >
>
>  Why did you spend time to follow up a thread with ZERO value input? You WERE 
> a respected community member, please don't overuse it.

wouldn't the value be in the suggestion that any bugs that exist in 8
could *potentially* be resolved in 8 01?

just because you don't like an answer doesn't mean it has ZERO value.

-- 
Evelyn the dog, having undergone further modification pondered the
significance of short-person behaviour in pedal depressed,
pan-chromatic resonance, and other highly ambient domains. "Arf," she
said.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303614
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Don L
> Whether or not you are wary of 801, it's silly to report bugs in 8 
> w/o
> at least testing them in 801 first.
> 
> 801 is the most recent release and it is pointless to report a bug in 
> 8 (imho).
> 

Why did you spend time to follow up a thread with ZERO value input? You WERE a 
respected community member, please don't overuse it.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303613
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Don L
>How about:
>
>
>
>???
>

the richText attribute is required for this case. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303612
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Some JS help please

2008-04-16 Thread Bruce Sorge
I am using this script:


var SiteContact = {};
var SitePhone = {};


SiteContact["#qSelectAllSites.SiteID#"] = 
'#qSelectAllSites.SiteContact#';
SitePhone["#qSelectAllSites.SiteID#"] = 
'#qSelectAllSites.SitePhone#';


// Listen for changes to the select box
document.getElementById('Site_ID').onchange = function() {
document.getElementById('SiteContact').value = 
qSelectAllSites[this.options[this.selectedIndex].value];
document.getElementByID('SitePhone').value = 
qSelectAllSites[this.options[this.selectedIndex].value];
}



Everything works OK except for the first document.getElementByID. I am 
getting the error message:

Error: document.getElementById("Site_ID") has no properties
Source File: http://10.120.5.30/tt/Restricted/CaseForm.cfm
Line: 78

The select is:


So what am I missing here? Doesn't the 
document.GetElementByID('Site_ID'). listen for the select list 
with the ID Site_ID?

Thanks,

Bruce

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303611
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT - https requests stop working after Firewall and IP changes

2008-04-16 Thread James Blaha
Hi Dave,

If you go on the CF server locally can you call a cfm page via HTTP and HTTPS?

Where is the SSL cert sitting?

-Jim 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303610
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Don L
> Hi Don,
> 
> I use an old custom tag for that functionality still. Google 
> cf_textarea
> 
> CF8 is really great. Its the frilly stuff that has issues. I try to 
> stay away from those items as much as I can.
> 
> -Jim 

Jim, I've used the cftextarea with richtext attribute and other stuff to create 
some new feature, with your approach I'm simply not sure how much risk it would 
be involved, thanks for the idea though. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303609
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Phillip Ciske
> Today I've found another one,  ...>, also tried ,
> The font size Attribute does not work, check livedocs without indication as 
> to what type of syntax it's expecting.  Or is it just me?  No, I did not run 
> 8.0.1, weary of it...

It is in the livedocs in the attributes table for the cftextarea tag.
See 
http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags-pt0_01.html.

The tag expects a comma-separated list of sizes formatted as font
size/description. To modify your example, you would need  to have 10pt appear as an
option in the Size select list in the editor.

Hope this helps,
Phillip

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303608
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread James Blaha
Hi Don,

I use an old custom tag for that functionality still. Google cf_textarea

CF8 is really great. Its the frilly stuff that has issues. I try to stay away 
from those items as much as I can.

-Jim 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303606
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread James Blaha
Hi Don,

I use an old custom tag for that functionality still. Google cf_textarea

CF8 is really great. Its the frilly stuff that has issues. I try to stay away 
from those items as much as I can.

-Jim 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303607
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Jacob
How about:



???

-Original Message-
From: Don L [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 1:36 PM
To: CF-Talk
Subject: Lots of bugs with cold fusion 8 (standard edition)

Today I've found another one, , also tried , 
The font size Attribute does not work, check livedocs without indication as
to what type of syntax it's expecting.  Or is it just me?  No, I did not run
8.0.1, weary of it...





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303605
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Raymond Camden
Whether or not you are wary of 801, it's silly to report bugs in 8 w/o
at least testing them in 801 first.

801 is the most recent release and it is pointless to report a bug in 8 (imho).


On Wed, Apr 16, 2008 at 3:35 PM, Don L <[EMAIL PROTECTED]> wrote:
> Today I've found another one,  ...>, also tried ,
>  The font size Attribute does not work, check livedocs without indication as 
> to what type of syntax it's expecting.  Or is it just me?  No, I did not run 
> 8.0.1, weary of it...
>
>
>
>  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303604
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


OT - https requests stop working after Firewall and IP changes

2008-04-16 Thread Dave Hatz
I know this is off topic, but I am running out of places to find a solution for 
this problem.  Last night we upgraded our firewall and put in a new PIX and at 
the same time changed the IP address on one of our web severs.  Web Server is 
IIS5 running with CF6.1 Enterprise.  The domain name resolves fine, but once we 
add SSL to the request, it won't resolve.  I have tried everything I can think 
of.  We removed the SSL and reissued it to the server, no luck.  My techs say 
that SSL requests are getting through the firewall.  I verified the SSL was 
still valid.

We are getting the following error from FF "The connection was interrupted".  I 
tried googling it and found only 1 reference to SSL and this error.

So my question is, has anyone come across a problem like this?  Can any one 
point me in the right direction to look?

Thanks,
Dave Hatz 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303603
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: default font size for a page

2008-04-16 Thread Don L
>One thing I've found extremely useful is CSS "reset" templates.  They
>essentially create a level playing field for the main browsers.  Yahoo! has
>one in their YUI package, and there are some available from others as well.
>The Yahoo! one sets a default size and then recommends using percentages to
>specify font sizes of other elements.
>
>On Wed, Apr 16, 2008 at 3:14 PM, D
>

Well, first of all, good to know and thanks.  I used quite a bit of the new 
ajax related tags/functions, which uses YUI, Ext libraries and from Firebug, I 
seem to remember, they uses CSS from these libraries as well, but not including 
"reset" templates?


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303602
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Lots of bugs with cold fusion 8 (standard edition)

2008-04-16 Thread Don L
Today I've found another one, , 
also tried , 
The font size Attribute does not work, check livedocs without indication as to 
what type of syntax it's expecting.  Or is it just me?  No, I did not run 
8.0.1, weary of it...



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303601
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF8 - Auto Populate a city text field based on zip code field?

2008-04-16 Thread James Blaha
All,

I have a cfform with an auto populate city text field that populates based off 
a query going to a city/zip validation table. My user just asked me if I could 
also populate the city text field with text if the user enters a zip code first.

Is there an easy way to do this?

-Jim 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303600
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfform format="flash" onload

2008-04-16 Thread Kevin Aebig
Many people have found that the required JS file doesn't get loaded because
of an issue with the CFIDE mapping.

You can navigate to the script yourself and copy it to your websites
directory structure to include it yourself manually to fix this issue.

Take a look at the following page and specifically the scriptSrc attribute
of the CFForm tag.

http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p38.htm 

!k

-Original Message-
From: James Blaha [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 2:12 PM
To: CF-Talk
Subject: Re: cfform format="flash" onload

I'll post a link in the morning. Thanks Kevin. If I dont get it to work I
give up at this point. I think I need to include some large JS to make it
work. I dont want a hack in the code. 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303599
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfform format="flash" onload

2008-04-16 Thread James Blaha
I'll post a link in the morning. Thanks Kevin. If I dont get it to work I give 
up at this point. I think I need to include some large JS to make it work. I 
dont want a hack in the code. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303598
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Are cfqueries on a UDF effecient?

2008-04-16 Thread Dominic Watson
>
> The VarScoper CFC is a great help with that sort of thing. It's worth
> taking
> the time installing it on your local system and running it. You'll be
> amazed
> at what you've missed.
>

Yeh, I actually have all my components monitor themselves for this at
runtime (during development) by extending a base component that has this
monitoring functionality. Whenever I don't scope a variable in a CFC method
and I call it, a ColdFusion error gets thrown.

http://fusion.dominicwatson.co.uk/2008/04/stricter-oop-without-aop-sort-of.html

D

-- 
Blog it up: http://fusion.dominicwatson.co.uk


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303597
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Are cfqueries on a UDF effecient?

2008-04-16 Thread Andy Matthews
Excellent Mike! We resolved a LOT of memory issues our servers were having
by var scoping our CFCs. We regained around 15% of our memory.

The VarScoper CFC is a great help with that sort of thing. It's worth taking
the time installing it on your local system and running it. You'll be amazed
at what you've missed. 

-Original Message-
From: Mike Francisco [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 2:51 PM
To: CF-Talk
Subject: RE: Are cfqueries on a UDF effecient?

@Dave, Andy: Thank you very much for the reply!  Andy, thanks for the
reminder on localizing the query variable. I read-up on it and found more
details on
http://www.daemon.com.au/go/services/training/tips-andamp-tricks/using-varia
bles-in-coldfusion-mx-functions

Localizing the query var actually addressed some minor issues I was having
earlier. Cool!

> 
> Okay...
> 
> Dave's right then. The code contained within those included functions 
> only runs when the function is called. That said, you need to make 
> sure you var scope the queries inside each function or you could have 
> memory issues on the page.
> 
> 
> 
>   SELECT id
>   FROM myTable
> 
> 
> That prevents that query from living on in memory after the function 
> returns it.
> 




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303596
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Are cfqueries on a UDF effecient?

2008-04-16 Thread Mike Francisco
@Dave, Andy: Thank you very much for the reply!  Andy, thanks for the
reminder on localizing the query variable. I read-up on it and found more
details on
http://www.daemon.com.au/go/services/training/tips-andamp-tricks/using-varia
bles-in-coldfusion-mx-functions

Localizing the query var actually addressed some minor issues I was having
earlier. Cool!

> 
> Okay...
> 
> Dave's right then. The code contained within those included functions only
> runs when the function is called. That said, you need to make sure you var
> scope the queries inside each function or you could have memory issues on
> the page.
> 
> 
> 
>   SELECT id
>   FROM myTable
> 
> 
> That prevents that query from living on in memory after the function
> returns
> it.
> 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303595
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: default font size for a page

2008-04-16 Thread Sonny Savage
One thing I've found extremely useful is CSS "reset" templates.  They
essentially create a level playing field for the main browsers.  Yahoo! has
one in their YUI package, and there are some available from others as well.
The Yahoo! one sets a default size and then recommends using percentages to
specify font sizes of other elements.

On Wed, Apr 16, 2008 at 3:14 PM, Don L <[EMAIL PROTECTED]> wrote:

> >Should be font-size:smaller; rather than "small"
> >
> >Not too sure if I understand you. Can't you just wrap the home page
> content
> >in a div?
> >div style="font-size:smaller;">Or 80%, or 8pt;
> >
> >This does work in IE6, IE7 and FF. I've put up a really trivial page at
> >http://www.itworldcanada.info/test/t2.htm to show this.
> >
>
> Yeah, thanks, I used 10pt works all right as well.
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303594
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Are cfqueries on a UDF effecient?

2008-04-16 Thread Andy Matthews
Okay...

Dave's right then. The code contained within those included functions only
runs when the function is called. That said, you need to make sure you var
scope the queries inside each function or you could have memory issues on
the page.



SELECT id
FROM myTable


That prevents that query from living on in memory after the function returns
it.

-Original Message-
From: Mike Francisco [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 2:06 PM
To: CF-Talk
Subject: RE: Are cfqueries on a UDF effecient?

> 
> Let me double check. Are each of those queries being run each time the 
> page loads, or only when the function in which they live is called?
> 

Andy, that is what I am trying to find out. Not all of the functions that
contains a query is being called. So I am not really sure how the server
treats the cfqueries before it loads the page.




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303593
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: default font size for a page

2008-04-16 Thread Don L
>Should be font-size:smaller; rather than "small"
>
>Not too sure if I understand you. Can't you just wrap the home page content
>in a div?
>div style="font-size:smaller;">Or 80%, or 8pt;
>
>This does work in IE6, IE7 and FF. I've put up a really trivial page at
>http://www.itworldcanada.info/test/t2.htm to show this.
>

Yeah, thanks, I used 10pt works all right as well. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303592
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Are cfqueries on a UDF effecient?

2008-04-16 Thread Mike Francisco
> 
> Let me double check. Are each of those queries being run each time the
> page
> loads, or only when the function in which they live is called?
> 

Andy, that is what I am trying to find out. Not all of the functions that
contains a query is being called. So I am not really sure how the server
treats the cfqueries before it loads the page.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303591
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Are cfqueries on a UDF effecient?

2008-04-16 Thread Andy Matthews
Let me double check. Are each of those queries being run each time the page
loads, or only when the function in which they live is called? 

-Original Message-
From: Mike Francisco [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 1:34 PM
To: CF-Talk
Subject: Are cfqueries on a UDF effecient?

Hello all.  I am curious and I hope someone can give me a definitive answer.
I have an app where I put all my cfqueries into several reusable functions,
then I place those on into a single UDF file.  Then, I cfinclude the entire
udf file (library) on the pages where it uses some of the queries on the
file.  I realize that sometimes it might only use 2 or 3 query functions, of
about 20 that is on the udf query library.  

 

My question is that, is this technique slowing the CF server down when it
loads a page? Is CF processing any of the queries that are not being called
out as a function on any given page?

 

Thanks and I look forward for great advise from all gurus on the list.





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303590
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: default font size for a page

2008-04-16 Thread Dave Francis
Should be font-size:smaller; rather than "small"

Not too sure if I understand you. Can't you just wrap the home page content
in a div?
div style="font-size:smaller;">Or 80%, or 8pt;

This does work in IE6, IE7 and FF. I've put up a really trivial page at
http://www.itworldcanada.info/test/t2.htm to show this.

-Original Message-
From: Don L [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 16, 2008 1:16 PM
To: CF-Talk
Subject: Re: default font size for a page


>Come on in, the water's fine! CSS is vital these days, and I promise you'll
>love it.
>
>To answer your question (maybe), you can use many units to specify
>font-size: pt, px, em, small, smaller etc. (But not all of them resize
>properly to meet accessibility requirements).
>
>At a quick glance, I can't see anything wrong with your style, IE7 is a LOT
>better than IE6. So what are you applying that style to? ? ?
?
>and what is it's scope?
>
>I generally apply a font style to * at the start of my css, ( isn't
>bad either, there's a couple of inheritence issues that the * overcomes)
>then overwite that default further down as required.
>
>
>Never paid too much attention to CSS, now it seems to bite me.  Is it
>possible to set a default font size to, say, 85%? so that, all the key
ideas
>can be viewed on one screen without scrolling (suppose we know users'
screen
>size)?  Also, the majority of the user community is not supposed to know
how
>to set font size with their browser.
>
>My attempt of using
>style="font-family:'Trebuchet
>MS',Tahoma,Verdana,Arial,Helvetica;font-size:.85em;"
>or similar approach does not seem to have desired effect with IE7.
>
>Thanks.

Thanks, Dave.  Well, 'historically' usually the designer type took care of
css, now the weird thing is, when I tried to set default font size to small,
IE7 didn't 'barge'.  I feel this is a catch-22 situation.  On one hand, if
the home page
using a smaller font size, subsequent pages do not look good while leaving
the default font size to 100% does not make the starting page look good.
Don't know how to reconcile the esthetic and practicality.







~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303589
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Are cfqueries on a UDF effecient?

2008-04-16 Thread Dave Watts
> My question is that, is this technique slowing the CF server 
> down when it loads a page? 

No.

> Is CF processing any of the queries that are not being called 
> out as a function on any given page?

Initially, each function is compiled into a separate class file. After that,
only the functions that you invoke will be processed.

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

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303588
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Forcing a CFC to refresh...

2008-04-16 Thread Brad Wood
All the form scrubbing may be a pain, but it's not a bad idea.  That's
the stuff most people overlook.  

We are in the title business and our public facing sites sanitize all
form and URL variables to make our customers happy about security.
(Mostly Lenders)

Not using AT LEAST CF 7 is retardo though.  I'm sure they probably have
a few miles of red tape in the way.  I know the government supposedly
uses a lot of ColdFusion which is pretty cool.

I don't know if it's true, but I read once that Windows XP didn't have
any Easter eggs because the government used it and they couldn't use ANY
code with "undocumented features".  Go figure.

~Brad

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 1:02 PM
To: CF-Talk
Subject: Re: Forcing a CFC to refresh...

> Actually, this is incorrect. Congressional websites are hosted and
managed
> by the US Senate Sergeant-at-Arms office (which is also a kickass CF
shop).

Hmm - getting off topic - but the one Congressman site I've got - they 
gave me a freaking FIT over using Coldfusion, and said that *only* 
version 5 was "approved". I couldn't use anything else.

I had to put so much regex all over forms to block "bad" stuff and pass 
their security scans that it was ridiculous.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303587
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion 8 Upgrade Affecting ASP Applications

2008-04-16 Thread Patricia Bennette
> I was sure this was coincidental, but has now happened for the second 
> time on another server. Server A was upgraded from CF 7.02 to CF 8 on 
> a Saturday. On Monday an ASP application on server suddenly took 5+ 
> minutes just to display a login screen. Worked fine the previous week. 
> That ASP application was upgraded to the vendor's latest version and 
> it began working reasonably.
> 
> Now, after a Saturday upgrade to CF 8 on Server B, another ASP 
> application on this server is now taking 5 minutes to display a login 
> screen. Seems obvious there is some relation, but I have no idea how 
> CF 8 could be affecting an old ASP application.
> 
> Anyone experienced anything like this or have any ideas what relation 
> could be?
> 


I am having a similiar issue with a .net app. Did you find a solution?
> Steve Moore


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303586
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Are cfqueries on a UDF effecient?

2008-04-16 Thread Mike Francisco
Hello all.  I am curious and I hope someone can give me a definitive answer.
I have an app where I put all my cfqueries into several reusable functions,
then I place those on into a single UDF file.  Then, I cfinclude the entire
udf file (library) on the pages where it uses some of the queries on the
file.  I realize that sometimes it might only use 2 or 3 query functions, of
about 20 that is on the udf query library.  

 

My question is that, is this technique slowing the CF server down when it
loads a page? Is CF processing any of the queries that are not being called
out as a function on any given page?

 

Thanks and I look forward for great advise from all gurus on the list.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303585
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: default font size for a page

2008-04-16 Thread Don L
>Come on in, the water's fine! CSS is vital these days, and I promise you'll
>love it.
>
>To answer your question (maybe), you can use many units to specify
>font-size: pt, px, em, small, smaller etc. (But not all of them resize
>properly to meet accessibility requirements).
>
>At a quick glance, I can't see anything wrong with your style, IE7 is a LOT
>better than IE6. So what are you applying that style to? ? ? ?
>and what is it's scope?
>
>I generally apply a font style to * at the start of my css, ( isn't
>bad either, there's a couple of inheritence issues that the * overcomes)
>then overwite that default further down as required.
>
>
>Never paid too much attention to CSS, now it seems to bite me.  Is it
>possible to set a default font size to, say, 85%? so that, all the key ideas
>can be viewed on one screen without scrolling (suppose we know users' screen
>size)?  Also, the majority of the user community is not supposed to know how
>to set font size with their browser.
>
>My attempt of using
>style="font-family:'Trebuchet
>MS',Tahoma,Verdana,Arial,Helvetica;font-size:.85em;"
>or similar approach does not seem to have desired effect with IE7.
>
>Thanks.

Thanks, Dave.  Well, 'historically' usually the designer type took care of css, 
now the weird thing is, when I tried to set default font size to small, IE7 
didn't 'barge'.  I feel this is a catch-22 situation.  On one hand, if the home 
page 
using a smaller font size, subsequent pages do not look good while leaving the 
default font size to 100% does not make the starting page look good.  Don't 
know how to reconcile the esthetic and practicality. 





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303584
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Looking for UDF or Custom Tag

2008-04-16 Thread Bruce Sorge
Cool. Thanks.

Charlie Griefer wrote:
> unless you go an AJAX route that's pretty much just straightforward
> client side JS.  create a JS array from the query, and call a function
> onchange() on the select that populates the text fields.
>
> really wouldn't be a UDF or a CFC as it's all client side behavior.
>   

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303583
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: IO error on server communication

2008-04-16 Thread Cutter (CFRelated)
Which is why you don't want RDS enabled in production. Makes sense. 
Never used it outside a closed (local) environment so never ran into an 
issue. Forgot all about that, thanks Dave. It's the debugger that 
requires a port...

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Dave Watts wrote:
>> Did you verify that the RDS ports are open on your firewall? 
>> Can't remember what they are off the top of my head...
> 
> There is no RDS port. RDS messages are sent to the HTTP listener port, which
> is usually TCP/80 if you're using an external web server.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> 
> Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
> http://training.figleaf.com/
> 
> WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
> http://www.webmaniacsconference.com/
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303582
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IO error on server communication

2008-04-16 Thread webmaster
I ran this and it showed RDS as true but I still get the IO error when I
browse for a database in the admin etc.

Thanks,
Patrick J. Hedgepath
Pegasus Web Productions
[EMAIL PROTECTED]
803-996-0578





-Original Message-
From: Vamseekrishna Manneboina [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 5:28 AM
To: CF-Talk
Subject: RE: IO error on server communication

You could use the admin API to enable RDS. Run the following script
(replace {admin_pwd} with your CF Admin password) and restart your
server.





Is RDS Enabled : #isRDSEnabled#



Is RDS Enabled : #isRDSEnabled#



Thanks,
Vamsee

-Original Message-
From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 1:14 PM
To: CF-Talk
Subject: Re: IO error on server communication

Did you verify that the RDS ports are open on your firewall? Can't 
remember what they are off the top of my head...

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

[EMAIL PROTECTED] wrote:
> I checked the web.xml file and according to it RDS is enabled.
> 
> Thanks,
> Patrick J. Hedgepath
> Pegasus Web Productions
> [EMAIL PROTECTED]
> 803-996-0578
> 
> 
> 
> 
> 
> -Original Message-
> From: James Holmes [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, April 15, 2008 10:42 PM
> To: CF-Talk
> Subject: Re: IO error on server communication
> 
> Yes, RDS is not enabled on the server. You can enable it by editing
> the appropriate file - I can't recall which but a search should turn
> it up.
> 
> On Wed, Apr 16, 2008 at 10:34 AM,  <[EMAIL PROTECTED]> wrote:
>> I am getting this "IO error on server communication" when I try to
>>  browser for a file in the CF administrator. I understand this might
> be
>>  related to RDS and since I cannot seem to connect with RDS either
I'm
>>  pretty sure RDS is the root of my problems. However I'm not sure how
> to
>>  fix it. Anybody run into this on CF 8.0.1 before and know how to fix
> it?
> 






~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303581
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Forcing a CFC to refresh...

2008-04-16 Thread Les Mizzell
> Actually, this is incorrect. Congressional websites are hosted and managed
> by the US Senate Sergeant-at-Arms office (which is also a kickass CF shop).

Hmm - getting off topic - but the one Congressman site I've got - they 
gave me a freaking FIT over using Coldfusion, and said that *only* 
version 5 was "approved". I couldn't use anything else.

I had to put so much regex all over forms to block "bad" stuff and pass 
their security scans that it was ridiculous.

Using "cfqueryparam", or any other Coldfusion validation/security didn't 
matter at all - if there wasn't regx there to scrub *every* single 
variable on the site, it wouldn't pass the scans and they wouldn't allow 
the file to go live.


Isn't a fun client due to whomever is the server admin, believe me!!! 
Maybe they were just p*ssed that somebody outside their regular circle 
got to develop the site, I dunno...

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303580
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Looking for UDF or Custom Tag

2008-04-16 Thread Charlie Griefer
unless you go an AJAX route that's pretty much just straightforward
client side JS.  create a JS array from the query, and call a function
onchange() on the select that populates the text fields.

really wouldn't be a UDF or a CFC as it's all client side behavior.

On Wed, Apr 16, 2008 at 10:55 AM, Bruce Sorge <[EMAIL PROTECTED]> wrote:
> Good day all,
>  I am looking for a UDF or CFC that allows me to do the following:
>
>  Populates a select list from a query
>  When an item in the list is selected, fills in some text fields
>  automatically.
>
>  I am writing a help desk application, and when the user gets to the part
>  where they select the site, they select one, and then the contact name
>  and phone number are pre-filled in two text fields.
>
>  Thanks,
>
>  Bruce
>
>  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303579
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Looking for UDF or Custom Tag

2008-04-16 Thread Bruce Sorge
Good day all,
I am looking for a UDF or CFC that allows me to do the following:

Populates a select list from a query
When an item in the list is selected, fills in some text fields 
automatically.

I am writing a help desk application, and when the user gets to the part 
where they select the site, they select one, and then the contact name 
and phone number are pre-filled in two text fields.

Thanks,

Bruce

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303578
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: wsconfig.jar v. Apache 2.0.59 solaris

2008-04-16 Thread Dave Watts
> that's what I thought, but it is not showing up. I searched 
> underlying xml files as well.

Did you create the cluster in the Jrun Admin Console, or in the CF
Administrator? If you like, I could take a quick look remotely after 5pm
today, if you can provide some form of remote access.

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

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303577
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: default font size for a page

2008-04-16 Thread Dave Francis
Come on in, the water's fine! CSS is vital these days, and I promise you'll
love it.

To answer your question (maybe), you can use many units to specify
font-size: pt, px, em, small, smaller etc. (But not all of them resize
properly to meet accessibility requirements).

At a quick glance, I can't see anything wrong with your style, IE7 is a LOT
better than IE6. So what are you applying that style to? ? ? ?
and what is it's scope?

I generally apply a font style to * at the start of my css, ( isn't
bad either, there's a couple of inheritence issues that the * overcomes)
then overwite that default further down as required.


-Original Message-
From: Don L [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 16, 2008 11:40 AM
To: CF-Talk
Subject: default font size for a page


Never paid too much attention to CSS, now it seems to bite me.  Is it
possible to set a default font size to, say, 85%? so that, all the key ideas
can be viewed on one screen without scrolling (suppose we know users' screen
size)?  Also, the majority of the user community is not supposed to know how
to set font size with their browser.

My attempt of using
style="font-family:'Trebuchet
MS',Tahoma,Verdana,Arial,Helvetica;font-size:.85em;"
or similar approach does not seem to have desired effect with IE7.

Thanks.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303576
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: wsconfig.jar v. Apache 2.0.59 solaris

2008-04-16 Thread Maureen Barger
that's what I thought, but it is not showing up. I searched underlying xml
files as well.

On Wed, Apr 16, 2008 at 12:48 PM, Dave Watts <[EMAIL PROTECTED]> wrote:

> > thanks, but what I am really trying to do is mount a cluster
> > def to apache and cannot find its port. Do I instead mount
> > the ports of the instances defined in the cluster?
>
> No, the cluster has its own port, which can be found in the Jrun Admin
> Console (http://localhost:8000/).
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
> http://training.figleaf.com/
>
> WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
> http://www.webmaniacsconference.com/
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303575
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Forcing a CFC to refresh...

2008-04-16 Thread Dave Watts
> (all congressman websites have to be on secure 
> Whitehouse servers...ACK!)!

Actually, this is incorrect. Congressional websites are hosted and managed
by the US Senate Sergeant-at-Arms office (which is also a kickass CF shop).

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

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303574
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: default font size for a page

2008-04-16 Thread Don L
>You need to assign a default font size to containers. I generally use this
>method:
>
>body, p, div, td {
>font-family: verdana;
>font-size: .8em;
>color: #00;
>} 
>

Thanks, I wasn't careful in placing similar code. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303573
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IO error on server communication

2008-04-16 Thread Dave Watts
> Did you verify that the RDS ports are open on your firewall? 
> Can't remember what they are off the top of my head...

There is no RDS port. RDS messages are sent to the HTTP listener port, which
is usually TCP/80 if you're using an external web server.

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

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303572
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: default font size for a page

2008-04-16 Thread Andy Matthews
You need to assign a default font size to containers. I generally use this
method:

body, p, div, td {
font-family: verdana;
font-size: .8em;
color: #00;
} 

-Original Message-
From: Don L [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 11:40 AM
To: CF-Talk
Subject: default font size for a page

Never paid too much attention to CSS, now it seems to bite me.  Is it
possible to set a default font size to, say, 85%? so that, all the key ideas
can be viewed on one screen without scrolling (suppose we know users' screen
size)?  Also, the majority of the user community is not supposed to know how
to set font size with their browser.

My attempt of using
style="font-family:'Trebuchet
MS',Tahoma,Verdana,Arial,Helvetica;font-size:.85em;"
or similar approach does not seem to have desired effect with IE7.

Thanks. 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303571
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: wsconfig.jar v. Apache 2.0.59 solaris

2008-04-16 Thread Dave Watts
> thanks, but what I am really trying to do is mount a cluster 
> def to apache and cannot find its port. Do I instead mount 
> the ports of the instances defined in the cluster?

No, the cluster has its own port, which can be found in the Jrun Admin
Console (http://localhost:8000/).

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

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303570
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


default font size for a page

2008-04-16 Thread Don L
Never paid too much attention to CSS, now it seems to bite me.  Is it possible 
to set a default font size to, say, 85%? so that, all the key ideas can be 
viewed on one screen without scrolling (suppose we know users' screen size)?  
Also, the majority of the user community is not supposed to know how to set 
font size with their browser.

My attempt of using 
style="font-family:'Trebuchet 
MS',Tahoma,Verdana,Arial,Helvetica;font-size:.85em;"
or similar approach does not seem to have desired effect with IE7.

Thanks. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303569
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Oklahoma Leaks Tens of Thousands of SSN's

2008-04-16 Thread Josh Nathanson
> 
> I'm sure ASP has a feature like CFs cfQueryParam that would have prevented
> this.

It's worse than not sanitizing the data though -- the programmer hard coded 
the SQL query as an url variable, so you could see all the column names 
without even having to guess them, just by mousing over a link.  That's 
what's so astonishing about it.  The query itself must have been empty and 
getting its information from the url variable, so you could put anything in 
the url variable and it would work.  It would be like doing this:


#url.whatever#


-- Josh


- Original Message - 
From: "Tom Chiverton" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, April 16, 2008 7:23 AM
Subject: Re: Oklahoma Leaks Tens of Thousands of SSN's


> On Wednesday 16 Apr 2008, Russ wrote:
>> This was done in ASP, but seeing as CF is being used a lot in government
>> contracting, I hope nobody here is stupid enough to code something like
>> that.
>
> 
> I'm sure ASP has a feature like CFs cfQueryParam that would have prevented
> this.
>
> "There is no such thing as a bad language, only bad coding".
>
> -- 
> Tom Chiverton
> Helping to autoschediastically maximize network e-business
> on: http://thefalken.livejournal.com
>
> 
>
> This email is sent for and on behalf of Halliwells LLP.
>
> Halliwells LLP is a limited liability partnership registered in England 
> and Wales under registered number OC307980 whose registered office address 
> is at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 
> 3EB.  A list of members is available for inspection at the registered 
> office. Any reference to a partner in relation to Halliwells LLP means a 
> member of Halliwells LLP.  Regulated by The Solicitors Regulation 
> Authority.
>
> CONFIDENTIALITY
>
> This email is intended only for the use of the addressee named above and 
> may be confidential or legally privileged.  If you are not the addressee 
> you must not read it and must not use any information contained in nor 
> copy it nor inform any person other than Halliwells LLP or the addressee 
> of its existence or contents.  If you have received this email in error 
> please delete it and notify Halliwells LLP IT Department on 0870 365 2500.
>
> For more information about Halliwells LLP visit www.halliwells.com.
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303568
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfform format="flash" onload

2008-04-16 Thread Kevin Aebig
Yep... that's what I was talking about.

Coldfusion is supposed to handle that by itself, but I can't recall what
version it was implemented in.

Can you supply a link to the page having the problem... I might be able to
help.

!k

-Original Message-
From: James Blaha [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 6:35 AM
To: CF-Talk
Subject: Re: cfform format="flash" onload

Kevin,

http://www.webmasterworld.com/website_technology/3467406.htm

I think this is my issue, it applies to IE and FireFox though.

-Jim 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303567
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Anyone Have XPAAJ.jar ?

2008-04-16 Thread Josen Ruiseco
I need to get my hands on XPAAJ.jar for some old production code involving PDF 
Forms processing. Because that is no longer available from Adobe, can someone 
email that to me: webmaster AT gomotorbids.com

Thanks...

Josen 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303566
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: wsconfig.jar v. Apache 2.0.59 solaris

2008-04-16 Thread Maureen Barger
thanks, but what I am really trying to do is mount a cluster def to apache
and cannot find its port. Do I instead mount the ports of the instances
defined in the cluster?

On Wed, Apr 16, 2008 at 10:36 AM, Cutter (CFRelated) <
[EMAIL PROTECTED]> wrote:

> Last I checked, and especially with Apache 2.0.59, the Web Server config
> utility is useless with Apache configurations, you must handle it all
> manually. Maybe this tutorial series can help you a little:
>
>
> http://blog.cutterscrossing.com/index.cfm/2007/7/23/Local-Development-Setup-Pt-1-Apache-and-ColdFusion-7-or-8
>
> Steve "Cutter" Blades
> Adobe Certified Professional
> Advanced Macromedia ColdFusion MX 7 Developer
> _
> http://blog.cutterscrossing.com
>
> Maureen Barger wrote:
> > Hi - I am running Apache 2.0.59 on Solaris sparc with ColdFusion
> > multiserver 7.02.
> > I have downloaded the latest wsconfig.jar from Adobe. However when
> trying
> > to use it to set up connector for ColdFusion cluster, I receive the
> > following error:
> >
> > info Macromedia JRun 4.0 (Build 107948)
> > info Version  is installed.  Supported versions are 1.3.12 or
> highe
> > r and 2.0.43 or higher, if not Red Hat 8 or 9, or 2.0.40 or higher, if
> Red
> > Hat 8 or 9
> >
> >
> > Has anyone encountered this and more importantly, how do I get around
> it?
> >
> > Thanks.
> >
> >
> >
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303565
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Macromedia?

2008-04-16 Thread Will Swain
They still use the macromedia.com domain name too on occasion. 


Will

-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: 16 April 2008 15:13
To: CF-Talk
Subject: RE: Macromedia?

That error came from your web connectors (IIS or Apache-to-CF bridge)
which I THINK is part of JRUN.   I don't think JRUN has ever been
re-branded by Adobe since no new releases have come out.  It's still
Macromedia JRUN, isn't it?

~Brad
 
-Original Message-
From: Chad Gray [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 16, 2008 9:07 AM
To: CF-Talk
Subject: Macromedia?

I re-booted a server with CF8 on it and when I tried connecting to a web
site on it I got this error.  Must be buried somewhere deep in the
programming that it still says Macromedia.

:)


Server Error 



Either the Macromedia application server(s) are unreachable or none of them
has a mapping to process this request.






~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303564
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Passwod recovery strategies

2008-04-16 Thread Bobby Hartsfield
Yes, rainbow tables or a TON of extra time and processing power would be the
solution(s) but that's much more involved (or at least time consuming) than
brute force these days so definitely stick with your hashes. The method I
described could just as easily be done with usernames OR email addresses by
the way.

..:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com



-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 10:18 AM
To: CF-Talk
Subject: RE: Passwod recovery strategies

If they forgot their user name, then they have other problems because
that is their Windows domain login as well as the first part of their
E-mail address.  (Company Intranet)  
Our helpdesk (which is available during all business hours) is equipped
to supply a user with their user name if it is forgotten.  The password
is of course hashed, so no one can get to it... well maybe with a
rainbow table.  :)

~Brad

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 15, 2008 7:49 PM
To: CF-Talk
Subject: Re: Passwod recovery strategies

 >>* User clicks "forgot my password link"
* They enter their user name and e-mail address

What if he forgot his user name?



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303563
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: wsconfig.jar v. Apache 2.0.59 solaris

2008-04-16 Thread Cutter (CFRelated)
Last I checked, and especially with Apache 2.0.59, the Web Server config 
utility is useless with Apache configurations, you must handle it all 
manually. Maybe this tutorial series can help you a little:

http://blog.cutterscrossing.com/index.cfm/2007/7/23/Local-Development-Setup-Pt-1-Apache-and-ColdFusion-7-or-8

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Maureen Barger wrote:
> Hi - I am running Apache 2.0.59 on Solaris sparc with ColdFusion
> multiserver 7.02.
> I have downloaded the latest wsconfig.jar from Adobe. However when trying
> to use it to set up connector for ColdFusion cluster, I receive the
> following error:
> 
> info Macromedia JRun 4.0 (Build 107948)
> info Version  is installed.  Supported versions are 1.3.12 or highe
> r and 2.0.43 or higher, if not Red Hat 8 or 9, or 2.0.40 or higher, if Red
> Hat 8 or 9
> 
> 
> Has anyone encountered this and more importantly, how do I get around it?
> 
> Thanks.
> 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303562
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: wsconfig.jar v. Apache 2.0.59 solaris

2008-04-16 Thread Tom Chiverton
On Wednesday 16 Apr 2008, Maureen Barger wrote:
> Has anyone encountered this and more importantly, how do I get around it?

I just make the changes to the Apache settings by hand.

-- 
Tom Chiverton
Helping to administratively supply front-end IPOs
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303561
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Oklahoma Leaks Tens of Thousands of SSN's

2008-04-16 Thread Tom Chiverton
On Wednesday 16 Apr 2008, Russ wrote:
> This was done in ASP, but seeing as CF is being used a lot in government
> contracting, I hope nobody here is stupid enough to code something like
> that.


I'm sure ASP has a feature like CFs cfQueryParam that would have prevented 
this.

"There is no such thing as a bad language, only bad coding".

-- 
Tom Chiverton
Helping to autoschediastically maximize network e-business
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303560
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Passwod recovery strategies

2008-04-16 Thread Brad Wood
If they forgot their user name, then they have other problems because
that is their Windows domain login as well as the first part of their
E-mail address.  (Company Intranet)  
Our helpdesk (which is available during all business hours) is equipped
to supply a user with their user name if it is forgotten.  The password
is of course hashed, so no one can get to it... well maybe with a
rainbow table.  :)

~Brad

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 15, 2008 7:49 PM
To: CF-Talk
Subject: Re: Passwod recovery strategies

 >>* User clicks "forgot my password link"
* They enter their user name and e-mail address

What if he forgot his user name?

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303559
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Macromedia?

2008-04-16 Thread Brad Wood
That error came from your web connectors (IIS or Apache-to-CF bridge)
which I THINK is part of JRUN.   I don't think JRUN has ever been
re-branded by Adobe since no new releases have come out.  It's still
Macromedia JRUN, isn't it?

~Brad
 
-Original Message-
From: Chad Gray [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 9:07 AM
To: CF-Talk
Subject: Macromedia?

I re-booted a server with CF8 on it and when I tried connecting to a web
site on it I got this error.  Must be buried somewhere deep in the
programming that it still says Macromedia.

:)


Server Error 



Either the Macromedia application server(s) are unreachable or none of
them has a mapping to process this request.




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303558
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


  1   2   >