RE: Arrays -Deleting specific items

2003-03-14 Thread Pascal Peters
It looks good but the first line of the script should read:
form.INDEX_TO_DELETE = LISTSORT(form.INDEX_TO_DELETE,"NUMERIC","DESC");

OR don't change it and use variables.INDEX_TO_DELETE in the rest of the code


-Oorspronkelijk bericht- 
Van: Bosky, Dave [mailto:[EMAIL PROTECTED] 
Verzonden: do 13/03/2003 17:37 
Aan: CF-Talk 
CC: 
Onderwerp: Arrays -Deleting specific items



I have an array and need to delete specific positions by using a list of
positions to delete.
Array contains 8 items and I need to delete the items at positions
"2,3,4,5,6".

I've been using the code below and it works most of the time if I delete one
at time but
once I try to delete multiple items it errors out. I'm obviously overlooking
something and
extra eyes would be great!


INDEX_TO_DELETE = LISTSORT(form.INDEX_TO_DELETE,"NUMERIC","DESC");

FOR (INDEX=1;INDEX LTE ListLen(form.index_to_delete); INDEX=INDEX+1)
{
ArrayDeleteAt(session.aCart,ListGetAt(form.index_to_delete,index));
}



Thanks,
Dave




HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message is not 
the intended recipient, or an employee or agent responsible for delivering this 
message to the intended recipient, you are hereby notified that any dissemination, 
distribution or copying of this communication is strictly prohibited.  If you have 
received this communication in error, please notify us immediately by replying to the 
message and deleting it from your computer.  Thank you.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: CFC's - Where to put them?

2003-03-14 Thread Thomas Chiverton
On Wednesday 12 Mar 2003 18:37 pm, Gyrus wrote:
> http://www.benorama.com/coldfusion/patterns/part8.htm

"PS : I hope that macromedia won't use those folders in future release of 
CFMX..."

Not a good sign... Do MM recomend fidderling with WEB-INF ?

-- 
Tom C
"Land of the free, home of the brave... you have to be brave to live there and 
enjoy the freedoms"
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Graphing under MX

2003-03-14 Thread Thomas Chiverton
On Thursday 13 Mar 2003 11:07 am, Adam Reynolds wrote:
> Currently I have gridlines set to 5.
>
> So on a scale range of 20 - 80 you get 5 markes, effectively the quartile
> positions at:
> 20, 35, 50, 65, 80
> What I ultimately want is not to do it this way I want to determine the
> scale and set it to
> 20, 30, 40, 50, 60, 70, 80

I've just come against the same problem - the default appears to be to draw 8 
or so lines, and with a range of 0-17 this results in non int. values on the 
axis.
So we want a function that does
gridlines = numGridLines(minData,maxData,interval)
and then set 
scaleFrom=nearest(minData,interval,'lower')
scaleTo=nearest(maxData,interval,'higher')

Easy one first:
nearest(value,interval,type)
if value/interval != int(value/interval) //not on a point
tmp=value/interval
if type == lower
tmp=int(tmp)
elsif type=higher
tmp=ceiling(tmp)
tmp=tmp*interval
return tmp
elsif
return value

not as hard as you thought one:
numGridLines(min,max,interval)
min=nearest(min,interval,'lower')
max=nearest(max,interval,'higher')
return (max-min)/interval

I'm implementing these in our pages now. Probably not worth adding to cflib.




-- 
Tom C
"Land of the free, home of the brave... you have to be brave to live there and 
enjoy the freedoms"
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Macromedia.Com (The new site?)

2003-03-14 Thread Thomas Chiverton
On Thursday 13 Mar 2003 23:52 pm, Pablo Varando wrote:
> Well, Macromedia has changed the site with the feedback they received from
> the community.
> http://www.macromedia.com
> Like it better? Worse?

Much better.
RIA's are not ready for general use instead of a HTML site. They take too long 
to load and have unusal GUI's.

I've turned Flash content back on for the MM site, it's that much better :-)

-- 
Tom C
"Land of the free, home of the brave... you have to be brave to live there and 
enjoy the freedoms"
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Macromedia.Com (The new site?)

2003-03-14 Thread BloodPython 2003 \(bol\)
Well Done Thomas, mm page was taking forever to load.. Maybe mm could do the same with 
the cf tag gallery (Coldfusion Exchange now). 

http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn130

It takes to much time to load and the worst problem is you can't open pages in a new 
window. 

I think RIA's are for sections or just to some part of a website. 

Regards.

Leonardo.
  - Original Message - 
  From: Thomas Chiverton 
  To: CF-Talk 
  Sent: Friday, March 14, 2003 7:50 AM
  Subject: Re: Macromedia.Com (The new site?)


  E-mail Premium BOL
  Antivírus, anti-spam e até 100 MB de espaço. Assine já!
  http://email.bol.com.br/
  On Thursday 13 Mar 2003 23:52 pm, Pablo Varando wrote:
  > Well, Macromedia has changed the site with the feedback they received from
  > the community.
  > http://www.macromedia.com
  > Like it better? Worse?

  Much better.
  RIA's are not ready for general use instead of a HTML site. They take too long 
  to load and have unusal GUI's.

  I've turned Flash content back on for the MM site, it's that much better :-)

  -- 
  Tom C
  "Land of the free, home of the brave... you have to be brave to live there and 
  enjoy the freedoms"
  
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



SOT: RegEx Help!

2003-03-14 Thread Oliver Cookson
Any ninja's out there? ;)

Im having trouble with a regular expression i wonder if anyone could 
help?

Im looking for this string (see bottom) and want to remove EVERYTHING 
except the word "a string here". This string could be any length or any 
combo of chars\integers.

Also the JS arg (14) is dynamic so that could be any number, everything 
else is static.

a string 
here

Hope someone can help, mail me off list if preferred.

Thanks

Oliver

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: SOT: RegEx Help!

2003-03-14 Thread Jochem van Dieten
Oliver Cookson wrote:
> 
> Im looking for this string (see bottom) and want to remove EVERYTHING 
> except the word "a string here". This string could be any length or any 
> combo of chars\integers.
> 
> Also the JS arg (14) is dynamic so that could be any number, everything 
> else is static.
> 
> a string 
> here

Do you mean this string is part of a larger text? Use:
(.*).*$',"\1")>
else:
(.*)',"\1")>

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: RegEx Help!

2003-03-14 Thread Andre Mohamed
Oliver,

Try something like this:

]*>", "",
"ALL")>

Thanks,

André

-Original Message-
From: Oliver Cookson [mailto:[EMAIL PROTECTED] 
Sent: 14 March 2003 11:13
To: CF-Talk
Subject: SOT: RegEx Help!

Any ninja's out there? ;)

Im having trouble with a regular expression i wonder if anyone could 
help?

Im looking for this string (see bottom) and want to remove EVERYTHING 
except the word "a string here". This string could be any length or any 
combo of chars\integers.

Also the JS arg (14) is dynamic so that could be any number, everything 
else is static.

a string 
here

Hope someone can help, mail me off list if preferred.

Thanks

Oliver


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: RegEx Help!

2003-03-14 Thread Hugo Ahlenius
If you need urgent help on javascript, I would recommend the #javascript
IRC group on efnet, I have had some very good responses there, and people
don't seem to mind that you just drop in and ask a question.



Hugo



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFC's - Where to put them?

2003-03-14 Thread Benoit Hediard
Indeed...
Sorry, if the site is not up-to-date.

>From now on, what I do is that I create a "CF-INF" directory instead of
"WEB-INF".

Benoit Hediard
www.benorama.com

> -Message d'origine-
> De : Thomas Chiverton [mailto:[EMAIL PROTECTED]
> Envoyé : vendredi 14 mars 2003 11:14
> À : CF-Talk
> Objet : Re: CFC's - Where to put them?
>
>
> On Wednesday 12 Mar 2003 18:37 pm, Gyrus wrote:
> > http://www.benorama.com/coldfusion/patterns/part8.htm
>
> "PS : I hope that macromedia won't use those folders in future release of
> CFMX..."
>
> Not a good sign... Do MM recomend fidderling with WEB-INF ?
>
> --
> Tom C
> "Land of the free, home of the brave... you have to be brave to
> live there and
> enjoy the freedoms"
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



cfmail mx - HTML turns to Plain Text

2003-03-14 Thread Robin Dewar
I've been having serious issues with cfmail on cfmx.

The problem comes in two flavours:

1. Manually re-spooling HTML mail which goes into the undeliverable
folder (e.g. due to a lack of response from the SMTP sender) gets sent
out in Plain Text format, despite clearly being an HTML email. I've
tried cfmailparams etc, but no joy.

2. Some HTML emails which are spooled successfully also get sent in
Plain Text format. This is sporadic and a bit random, which is the
worrying aspect of it. It 'seems' to occur when mails sit in the spool
folder for longer than expected... at least that's my only hunch so far.

I feel I can't trust cfmail on mx and am starting to look at
alternatives, so can anyone..

a) offer any advice on the above
b) offer a reliable, alternative mail tag that is mx compatible

I have $1,000,000 in unmarked bearer bonds for any suggestions ;) 

Seriously though, I have a client who depends on the reliable sending of
a weekly batch of emails.
Also, if I really had the money, I'd be in barbados, sipping on a cold
beer right now.

Much obliged

Robbo


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: cfmail mx - HTML turns to Plain Text

2003-03-14 Thread Jochem van Dieten
Robin Dewar wrote:
> 
> 1. Manually re-spooling HTML mail which goes into the undeliverable
> folder (e.g. due to a lack of response from the SMTP sender) gets sent
> out in Plain Text format, despite clearly being an HTML email. I've
> tried cfmailparams etc, but no joy.

IIRC the additional header information for emails (including the 
Content-Type) is not stored together with the files in the spoolfolder 
but elsewhere. I presume this additional information gets out of sync or 
is even discarded when the file is moved to the undeliverable folder.

Do you have the latest updater?


> I feel I can't trust cfmail on mx and am starting to look at
> alternatives, so can anyone..

If you have a SMTP server that can read standard messages from a pickup 
directory you could write directly to that directory.

Jochem


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Zip & E-Mail

2003-03-14 Thread Critz
oi Barney!!

it was updated to work with MX

Crit





Thursday, March 13, 2003, 12:13:30 PM, you wrote:

BB> cfx_zip has been around since CF4.5 at least.  It's C++, so who knows how
BB> well it'll work with MX.  Java has built-in zipping capabilities that you
BB> might look into, if you're familiar with Java.  Also, there is a zip
BB> function on cflib.org.  That might do what you need, and if not, it'll be
BB> pretty easy to tweak I'm sure.

BB> barneyb

>> -Original Message-
>> From: James Blaha [mailto:[EMAIL PROTECTED]
>> Sent: Thursday, March 13, 2003 6:31 AM
>> To: CF-Talk
>> Subject: Re: Zip & E-Mail
>>
>>
>> Melissa,
>>
>> No but thanks, it that for MX only?
>>
>> JB
>>
>> Melissa Fraher wrote:
>>
>> >Jim -
>> >Did you try Ben Forta's cfx_zip custom tag?
>> >
>> >Melissa
>> >
>> >James Blaha wrote:
>> >
>> >
>> >
>> >>Hello All,
>> >>
>> >>Does anyone have a method with an example to zip a file on a web server
>> >>and CFMAIL it using ColdFusion?
>> >>
>> >>Regards,
>> >>James Blaha
>> >>
>> >>
>> >>
>> >>
>> >
>> 
BB> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Debbie Dickerson
Do you have a link to the "old support page" that you're referring to, Doug? I'm not 
sure I know which page you're talking about.

Deb

-Original Message-
From: samcfug [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 12:20 AM
To: CF-Talk
Subject: Re: Macromedia.Com (The new site?)


I read their "what we learned" report and it makes fascinating
reading.  They always said they take feedback seriously, and this shows
how seriously they did take it.

I am a little embarrassed by how brutal the CF community was in their critique
of the beta-1 site, but it is obvious that no matter how the critique was worded
or presented, MM listened and did a yeoman's job in addressing just about all of
the issues brought forward.  About the only issue I still see is that while
"community" is still listed under support, the old support page does not seem to
be accessible from the main page, instead a new page called "Support and
Training" comes up.  I was able to find the old support page by going to the
site map link.  This may well be something that is yet to be addressed, as
beta-2 was brought online within a week of beta-1, that it is not a big deal to
me.

Page load time is much more acceptable (for Flash) and the right click is yet to
be implemented, but what the heck?

Thanks, MM!

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Macromedia.Com (The new site?)

2003-03-14 Thread samcfug
This page http://www.macromedia.com/support/community/

is not reachable (linked) from

http://www.macromedia.com/support/

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: "Debbie Dickerson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, March 14, 2003 6:36 AM
Subject: RE: Macromedia.Com (The new site?)


| Do you have a link to the "old support page" that you're referring to, Doug?
I'm not sure I know which page you're talking about.
|
| Deb
|
| -Original Message-
| From: samcfug [mailto:[EMAIL PROTECTED]
| Sent: Friday, March 14, 2003 12:20 AM
| To: CF-Talk
| Subject: Re: Macromedia.Com (The new site?)
|
|
| I read their "what we learned" report and it makes fascinating
| reading.  They always said they take feedback seriously, and this shows
| how seriously they did take it.
|
| I am a little embarrassed by how brutal the CF community was in their critique
| of the beta-1 site, but it is obvious that no matter how the critique was
worded
| or presented, MM listened and did a yeoman's job in addressing just about all
of
| the issues brought forward.  About the only issue I still see is that while
| "community" is still listed under support, the old support page does not seem
to
| be accessible from the main page, instead a new page called "Support and
| Training" comes up.  I was able to find the old support page by going to the
| site map link.  This may well be something that is yet to be addressed, as
| beta-2 was brought online within a week of beta-1, that it is not a big deal
to
| me.
|
| Page load time is much more acceptable (for Flash) and the right click is yet
to
| be implemented, but what the heck?
|
| Thanks, MM!
|
| =
| Douglas White
| group Manager
| mailto:[EMAIL PROTECTED]
| http://www.samcfug.org
| =
|
|
| 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



cfmail mx - HTML turns to Plain Text

2003-03-14 Thread Robin Dewar
Thanks for the feedback Jochem, 

here's some more thoughts based on your comments...

>> IIRC the additional header information for emails (including the 
>> Content-Type) is not stored together with the files in the spoolfolder 
>> but elsewhere. I presume this additional information gets out of sync >> or is even 
>> discarded when the file is moved to the undeliverable 
>> folder.

That makes sense, in terms of my cfmailparams, but looking at one of the messages in 
my undelivered folder, reveals that everything seems to be ok, ie. Type is set 
correctly to text/html. 

-
E.g
-
server:  "server name here"
port:  25
timeout:  60
from:  [EMAIL PROTECTED]
to:  [EMAIL PROTECTED]
cc:  
bcc:  
subject:  Help!
type:  text/html
spoolenable:  true


Surely this should take precedence.

>> Do you have the latest updater?
Yes, updater 2 has been installed.

>> If you have a SMTP server that can read standard messages from a
>> pickup directory you could write directly to that directory.

Thanks for your suggestion about writing directly into the directory. It's certainly 
an option.

Any thoughts on my other point about the random sending of HTML mails. I'm not sure, 
but it seems to perhaps occur when items sit in the spool too long. Perhaps if the 
server is extremely busy, of if Cold Fusion restarts.

Robbo
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



cfmail mx - HTML turns to Plain Text

2003-03-14 Thread Robin Dewar
Thanks for the feedback Jochem, 

here's some more thoughts based on your comments...

>> IIRC the additional header information for emails (including the 
>> Content-Type) is not stored together with the files in the spoolfolder 
>> but elsewhere. I presume this additional information gets out of sync >> or is even 
>> discarded when the file is moved to the undeliverable 
>> folder.

That makes sense, in terms of my cfmailparams, but looking at one of the messages in 
my undelivered folder, reveals that everything seems to be ok, ie. Type is set 
correctly to text/html. 

-
E.g
-
server:  "server name here"
port:  25
timeout:  60
from:  [EMAIL PROTECTED]
to:  [EMAIL PROTECTED]
cc:  
bcc:  
subject:  Help!
type:  text/html
spoolenable:  true


Surely this should take precedence.

>> Do you have the latest updater?
Yes, updater 2 has been installed.

>> If you have a SMTP server that can read standard messages from a
>> pickup directory you could write directly to that directory.

Thanks for your suggestion about writing directly into the directory. It's certainly 
an option.

Any thoughts on my other point about the random sending of HTML mails. I'm not sure, 
but it seems to perhaps occur when items sit in the spool too long. Perhaps if the 
server is extremely busy, of if Cold Fusion restarts.

Robbo
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Collection Indexing Timing Out

2003-03-14 Thread Bill keziah
I have a collection that I am trying to index, but the connection keeps 
timing out.  Changing the network settings is not an option.  Any 
suggestions?  Thanks in advance.






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CF and PhotoShop

2003-03-14 Thread mynews
Its basically an executable macro. You can save "Actions" in 
PS as an .exe called a droplet. Its called a droplet because 
you can just drop a image file on it and all the actions are 
applied to it.

DM

= = = Original message = = =

Sorry for the ignorant question ... please define "droplet"

H.


> -Original Message-
> From:[EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]
> Sent:~Thursday, March 13, 2003 10:39 AM
> To:~CF-Talk
> Subject:~RE: CF and PhotoShop
> 
> What if you created a droplet and used cfexecute to run the 
droplet? 
> Can you create a droplet that will work on every file in a 
certain 
> directory? 
> 
> The main thing that scares me about trying to script photoshop 

> is loading and unloading it. Its a bulky program that can take 

> forever to load. Maybe you could have it load automatically 
on 
> startip.
> 
> DM
> 
> =
> > 
> > > -Original Message-
> > > From: Owens, Howard [mailto:[EMAIL PROTECTED]
> > > Sent: Thursday, 13 March 2003 8:35 AM
> > > To: CF-Talk
> > > Subject: CF and PhotoShop
> > > 
> > > 
> > > Any of you ever scripted CF to run tasks in PhotoShop? 
 Can 
> 
> > > it be done?
> > > CFExecute and all that.  On Win2K?
> > > 
> > > Any pointers on how to do it?
> > > 
> > > H.
> > > 
> > > 
> > > ~~
> > > Howard Owens
> > > Internet Operations Coordinator
> > > InsideVC.com/Ventura County Star
> > > [EMAIL PROTECTED]
> > > AIM: GoCatGo1956
> > > ~~
> > > 
> > > 
> > 
> 
> 
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Realtime Filesystem Search

2003-03-14 Thread Ryan Emerle
Anyone know of any tools to search a collection of files on the filesystem in realtime 
(i.e. w/o indexing).  Need a tool comparable to 'grep' for unix that will allow me to 
search file contents with regEx and the like.

Anyone have any suggestions?

--
Ryan Emerle
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Kevin Graeme
I like that they've switch the home page from a lifestyle marketing approach
to a product marketing approach. It's interesting to see though that the
color scheme appears very geared towards the old blue images on the tan
background, and now with the white it feels a bit weaker.

-Kevin

> -Original Message-
> From: Pablo Varando [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 13, 2003 5:53 PM
> To: CF-Talk
> Subject: Macromedia.Com (The new site?)
>
>
> Well, Macromedia has changed the site with the feedback they received from
> the community.
> http://www.macromedia.com
>
> Like it better? Worse?
>
> They also released a report about what they learned (good and
> bad) from the
> first week of the new site.
> http://www.macromedia.com/special/progress_report/
> (This is really interesting... you should read it..)
>
> Pablo
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Realtime Filesystem Search

2003-03-14 Thread Ryan Emerle
Ehm.. i should add that i need to perform the search from ColdFusion (5.0 or MX)..

-Original Message-
From: Ryan Emerle 
Sent: Friday, March 14, 2003 8:53 AM
To: CF-Talk
Subject: Realtime Filesystem Search


Anyone know of any tools to search a collection of files on the filesystem in realtime 
(i.e. w/o indexing).  Need a tool comparable to 'grep' for unix that will allow me to 
search file contents with regEx and the like.

Anyone have any suggestions?

--
Ryan Emerle
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Debbie Dickerson
It looks like those links are now in DevNet rather than under Support. They're located 
under "Find and Connect" in the right column of the main DevNet page.


-Original Message-
From: samcfug [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 7:56 AM
To: CF-Talk
Subject: Re: Macromedia.Com (The new site?)


This page http://www.macromedia.com/support/community/

is not reachable (linked) from

http://www.macromedia.com/support/

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: "Debbie Dickerson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, March 14, 2003 6:36 AM
Subject: RE: Macromedia.Com (The new site?)


| Do you have a link to the "old support page" that you're referring to, Doug?
I'm not sure I know which page you're talking about.
|
| Deb
|
| -Original Message-
| From: samcfug [mailto:[EMAIL PROTECTED]
| Sent: Friday, March 14, 2003 12:20 AM
| To: CF-Talk
| Subject: Re: Macromedia.Com (The new site?)
|
|
| I read their "what we learned" report and it makes fascinating
| reading.  They always said they take feedback seriously, and this shows
| how seriously they did take it.
|
| I am a little embarrassed by how brutal the CF community was in their critique
| of the beta-1 site, but it is obvious that no matter how the critique was
worded
| or presented, MM listened and did a yeoman's job in addressing just about all
of
| the issues brought forward.  About the only issue I still see is that while
| "community" is still listed under support, the old support page does not seem
to
| be accessible from the main page, instead a new page called "Support and
| Training" comes up.  I was able to find the old support page by going to the
| site map link.  This may well be something that is yet to be addressed, as
| beta-2 was brought online within a week of beta-1, that it is not a big deal
to
| me.
|
| Page load time is much more acceptable (for Flash) and the right click is yet
to
| be implemented, but what the heck?
|
| Thanks, MM!
|
| =
| Douglas White
| group Manager
| mailto:[EMAIL PROTECTED]
| http://www.samcfug.org
| =
|
|
| 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: cfmail mx - HTML turns to Plain Text

2003-03-14 Thread Jochem van Dieten
Robin Dewar wrote:
> -
> E.g
> -
> server:  "server name here"
> port:  25
> timeout:  60
> from:  [EMAIL PROTECTED]
> to:  [EMAIL PROTECTED]
> cc:  
> bcc:  
> subject:  Help!
> type:  text/html
> spoolenable:  true
> 
> 
> Surely this should take precedence.

Yes, the type should take precedence.

I just remember setting additional headers (X-Originating-IP etc.) were 
not stored in the same file. But that was 2 updaters ago :-)


> Any thoughts on my other point about the random sending of HTML mails.

No.

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Realtime Filesystem Search

2003-03-14 Thread webguy
grep for windows  (or perl) ???
Checkout www.cygwin.com

WG

-Original Message-
From: Ryan Emerle [mailto:[EMAIL PROTECTED]
Sent: 14 March 2003 13:53
To: CF-Talk
Subject: Realtime Filesystem Search


Anyone know of any tools to search a collection of files on the filesystem
in realtime (i.e. w/o indexing).  Need a tool comparable to 'grep' for unix
that will allow me to search file contents with regEx and the like.

Anyone have any suggestions?

--
Ryan Emerle

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Progress Meter?

2003-03-14 Thread James Blaha
Hello All:

Does anyone know or have a good free CF 5 ready progress meter?

Regards,
James Blaha


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Realtime Filesystem Search

2003-03-14 Thread Thomas Chiverton
On Friday 14 Mar 2003 14:22 pm, webguy wrote:
> grep for windows  (or perl) ???
> Checkout www.cygwin.com

Or you can do it the slow way with cffile and cfdirectory.

-- 
Tom C
"Land of the free, home of the brave... you have to be brave to live there and 
enjoy the freedoms"
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Realtime Filesystem Search

2003-03-14 Thread webguy
Better add cfexecute to that then

-Original Message-
From: Ryan Emerle [mailto:[EMAIL PROTECTED]
Sent: 14 March 2003 13:59
To: CF-Talk
Subject: RE: Realtime Filesystem Search


Ehm.. i should add that i need to perform the search from ColdFusion (5.0 or
MX)..

-Original Message-
From: Ryan Emerle
Sent: Friday, March 14, 2003 8:53 AM
To: CF-Talk
Subject: Realtime Filesystem Search


Anyone know of any tools to search a collection of files on the filesystem
in realtime (i.e. w/o indexing).  Need a tool comparable to 'grep' for unix
that will allow me to search file contents with regEx and the like.

Anyone have any suggestions?

--
Ryan Emerle

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Progress Meter?

2003-03-14 Thread Robertson-Ravo, Neil (RX)
Check the MM exchanges :-)

-Original Message-
From: James Blaha [mailto:[EMAIL PROTECTED]
Sent: 14 March 2003 14:29
To: CF-Talk
Subject: Progress Meter?


Hello All:

Does anyone know or have a good free CF 5 ready progress meter?

Regards,
James Blaha



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFX_PayFlowPro and CFMX

2003-03-14 Thread Nathan Mische
Ali, 

For CFX_PayFlowPro to work on CFMX you must pass all attributes into the
tag, including PARMLIST,PROXYADDRESS,PROXYPORT,PROXYLOGON, and
PROXYPASSWORD. These attributes will usually be left blank, like this:

 

You can find this solution in the VeriSign KB:

http://kb.verisign.com/esupport/esupport/payments/esupport.asp?selected=
solutionlist&user=&strCurrentSymptom=&strDisplaySymptom=

Search for soulution ID: vs12273

That said, I'm currently using CFX_PAYMENTNET, the C++ CFX tag that was
distributed before the Java based CFX_PayFlowPro tag. I was using
CFX_PayFlowPro on CF5, but VeriSign had me switch back to CFX_PAYMENTNET
when I migrated to MX, before this issue was resolved. 

HTH,

--Nathan


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Macromedia.Com (The new site?)

2003-03-14 Thread Christian Cantrell
Please make sure you submit these suggestions to the following URL:

http://macromedia.com/bin/webfeedback.cgi

As I hope we have demonstrated, we take feedback seriously and read it 
all.  There are some good ideas here this morning, and I want to make 
sure they are captured.

Christian

On Friday, March 14, 2003, at 01:10 AM, <[EMAIL PROTECTED]> wrote:

> *twitch* is there a reason why you can't conveniently find a list of 
> all
> currently availible MM updaters? IE I want any updater's availible for 
> all
> of the Studio MX suite (CFMX/FlashMX/Contribute/freehand/etc) and 
> CFSTUDIO
> 5.0 updates if there are any but the only way I can find to get 
> the damn
> things is to go through every products support pages, check and see if 
> tehre
> are any updates, and then install them if I can find them.
>
> Why not a consolidated list? or hell even a MM_Updater for win/Mac 
> that just
> checks for any installed MM product and installs the relevant updates?
>
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Progress Meter?

2003-03-14 Thread James Blaha
Neil,

That's the first place I looked. I didn't find anything interesting on 
the exchange.

Regards,
JB

Robertson-Ravo, Neil (RX) wrote:

>Check the MM exchanges :-)
>
>-Original Message-
>From: James Blaha [mailto:[EMAIL PROTECTED]
>Sent: 14 March 2003 14:29
>To: CF-Talk
>Subject: Progress Meter?
>
>
>Hello All:
>
>Does anyone know or have a good free CF 5 ready progress meter?
>
>Regards,
>James Blaha
>
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Progress Meter?

2003-03-14 Thread Robertson-Ravo, Neil (RX)
really? hmm.. there are a few places, I will see if I can dig some links out
for you!

-Original Message-
From: James Blaha [mailto:[EMAIL PROTECTED]
Sent: 14 March 2003 15:02
To: CF-Talk
Subject: Re: Progress Meter?


Neil,

That's the first place I looked. I didn't find anything interesting on 
the exchange.

Regards,
JB

Robertson-Ravo, Neil (RX) wrote:

>Check the MM exchanges :-)
>
>-Original Message-
>From: James Blaha [mailto:[EMAIL PROTECTED]
>Sent: 14 March 2003 14:29
>To: CF-Talk
>Subject: Progress Meter?
>
>
>Hello All:
>
>Does anyone know or have a good free CF 5 ready progress meter?
>
>Regards,
>James Blaha
>
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Tony Weeg
webfeedback.cgi?
what the heck...why does mm use cgi and perl, I assume?
not to sure what that tells me?

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Christian Cantrell [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 9:51 AM
To: CF-Talk
Subject: Re: Macromedia.Com (The new site?)


Please make sure you submit these suggestions to the following URL:

http://macromedia.com/bin/webfeedback.cgi

As I hope we have demonstrated, we take feedback seriously and read it 
all.  There are some good ideas here this morning, and I want to make 
sure they are captured.

Christian

On Friday, March 14, 2003, at 01:10 AM, <[EMAIL PROTECTED]> wrote:

> *twitch* is there a reason why you can't conveniently find a list of 
> all
> currently availible MM updaters? IE I want any updater's availible for

> all
> of the Studio MX suite (CFMX/FlashMX/Contribute/freehand/etc) and 
> CFSTUDIO
> 5.0 updates if there are any but the only way I can find to get 
> the damn
> things is to go through every products support pages, check and see if

> tehre
> are any updates, and then install them if I can find them.
>
> Why not a consolidated list? or hell even a MM_Updater for win/Mac 
> that just
> checks for any installed MM product and installs the relevant updates?
>
> 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RAQ

2003-03-14 Thread Andrea Galmacci - awd*
Has anybody experienced installig CFMX on RAQ Servers?

 
Thanks in advance and regards,

Andrea


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: subquery and group by a non selected field

2003-03-14 Thread Janine Jakim
Did you find the answer yet?
Why not shift the group by classid to the outside query? do you really need
all the fields from 3 tables?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2003 4:49 PM
To: CF-Talk
Subject: RE: subquery and group by a non selected field


Yes, that is the problem. I do have to have class_id in the SELECT 
clause, however in order for it to work with the main query the 
subquery cannot return multiple columns. Here is where my problem 
lies. How do I group by a column that I cannot have in my SELECT 
clause?

DM

= = = Original message = = =

Don't you also need to have class_Id in your select clause?
what error are you getting when you just run the subquery by 
itself?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2003 4:21 PM
To: CF-Talk
Subject: SQL: subquery and group by a non selected field


I am trying to return a list of ids in a sub query but have them 

grouped by another column.

View the subquery below. I am attempting to GROUP BY class_id 

because I need 1 session_id (the one with the MAX(endDate)) from 

each group of class_ids.

SELECT *
~FROM courses A, classes B,sessions C
~WHERE A.course_id = B.course_id AND
~~  C.class_id = B.class_id AND
~C.session_id IN (SELECT session_id
FROM sessions
GROUP BY class_id
HAVING MAX(endDate) BETWEEN '#url.minDate#' AND '#url.maxDate#')


Any ideas on how to get this to work?

DM

___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Sessions across multiple domains?

2003-03-14 Thread Cedric Villat
A client is asking for a password feature that stretches across multiple
domains. So if a user logs in to domain1.com and then goes to the password
section of domain2.com that he won't be asked for his password. I know
cookies won't work here since cross-site cookies are illegal. I'm not sure
that Session variables will work here either, as he has asked that once the
user types the password in, he is NEVER asked for it again.

Also, there is only 1 password for all users. So there is no database
listing of users and whether they have logged in or not. Any ideas on how I
can accomplish this?

Cedric


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Javascript -- why is this form submitting?

2003-03-14 Thread Christian Cantrell
You also have to include a return in your onSubmit function, like this:



Christian

On Thursday, March 13, 2003, at 10:55 PM, Joshua Miller wrote:

> If you don't put the function into your  tag then it will return
> false, but still submit.
>
>  onsubmit="validCCForm(this.form.ccType,this.form.ccNum);">
>
> Joshua Miller
> Head Programmer / IT Manager
> Garrison Enterprises Inc.
> www.garrisonenterprises.net
> [EMAIL PROTECTED]
> (704) 569-9044 ext. 254
>
> *** 
> *
> *
> Any views expressed in this message are those of the individual sender,
> except where the sender states them to be the views of
> Garrison Enterprises Inc.
>
> This e-mail is intended only for the individual or entity to which it  
> is
> addressed and contains information that is private and confidential. If
> you are not the intended recipient you are hereby notified that any
> dissemination, distribution or copying is strictly prohibited. If you
> have received this e-mail in error please delete it immediately and
> advise us by return e-mail to [EMAIL PROTECTED]
> *** 
> *
> *
>
>
> -Original Message-
> From: Owens, Howard [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 13, 2003 9:11 PM
> To: CF-Talk
> Subject: OT: Javascript -- why is this form submitting?
>
>
>   
>
> I found this pretty nice cc validation script out on the net ... but I
> had to make some modifications to it.
>
> I'm having a weird problem with it, however.
>
> Here is the relevant function:
>
> function validCCForm(ccTypeField,ccNumField)
> {
>
>   var result =
> isValidCreditCardNumber(ccNumField,ccTypeField.value,"Credit Card
> Number",true);
>   
>   if (result == true){
>   return true;
>   }
>   else {
>   return false;
>   }
>
> The final function of a rather complex script.
>
> Now to my way of thinking, if it returns false, it means the script
> isn't valid; in fact the proper alert pops up.  But then the form
> submits anyway.
>
> Now I thought if a return was false, the form wouldn't submit.  But  
> this
> keeps submitting.
>
> Here's the event handler:
>
> onClick="validCCForm(this.form.ccType,this.form.ccNum);"
>
> If you need to see the whole script, let me know and I'll send it to  
> you
> directly.
>
> H.
>
>
> ~~
> Howard Owens
> Internet Operations Coordinator
> InsideVC.com/Ventura County Star
> [EMAIL PROTECTED]
> AIM: GoCatGo1956 ~~
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Macromedia.Com (The new site?)

2003-03-14 Thread Mike Chambers
That 99.9% of the site is in ColdFusion, and we have not completed changing
the final .1% over.

mike chambers

[EMAIL PROTECTED]


- Original Message -
From: "Tony Weeg" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, March 14, 2003 10:07 AM
Subject: RE: Macromedia.Com (The new site?)


> webfeedback.cgi?
> what the heck...why does mm use cgi and perl, I assume?
> not to sure what that tells me?
>
> ...tony
>
> Tony Weeg
> Senior Web Developer
> UnCertified Advanced ColdFusion Developer
> Information System Design
> Navtrak, Inc.
> Mobile workforce monitoring, mapping & reporting
> www.navtrak.net
> 410.548.2337
>
> -Original Message-
> From: Christian Cantrell [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 14, 2003 9:51 AM
> To: CF-Talk
> Subject: Re: Macromedia.Com (The new site?)
>
>
> Please make sure you submit these suggestions to the following URL:
>
> http://macromedia.com/bin/webfeedback.cgi
>
> As I hope we have demonstrated, we take feedback seriously and read it
> all.  There are some good ideas here this morning, and I want to make
> sure they are captured.
>
> Christian
>
> On Friday, March 14, 2003, at 01:10 AM, <[EMAIL PROTECTED]> wrote:
>
> > *twitch* is there a reason why you can't conveniently find a list of
> > all
> > currently availible MM updaters? IE I want any updater's availible for
>
> > all
> > of the Studio MX suite (CFMX/FlashMX/Contribute/freehand/etc) and
> > CFSTUDIO
> > 5.0 updates if there are any but the only way I can find to get
> > the damn
> > things is to go through every products support pages, check and see if
>
> > tehre
> > are any updates, and then install them if I can find them.
> >
> > Why not a consolidated list? or hell even a MM_Updater for win/Mac
> > that just
> > checks for any installed MM product and installs the relevant updates?
> >
> > 
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Adrocknaphobia Jones
Being that I lambasted MM on their new site, I'd like to say that beta
is a remarkable improvement over its predecessor. These page loads times
are much more reasonable.

Thanks for listening MM.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: samcfug [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 12:20 AM
To: CF-Talk
Subject: Re: Macromedia.Com (The new site?)

I read their "what we learned" report and it makes fascinating
reading.  They always said they take feedback seriously, and this shows
how seriously they did take it.

I am a little embarrassed by how brutal the CF community was in their
critique
of the beta-1 site, but it is obvious that no matter how the critique
was worded
or presented, MM listened and did a yeoman's job in addressing just
about all of
the issues brought forward.  About the only issue I still see is that
while
"community" is still listed under support, the old support page does not
seem to
be accessible from the main page, instead a new page called "Support and
Training" comes up.  I was able to find the old support page by going to
the
site map link.  This may well be something that is yet to be addressed,
as
beta-2 was brought online within a week of beta-1, that it is not a big
deal to
me.

Page load time is much more acceptable (for Flash) and the right click
is yet to
be implemented, but what the heck?

Thanks, MM!

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Adrocknaphobia Jones
It probably says that they use an out-of-the-box solution for feedback.
I wouldn't expect MM to reinvent the wheel for every internal
application they use.

Although, "They'd be a lot coler if they did." - Dazed and Confused.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 10:08 AM
To: CF-Talk
Subject: RE: Macromedia.Com (The new site?)

webfeedback.cgi?
what the heck...why does mm use cgi and perl, I assume?
not to sure what that tells me?

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Christian Cantrell [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 9:51 AM
To: CF-Talk
Subject: Re: Macromedia.Com (The new site?)


Please make sure you submit these suggestions to the following URL:

http://macromedia.com/bin/webfeedback.cgi

As I hope we have demonstrated, we take feedback seriously and read it 
all.  There are some good ideas here this morning, and I want to make 
sure they are captured.

Christian

On Friday, March 14, 2003, at 01:10 AM, <[EMAIL PROTECTED]> wrote:

> *twitch* is there a reason why you can't conveniently find a list of 
> all
> currently availible MM updaters? IE I want any updater's availible for

> all
> of the Studio MX suite (CFMX/FlashMX/Contribute/freehand/etc) and 
> CFSTUDIO
> 5.0 updates if there are any but the only way I can find to get 
> the damn
> things is to go through every products support pages, check and see if

> tehre
> are any updates, and then install them if I can find them.
>
> Why not a consolidated list? or hell even a MM_Updater for win/Mac 
> that just
> checks for any installed MM product and installs the relevant updates?
>
> 



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CF and PhotoShop

2003-03-14 Thread Adrocknaphobia Jones
I agree. ImageReady isn't a Photoshop replacement, but I do use it for
all batch processing with droplets and it works great. It has a lower
over head than PS so running batches doesn't take up all your resources.
Although I've never tried to use cfexecute to run droplets live on a
server. Sounds like a good experiment.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Jason Miller [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2003 8:57 PM
To: CF-Talk
Subject: Re: CF and PhotoShop

Don't know if it was answered - but that I know of "droplet" is an Adobe
Image Ready term - same as "macro" or  I think Macr MX is called a
sriptlet etc etc.
jay miller
P.S. I was never impressed with ImageReady but it did have photoshopts
basic image editing and much nicer batch processing - perhaps a
possibility? - may allow for com - 

Owens, Howard wrote:


Sorry for the ignorant question ... please define "droplet"



H.





  

-Original Message-

From:[EMAIL PROTECTED]   [
SMTP:[EMAIL PROTECTED]  ]

Sent:   Thursday, March 13, 2003 10:39 AM

To: CF-Talk

Subject:RE: CF and PhotoShop



What if you created a droplet and used cfexecute to run the droplet? 

Can you create a droplet that will work on every file in a certain 

directory? 



The main thing that scares me about trying to script photoshop 

is loading and unloading it. Its a bulky program that can take 

forever to load. Maybe you could have it load automatically on 

startip.



DM



=



-Original Message-

From: Owens, Howard [ mailto:[EMAIL PROTECTED]
 ]

Sent: Thursday, 13 March 2003 8:35 AM

To: CF-Talk

Subject: CF and PhotoShop





Any of you ever scripted CF to run tasks in PhotoShop?  Can 



it be done?

CFExecute and all that.  On Win2K?



Any pointers on how to do it?



H.





~~

Howard Owens

Internet Operations Coordinator

InsideVC.com/Ventura County Star

[EMAIL PROTECTED]  

AIM: GoCatGo1956

~~















~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Sessions across multiple domains?

2003-03-14 Thread Matthew Fusfield
Cedric:
Are both sites hosted on the same CF server? If that is the case, just
append CFID and CFTOKEN to the linked URL and it will carry the session
and client information over:

http://domain2.com/somepage.cfm?cfid=#cfid#&cftoken=#cftoken#

-Matt

-Original Message-
From: Cedric Villat [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 10:24 AM
To: CF-Talk
Subject: Sessions across multiple domains?


A client is asking for a password feature that stretches across multiple
domains. So if a user logs in to domain1.com and then goes to the
password section of domain2.com that he won't be asked for his password.
I know cookies won't work here since cross-site cookies are illegal. I'm
not sure that Session variables will work here either, as he has asked
that once the user types the password in, he is NEVER asked for it
again.

Also, there is only 1 password for all users. So there is no database
listing of users and whether they have logged in or not. Any ideas on
how I can accomplish this?

Cedric



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Macromedia.Com (The new site?)

2003-03-14 Thread Christian Cantrell
The old Macromedia site used hundreds of CGI scripts, and the web  
technology group didn't have time to rewrite them all in ColdFusion, so  
you will notice there is still some legacy code here and there.

Christian

On Friday, March 14, 2003, at 10:07 AM, Tony Weeg wrote:

> webfeedback.cgi?
> what the heck...why does mm use cgi and perl, I assume?
> not to sure what that tells me?
>
> ...tony
>
> Tony Weeg
> Senior Web Developer
> UnCertified Advanced ColdFusion Developer
> Information System Design
> Navtrak, Inc.
> Mobile workforce monitoring, mapping & reporting
> www.navtrak.net
> 410.548.2337
>
> -Original Message-
> From: Christian Cantrell [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 14, 2003 9:51 AM
> To: CF-Talk
> Subject: Re: Macromedia.Com (The new site?)
>
>
> Please make sure you submit these suggestions to the following URL:
>
> http://macromedia.com/bin/webfeedback.cgi
>
> As I hope we have demonstrated, we take feedback seriously and read it
> all.  There are some good ideas here this morning, and I want to make
> sure they are captured.
>
> Christian
>
> On Friday, March 14, 2003, at 01:10 AM, <[EMAIL PROTECTED]> wrote:
>
>> *twitch* is there a reason why you can't conveniently find a list of
>> all
>> currently availible MM updaters? IE I want any updater's availible for
>
>> all
>> of the Studio MX suite (CFMX/FlashMX/Contribute/freehand/etc) and
>> CFSTUDIO
>> 5.0 updates if there are any but the only way I can find to get
>> the damn
>> things is to go through every products support pages, check and see if
>
>> tehre
>> are any updates, and then install them if I can find them.
>>
>> Why not a consolidated list? or hell even a MM_Updater for win/Mac
>> that just
>> checks for any installed MM product and installs the relevant updates?
>>
>> 
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Saving webpage as a PDF document and retain links

2003-03-14 Thread Turetsky, Seth
Can't the full version of Acrobat do this?  I'm pretty sure I've seen it done.  It 
opens a remote webpage and then can save it as a pdf.

-Original Message-
From: FlashGuy [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 10:40 AM
To: CF-Talk
Subject: OT: Saving webpage as a PDF document and retain links


Hi,

This is off topic but has anyone had experience saving a webpage (with links etc.) to 
a PDF file and also retain the links that when clicked on in Acrobat opens those 
links?

Can this be done?



---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---




---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Adrocknaphobia Jones
On the topic of updaters, why are beta updaters so exclusive? I've heard
there is an updater 3 beta for CFMX, but cannot seem to find it
anywhere. Updaters which normally fix a lot of bugs shouldn't be
privately beta tested, since some people would gladly risk a beta if it
meant fixing mission critical bugs.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 1:10 AM
To: CF-Talk
Subject: Re: Macromedia.Com (The new site?)

*twitch* is there a reason why you can't conveniently find a list of all
currently availible MM updaters? IE I want any updater's availible for
all
of the Studio MX suite (CFMX/FlashMX/Contribute/freehand/etc) and
CFSTUDIO
5.0 updates if there are any but the only way I can find to get the
damn
things is to go through every products support pages, check and see if
tehre
are any updates, and then install them if I can find them.

Why not a consolidated list? or hell even a MM_Updater for win/Mac that
just
checks for any installed MM product and installs the relevant updates?




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Macromedia.Com (The new site?)

2003-03-14 Thread Bryan Stevenson
All I want to say hear to Micheal's post is this

Just remember to keep in mind the difference between using Flash for a "web
site" vs. using Flash for an application.  HTML is fine for web site
navigation, but it was a step backward for application interfaces (i.e. from
traditional client-server apps).

So Flash will be great for the next generation of web app interfaces!!! ;-)

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
- Original Message -
From: "Michael Kear" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 13, 2003 8:30 PM
Subject: RE: Macromedia.Com (The new site?)


> I have read their "what we learned" report and it makes fascinating
> reading.  They always said they take feedback seriously, and this shows
> how seriously they do take it.   It's interesting to see how they
> measure their performance and there are some lessons there for most of
> us I'd bet.
>
> For me, the new site's taken away all the issues I had with it.  I think
> if flash is going to be a viable alternative for general site navigation
> it has to address the issue of matching the user experience of html in
> terms of how the pages are used.
>
> It's no good saying "we don't need to adhere strictly to W3C standards -
> all developments have been done by people who went outside the
> standards" because there are a few things people have come to accept.
> Developments have almost all been enhancements or additional features.
> This interface as it was TOOK THINGS AWAY - no right click menus, no
> wheel support etc.
>
> Eventually, flash will have to address these things somehow, or it'll
> never be fully accepted as a means to navigate web sites.   Have a
> customer service department get 50 calls a day with people saying "your
> site doesn't work properly . I cant use my right mouse button" and
> you'll soon want to change your site back to the old way.  It's the
> users who determine what will be accepted on your site, not the
> developers.
>
> But as a graphic/animation/games mechanism, it's unsurpassed, and I
> honestly do hope that eventually it does have all these navigation
> components.
>
>
> Cheers,
> Michael Kear
> Windsor, NSW, Australia
> AFP Webworks.
>
>
>
>
>
> -Original Message-
> From: Pablo Varando [mailto:[EMAIL PROTECTED]
> Sent: Friday, 14 March 2003 10:53 AM
> To: CF-Talk
> Subject: Macromedia.Com (The new site?)
>
> Well, Macromedia has changed the site with the feedback they received
> from
> the community.
> http://www.macromedia.com
>
> Like it better? Worse?
>
> They also released a report about what they learned (good and bad) from
> the
> first week of the new site.
> http://www.macromedia.com/special/progress_report/
> (This is really interesting... you should read it..)
>
> Pablo
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Sessions across multiple domains?

2003-03-14 Thread James Blaha
Cedric,

If you have a web server cluster that also houses multiple domains 
depending on your clustering configuration you can also make a server 
stay with the user who made a request. That would be a clustering 
software modification. I don't know if that's your setup is but this is 
just FYI. An example would be if you had two servers with load balancing 
and a user made a request that hit server 1 they would stay with that 
server for the rest of their session.

Regards,
James Blaha


Matthew Fusfield wrote:

>Cedric:
>Are both sites hosted on the same CF server? If that is the case, just
>append CFID and CFTOKEN to the linked URL and it will carry the session
>and client information over:
>
>http://domain2.com/somepage.cfm?cfid=#cfid#&cftoken=#cftoken#
>
>-Matt
>
>-Original Message-
>From: Cedric Villat [mailto:[EMAIL PROTECTED] 
>Sent: Friday, March 14, 2003 10:24 AM
>To: CF-Talk
>Subject: Sessions across multiple domains?
>
>
>A client is asking for a password feature that stretches across multiple
>domains. So if a user logs in to domain1.com and then goes to the
>password section of domain2.com that he won't be asked for his password.
>I know cookies won't work here since cross-site cookies are illegal. I'm
>not sure that Session variables will work here either, as he has asked
>that once the user types the password in, he is NEVER asked for it
>again.
>
>Also, there is only 1 password for all users. So there is no database
>listing of users and whether they have logged in or not. Any ideas on
>how I can accomplish this?
>
>Cedric
>
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



OT: Saving webpage as a PDF document and retain links

2003-03-14 Thread FlashGuy
Hi,

This is off topic but has anyone had experience saving a webpage (with links etc.) to 
a PDF file and also retain the links that when clicked on in Acrobat opens those 
links?

Can this be done?



---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---




---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Michael Kear
IF the feedback thing is working ok with cgi scripts, why waste time
rebuilding it?  Or any of the other cgi scripts that work ok?  They're
better to invest their energy in making groundbreaking new things or
spiffy new RIAs or new features for us to use. 

I don't need to see a feedback script that works ok redone in coldfusion
so it works just the same.  



Cheers,
Michael Kear
Windsor, NSW, Australia
AFP Webworks.





-Original Message-
From: Christian Cantrell [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 15 March 2003 2:36 AM
To: CF-Talk
Subject: Re: Macromedia.Com (The new site?)

The old Macromedia site used hundreds of CGI scripts, and the web  
technology group didn't have time to rewrite them all in ColdFusion, so

you will notice there is still some legacy code here and there.

Christian

On Friday, March 14, 2003, at 10:07 AM, Tony Weeg wrote:

> webfeedback.cgi?
> what the heck...why does mm use cgi and perl, I assume?
> not to sure what that tells me?
>
> ...tony
>
> Tony Weeg
> Senior Web Developer
> UnCertified Advanced ColdFusion Developer
> Information System Design
> Navtrak, Inc.
> Mobile workforce monitoring, mapping & reporting
> www.navtrak.net
> 410.548.2337


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Don't edit xml config files with DWMX

2003-03-14 Thread Benoit Hediard
FYI, I don't know if it is a known issue, but as I encountered this problem
right now, I prefer to share it : do not edit jrun.xml file with Dreamweaver
MX (and probably other config xml file) .

It will mess up your file by removing ending / at some portion of the files
resulting in a non-XML compliant file.
Result : a crashed installation (services won't start anymore) until you
correct the damaged file manually with Notepad...

Benoit Hediard
www.benorama.com

PS : I had this problem with jrun.xml file on Jrun4 and CFMX for J2EE (on a
new Jrun server) and DWMX 6.1 on Win.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CF and PhotoShop

2003-03-14 Thread Haggerty, Mike
Adobe Photoshop has an excellent scripting extension you can download from
their Web site, and I have used it via Windows Scripting Host to resize
images, apply actions to images, and generally do all things Photoshop. The
scripting extension comes with a (fairly) complete DOM that actually gives
you a lot of insight into how particular filters were produced. You can use
javascript or VBA to automate the production of images, and provide numerous
examples of how to script the application. 

That being said, the one time I tried scripting the application via
Coldfusion was catastrophic, and I do not believe this was due to a lack of
skill on my part. I was trying to take all the files in a directory and
resize them by a certain percentage (this is a simple task). Coldfusion 5
ran out of memory, started throwing Pcode errors, and restarted frequently.
I called Abode for support and they were horrified by what I was trying to
do, saying the product was not intended for this use (they don't seem to
like programmers over there).

Eventually, the server itself would lock up almost immediately after calling
the object - so if you were thinking about this for a production environment
you may want to think of demoting it to a secondary server and plan on
having it go out of commission often. Or, put it on a desktop machine and
run it via a scheduled task or cron job (which is what I do these days).

M

-Original Message-
From: Pablo Varando [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 12, 2003 7:23 PM
To: CF-Talk
Subject: Re: CF and PhotoShop


More then likely he's trying to generate images on the fly...

The only way I could even imagine achieving this would be to see what type
(if any) of COM connections Photoshop has. I use Photoshop extensively, but
have never really tried to integrate the two.

The best thing you can do is to download the OLEView application:
http://www.microsoft.com/com/resources/OVI386.EXE

and install it on the machine that had Photoshop, then see if Photoshop has
COM connections available.. (Not even sure it does, or that it will allow
you to do anything useful..)

If you are not familiar with COM, check out this basic tutorial:
http://www.cfcomet.com/general_COM/OLEView/

Good luck :)
Pablo

- Original Message -
From: "Michael T. Tangorre" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, March 12, 2003 6:17 PM
Subject: Re: CF and PhotoShop


> can i ask why you would want to do this?
>
> - Original Message -
> From: "Owens, Howard" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Wednesday, March 12, 2003 4:34 PM
> Subject: CF and PhotoShop
>
>
> > Any of you ever scripted CF to run tasks in PhotoShop?  Can it be 
> > done? CFExecute and all that.  On Win2K?
> >
> > Any pointers on how to do it?
> >
> > H.
> >
> >
> > ~~
> > Howard Owens
> > Internet Operations Coordinator
> > InsideVC.com/Ventura County Star
> > [EMAIL PROTECTED]
> > AIM: GoCatGo1956 
> > ~~
> >
> >
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Sessions across multiple domains?

2003-03-14 Thread cedric
Yes, both sites are hosted in the same server. I'll give that a shot. Any other ideas 
or is the best way to go about it?
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Macromedia.Com (The new site?)

2003-03-14 Thread S . Isaac Dealey
> Well Done Thomas, mm page was taking forever to load..
> Maybe mm could do the same with the cf tag gallery
> (Coldfusion Exchange now).

> http://www.macromedia.com/cfusion/exchange/index.cfm?view=
> sn130

> It takes to much time to load and the worst problem is you
> can't open pages in a new window.

> I think RIA's are for sections or just to some part of a
> website.

This isn't what I noticed about the new CF Devex.

What I noticed is that it just doesn't work (at least not in flash). If you
cruise around in it for a bit you notice that the grid which takes up most
of the display (for an obvious reason) doesn't show some items, shows
incorrect numbers, doesn't allow you to move between pages of items, etc.

Real simple stuff -- just go to the first page of the Devex and under
Applications > Collaborative Computing you'll see it says at the top left
"Displaying 1-24 of 25 items" and it is indeed showing 24 items in the list,
so you click the right-arrow to go to the next page and get "Displaying
26-25 of 25 items" and an empty grid.

With higher numbers it seems okay, but it looks like it just can't do simple
math with numbers which are slightly above a multiple of 24. (I've seen it
do this for 25-26 items in the list -- I haven't tried too hard to find a
list with larger numbers that's just above the multiple, but I'd suspect
something similar.)

>From a UI standpoint it falls through on other levels. It seems like 24-25
items per page is a really small number for pagination when the list is over
500 or 1000 items. Under Functions, CFC's & Custom Tags > Utility &
Development there are 1982 items -- and while each individual page of
results seems to load faster than the old devex, there's no way to change
the number of results per page or to skip pages.

In the grand scheme of things these are probably small concerns, it's just
the rather large number of small concerns about the new RIA or "Flash as a
near if not complete replacement for HTML" approach that gives me pause.


s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

tapestry api is opensource http://www.turnkey.to/tapi

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Javascript -- why is this form submitting?

2003-03-14 Thread Joshua Miller
Yes, that's right, I forgot the return statement before the function
call.

Thanks,

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Christian Cantrell [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 10:31 AM
To: CF-Talk
Subject: Re: Javascript -- why is this form submitting?


You also have to include a return in your onSubmit function, like this:



Christian

On Thursday, March 13, 2003, at 10:55 PM, Joshua Miller wrote:

> If you don't put the function into your  tag then it will return

> false, but still submit.
>
>  onsubmit="validCCForm(this.form.ccType,this.form.ccNum);">
>
> Joshua Miller
> Head Programmer / IT Manager
> Garrison Enterprises Inc.
> www.garrisonenterprises.net [EMAIL PROTECTED]
> (704) 569-9044 ext. 254
>
> **
> *
> *
> *
> Any views expressed in this message are those of the individual
sender,
> except where the sender states them to be the views of
> Garrison Enterprises Inc.
>
> This e-mail is intended only for the individual or entity to which it
> is
> addressed and contains information that is private and confidential.
If
> you are not the intended recipient you are hereby notified that any
> dissemination, distribution or copying is strictly prohibited. If you
> have received this e-mail in error please delete it immediately and
> advise us by return e-mail to
[EMAIL PROTECTED]
>
*** 
> *
> *
>
>
> -Original Message-
> From: Owens, Howard [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 13, 2003 9:11 PM
> To: CF-Talk
> Subject: OT: Javascript -- why is this form submitting?
>
>
>   
>
> I found this pretty nice cc validation script out on the net ... but I
> had to make some modifications to it.
>
> I'm having a weird problem with it, however.
>
> Here is the relevant function:
>
> function validCCForm(ccTypeField,ccNumField)
> {
>
>   var result =
> isValidCreditCardNumber(ccNumField,ccTypeField.value,"Credit Card
> Number",true);
>   
>   if (result == true){
>   return true;
>   }
>   else {
>   return false;
>   }
>
> The final function of a rather complex script.
>
> Now to my way of thinking, if it returns false, it means the script
> isn't valid; in fact the proper alert pops up.  But then the form
> submits anyway.
>
> Now I thought if a return was false, the form wouldn't submit.  But  
> this
> keeps submitting.
>
> Here's the event handler:
>
> onClick="validCCForm(this.form.ccType,this.form.ccNum);"
>
> If you need to see the whole script, let me know and I'll send it to  
> you
> directly.
>
> H.
>
>
> ~~
> Howard Owens
> Internet Operations Coordinator
> InsideVC.com/Ventura County Star
> [EMAIL PROTECTED]
> AIM: GoCatGo1956
~~
>
>
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Progress Meter?

2003-03-14 Thread Matt Kornguth
Not free ... but might as well be ... $5.00

http://www.mollerus.net/development/cftags/cf_progressmeter.cfm

Haven't used it though.



On 3/14/2003 9:28 AM, James Blaha <[EMAIL PROTECTED]> wrote:
>Hello All:
>
>Does anyone know or have a good free CF 5 ready progress meter?
>
>Regards,
>James Blaha
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Linux JDBCPool Timeout

2003-03-14 Thread Paul Hassinger
I can consider this issue closed, here is how I resolved it:

I feel kind of stupid that I didn't try this earlier, but anyway, I
installed cfmx on another machine with the same setup and it worked fine, so
instead of just re-installing over what I had, like I had in the past, I
completely removed the coldfusionmx directory, the CFIDE, and cfide
directories on the problem machine. I then re-installed from scratch. It
appears to have fixed the problem. I don't know what was causing the problem
in the first place, but I am content with knowing that by reinstalling, I
rid the corrupt file, bad config file, or whatever was causing the issue.
So, we can consider this issue closed in my opinion.

Thank you for everyone's help.
Paul

-Original Message-
From: Paul Hassinger [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2003 12:29 PM
To: CF-Talk
Subject: RE: CFMX Linux JDBCPool Timeout


Thanks Barney,
Unfortunately, no, I don't have any tcpwrappers or firewall settings on the
servers. I handle that all with a seperate firewall and the server exists in
a demilitarized zone. The port is open, since I can access the connection
periodically, but I will check settings over again.

Glad to hear you got it working in Linux. I will have to see if I can do the
same ;-)

Paul

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2003 12:07 PM
To: CF-Talk
Subject: RE: CFMX Linux JDBCPool Timeout


I haven't been following this thread, but I've been running CFMX (as well as
CF4.5 and CF5) and MySQL on the same box and on different boxes, both with
Windows and Linux and never had a problem with connecting to databases with
any setup.

Do you perhaps have a firewall or tcpwrappers disallowing access to port
3306 (a VERY good idea) and accidentally set to disallow access from the
local machine as well?  That'd keep your connections from working.  If I
were you, that's the kind of stuff that I'd start analyzing, rather than
duplicating the setup, because there are a million instances of CF and MySQL
playing nice, and duplicating the set up will very likely not duplicate all
those nitty-gritty settings exactly, which would make the test invalid.

HTH,
barneyb

> -Original Message-
> From: Paul Hassinger [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 13, 2003 9:50 AM
> To: CF-Talk
> Subject: RE: CFMX Linux JDBCPool Timeout
>
>
> Just an update... I have contacted Macromedia,
>
> They claim that they have not heard of this problem from other users. They
> had me download a JDBC MySQL driver from mysql's site the same problem
> occured with that driver.
>
> I created the data source using a Windows development version of
> Cold Fusion
> MX on another machine pointing to the same database. It appeared to work
> perfectly and correctly with no timeout issues, which points to mysql
> working just fine.
>
> I will await to hear back from Macromedia, but in the meantime,
> my next task
> may be to replicate the Linux box and see if it occurs on another box with
> the same setup. Also, then I may be able to test across machines
> instead of
> loopback with Linux, which... maybe there is a problem accessing the
> database on the same machine as CFMX??? Who knows.
>
> I'm always up for more ideas, but I think replicating the
> environment might
> be a good clue for finding out if it is a fluke or a repetitive
> issue for my
> setup.
>
> -Paul Hassinger
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: SOT: RegEx Help!

2003-03-14 Thread Ben Doom
If this is in a larger page context, I probably wouldn't use (.*) since that
would grab everything from the open anchor tag to the /last/ closing anchor
tag.  I'd use
([^<]*)
However, if that's your whole context, Jochem's answer works great.


--  Ben Doom
Programmer & General Lackey
Moonbow Software, Inc

: -Original Message-
: From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
: Sent: Friday, March 14, 2003 6:23 AM
: To: CF-Talk
: Subject: Re: SOT: RegEx Help!
:
:
: Oliver Cookson wrote:
: >
: > Im looking for this string (see bottom) and want to remove EVERYTHING
: > except the word "a string here". This string could be any length or any
: > combo of chars\integers.
: >
: > Also the JS arg (14) is dynamic so that could be any number, everything
: > else is static.
: >
: > a string
: > here
:
: Do you mean this string is part of a larger text? Use:
: (.*).*$',"\1")>
: else:
: (.*)',"\1")>
:
: Jochem
:
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



NTFS file permissions don't restrict access

2003-03-14 Thread Brad Howerter
Thanks for your reply, Sean.  I'll disperse my answers between your comments...

>Ermm.. Having read the rest of the string...
>
>Are you already authenticated as an NT user? IE If you're established as an
>NT user with permissions over the wwwroot and IIS is allowing NTFS auth then
>this will avoid tricks like denying iusr read.

I'm running MIE as ICGDEV, an authenticated user with no privileges to any template 
files on the server.
>
>Under IIS, the first trick to keep in mind is what users have access to
>browse the directory at all. Who can pull up a directory listing, who can
>actually read the files. Removing the IUSR should stop browsers from
>accessing those pages. If it hasn't, try restarting the CF services.
>Occasionally I have found those details caching and not re checking auth.
>

ICGDEV has no privileges to browse the directory and no privileges to read the files.

I restarted the entire computer and it still behaves the same way.  Access is given to 
ICGDEV to run the ColdFusion pages, even though it has no NTFS permissions.

>The next trick to keep in mind is which process is actually calling the
>script, and which user is that process authenticated under.
>
>IE Are you just browsing anonymously? Have you previously authenticated as
>an Admin, is the script being called direct from your browser, or is it
>being called as an include/component/etc from within your scripts.

It's being called directly, its just hello.cfm with just the word 'hello' in it.

>
>Actual calls to the script from your browser will execute as you. The IUSR
>if you haven't provided authentication and NT Auth is disabled, Your NT user
>if NT Auth is enabled and you've authenticated in the NT domain, or the
>authentication details you've provided through challenge/response.

That's what I'm saying isn't working.  I'm using integrated windows authentication, 
connecting as ICGDEV, and I'm still able to access the coldfusion pages from the 
browser.  According to the technote, I shouldn't be able to, since ICGDEV doesn't have 
the neccessary read privileges.

>
>Internal script calls to other templates or components will execute as the
>system user, or as cold fusion itself when executing. Sandboxing is the best
>way to secure these type of calls imho.

I'm not really considering using this for securing the pages (at this time), I'm just 
trying to understand how it works.
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Text searching in Oracle

2003-03-14 Thread Matt Robertson
I have this code, that works great in Access and mySQL (see below). I
can't seem to get this to work in Oracle no matter what I do.  It
doesn't like me searching on the PageText (type=long) field.  Error is 

[Oracle][ODBC][Ora]ORA-00932: inconsistent datatypes: expected NUMBER
got LONG 

I'm stuck with the long field type, and I can't use anything but a
simple query.  How can I search on a long text field in Oracle?


SELECT 
filename.ID,
filemane.Title
FROM filename
WHERE 
(
filename.Title LIKE 
OR
filename.PageText LIKE 
)
  


 Matt Robertson   [EMAIL PROTECTED] 
 MSB Designs, Inc.  http://mysecretbase.com


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Cflogin, application.cfm and javascript...

2003-03-14 Thread Jeff
Okay, if I've got a directory that I want to protect (is user logged in?) I
understand I want to put it in the application.cfm file for that directory,
but I'm kinda stumbling about my logic and was wondering if you guys could
clear things up for me.

If the directory I'm trying to protect is a subdirectory under the root, and
on the main page in the root there's a link to a javascript popup window
that sits in the directory I'm trying to access, can I use javascript to
refresh the parent window if the user successfully logs in?

So all the logic for this directory will sit in the application.cfm file of
the subdirectory, right? (call it 'foo'). And furthermore, can I use
application.cfm to popup that SAME window that has the login form is the
user isn't logged in? Say for instance, a user tries to bookmark a page in
the foo directory. What I'd *LIKE* to happen, is that the page redirects to
the home page of the root, and the javascript login window pops up.

Can you accomplish this with the application.cfm in the foo directory? And
once the user is logged in, all the standard IsUserInRole(#role#) will
apply, no? Does my logic and approach sound like I'm grasping it correctly?

So, in the foo directory, on any page in the directory:
1. Is user logged in?
no - load the root index page, and popup the login window
yes - load the appropriate page

2. If user goes to log in
If successful, close popup, refresh parent window with the index page
from foo
If unsuccessful, refresh the popup with the login option and add the
ability to close the window if the user doesn't have a login name/pw

Make sense?

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: CF and PhotoShop

2003-03-14 Thread Jason Miller
Yup - you nailed all the reasons below why I use image ready for batch.

Although I have found batch processing in Macromedia MX to be just as 
fast and robust. Perhaps that is even a better option for the more 
possiblye likeli support of being able to use other Macr tools like 
coldfusion.. just another idea..

Actually - I hope the original poster -if he solves the issue responds 
back to the list with his findings.. my mind envisions me on a beach 
chair : while an image editing software is working it's but off ; with 
the thought of setting something like that up.

I didn't even consider that route and am going the flash mx - load jpg 
to create certain graphical elements as flash which indeed could be 
handled as jpgs instead with some functionality loss - but I would love 
to test them together.

good luck
jay miller

Adrocknaphobia Jones wrote:

>I agree. ImageReady isn't a Photoshop replacement, but I do use it for
>all batch processing with droplets and it works great. It has a lower
>over head than PS so running batches doesn't take up all your resources.
>Although I've never tried to use cfexecute to run droplets live on a
>server. Sounds like a good experiment.
>
>Adam Wayne Lehman
>Web Systems Developer
>Johns Hopkins Bloomberg School of Public Health
>Distance Education Division
>
>
>-Original Message-
>From: Jason Miller [mailto:[EMAIL PROTECTED] 
>Sent: Thursday, March 13, 2003 8:57 PM
>To: CF-Talk
>Subject: Re: CF and PhotoShop
>
>Don't know if it was answered - but that I know of "droplet" is an Adobe
>Image Ready term - same as "macro" or  I think Macr MX is called a
>sriptlet etc etc.
>jay miller
>P.S. I was never impressed with ImageReady but it did have photoshopts
>basic image editing and much nicer batch processing - perhaps a
>possibility? - may allow for com - 
>
>Owens, Howard wrote:
>
>
>Sorry for the ignorant question ... please define "droplet"
>
>
>
>H.
>
>
>
>
>
>  
>
>-Original Message-
>
>From:   [EMAIL PROTECTED]   [
>SMTP:[EMAIL PROTECTED]  ]
>
>Sent:  Thursday, March 13, 2003 10:39 AM
>
>To:CF-Talk
>
>Subject:   RE: CF and PhotoShop
>
>
>
>What if you created a droplet and used cfexecute to run the droplet? 
>
>Can you create a droplet that will work on every file in a certain 
>
>directory? 
>
>
>
>The main thing that scares me about trying to script photoshop 
>
>is loading and unloading it. Its a bulky program that can take 
>
>forever to load. Maybe you could have it load automatically on 
>
>startip.
>
>
>
>DM
>
>
>
>=
>
>
>
>-Original Message-
>
>From: Owens, Howard [ mailto:[EMAIL PROTECTED]
> ]
>
>Sent: Thursday, 13 March 2003 8:35 AM
>
>To: CF-Talk
>
>Subject: CF and PhotoShop
>
>
>
>
>
>Any of you ever scripted CF to run tasks in PhotoShop?  Can 
>
>
>
>it be done?
>
>CFExecute and all that.  On Win2K?
>
>
>
>Any pointers on how to do it?
>
>
>
>H.
>
>
>
>
>
>~~
>
>Howard Owens
>
>Internet Operations Coordinator
>
>InsideVC.com/Ventura County Star
>
>[EMAIL PROTECTED]  
>
>AIM: GoCatGo1956
>
>~~
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Saving webpage as a PDF document and retain links

2003-03-14 Thread cfhelp
Acrobat does it...

Click File - Open Webpage. Then save as a PDF.

Rick

-Original Message-
From: FlashGuy [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 9:40 AM
To: CF-Talk
Subject: OT: Saving webpage as a PDF document and retain links

Hi,

This is off topic but has anyone had experience saving a webpage (with links
etc.) to a PDF file and also retain the links that when clicked on in
Acrobat opens those 
links?

Can this be done?



---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---




---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Cflogin, application.cfm and javascript...

2003-03-14 Thread James Blaha
Jeff,

http://www.cfvault.com/index.cfm/mode/DisplayTutorial/TuUUID/7F4D0522-EC4C-11D3-85030050DABEAE1B/Tutorial_Page/1

This tutorial will explain it all. This is a great security application 
to apply for secure sites.

Regards,
James Blaha


Jeff wrote:

>Okay, if I've got a directory that I want to protect (is user logged in?) I
>understand I want to put it in the application.cfm file for that directory,
>but I'm kinda stumbling about my logic and was wondering if you guys could
>clear things up for me.
>
>If the directory I'm trying to protect is a subdirectory under the root, and
>on the main page in the root there's a link to a javascript popup window
>that sits in the directory I'm trying to access, can I use javascript to
>refresh the parent window if the user successfully logs in?
>
>So all the logic for this directory will sit in the application.cfm file of
>the subdirectory, right? (call it 'foo'). And furthermore, can I use
>application.cfm to popup that SAME window that has the login form is the
>user isn't logged in? Say for instance, a user tries to bookmark a page in
>the foo directory. What I'd *LIKE* to happen, is that the page redirects to
>the home page of the root, and the javascript login window pops up.
>
>Can you accomplish this with the application.cfm in the foo directory? And
>once the user is logged in, all the standard IsUserInRole(#role#) will
>apply, no? Does my logic and approach sound like I'm grasping it correctly?
>
>So, in the foo directory, on any page in the directory:
>1. Is user logged in?
>no - load the root index page, and popup the login window
>yes - load the appropriate page
>
>2. If user goes to log in
>If successful, close popup, refresh parent window with the index page
>from foo
>If unsuccessful, refresh the popup with the login option and add the
>ability to close the window if the user doesn't have a login name/pw
>
>Make sense?
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



aspmail?

2003-03-14 Thread Emmet McGovern
Is anyone using aspmail instead of cfmail?  Any performance difference? 

Emmet
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CFSTOREDPROC & It's Progress

2003-03-14 Thread James Blaha
Hello All:

For all those out there using CFSTOREDPROC what do you do while youre 
generating an output for your user's while its generating? Is there a 
best practice to follow?

Regards,
James Blaha

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Slightly OT: MM Updaters

2003-03-14 Thread Adrocknaphobia Jones
I posted to a different thread but I thought I would reiterate here:

Why are the beta updaters so elusive? Do they really need a private
group of beta testes for updaters? Since these updaters fix a good many
bugs they should be made public right away and let us make the risk
decisions when necessary.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 2:55 AM
To: CF-Talk
Subject: Re: Slightly OT: MM Updaters

They were actually the two I found - Or rather I've got CFMX updater 2
on hand, I don't have the 3 beta, which i'm told fixes some com issues
created with updater 2?

- Original Message -
From: "Dave Lyons" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, March 14, 2003 5:27 PM
Subject: Re: Slightly OT: MM Updaters


> i have cfmx & dwmx handy from a few days ago when I reinstalled if you
need
> them i could mail or something.
>
>
> - Original Message -
> From: <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, March 14, 2003 2:22 AM
> Subject: Slightly OT: MM Updaters
>
>
> > Does anybody have a list somewhere of the latest current updaters
for
the
> MM
> > suite and download locations?
> >
> > IE I want to chase up updaters for
> >
> > CFServer 5.0
> > CFStudio 5.0
> > CFMX
> > DWMX
> > HomeSite+
> > FlashMX
> > FreehandMX
> > DirectorMX
> > Contribute
> > JRun
> > Authorware 6.5
> > Flash Com's Server
> > Flash Remoting MX
> >
> > and keep up to date with them - I'm also looking at playing with a
few
> other
> > bits and pieces. Is there an FTP location somewhere? A convenient
index?
A
> > downloads page thats reasonably accessible?
> >
> > I'm trawling through product pages, technotes, support documents,
there
> > doesnt appear to be a consistent naming convention for download page
names
> > even, they're all over the place.
> >
> > Any thoughts on a better way would be most apprieciated.
> >
> > Cheers
> > Sean
> >
> >
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Don't edit xml config files with DWMX

2003-03-14 Thread ksuh
Weird.  I've edited the cfmx xml files and tomcat xml files with DWMX with no ill 
effect.

- Original Message -
From: Benoit Hediard <[EMAIL PROTECTED]>
Date: Friday, March 14, 2003 8:57 am
Subject: Don't edit xml config files with DWMX

> FYI, I don't know if it is a known issue, but as I encountered 
> this problem
> right now, I prefer to share it : do not edit jrun.xml file with 
> DreamweaverMX (and probably other config xml file) .
> 
> It will mess up your file by removing ending / at some portion of 
> the files
> resulting in a non-XML compliant file.
> Result : a crashed installation (services won't start anymore) 
> until you
> correct the damaged file manually with Notepad...
> 
> Benoit Hediard
> www.benorama.com
> 
> PS : I had this problem with jrun.xml file on Jrun4 and CFMX for 
> J2EE (on a
> new Jrun server) and DWMX 6.1 on Win.
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Adrocknaphobia Jones
Ouch. ZDNet wasn't to kind about macromedia.com.
http://news.zdnet.co.uk/story/0,,t269-s2131698,00.html

Again, the new version is much better and I hope ZDNet writes a
follow-up article on how Macromedia has graciously responded to all the
criticism.

But I do with Macromedia would stop touting this argument:
"When you move from an HTML world into a much richer desktop-oriented
world, that's a big change, and people just have difficulty with
change," he said. "Any time you change a Web site, there's an initial
week or so where people don't feel comfortable yet and you hear a lot of
feedback."

It's bullshit. If there is one thing that can be said about web
developers, is that we are accustomed to change. From the tools we use
to the technology, everything changes constantly. We're just critical of
the wrong types of change, not change itself.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Pablo Varando [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2003 6:53 PM
To: CF-Talk
Subject: Macromedia.Com (The new site?)

Well, Macromedia has changed the site with the feedback they received
from
the community.
http://www.macromedia.com

Like it better? Worse?

They also released a report about what they learned (good and bad) from
the
first week of the new site.
http://www.macromedia.com/special/progress_report/
(This is really interesting... you should read it..)

Pablo



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Dave Carabetta
>webfeedback.cgi?
>what the heck...why does mm use cgi and perl, I assume?
>not to sure what that tells me?

Oh man, don't start this one again!!

As Sean and other Macromedians have mentioned, the sheer depth and 
complexity of migrating the old Macromedia site meant that not everything 
could be converted over to ColdFusion from the legacy code (which I believe 
was a mix of CF, CGI and other technologies from both the Allaire and 
Macromedia sites). They said that over time, all of their applications will 
be converted, but it wasn't feasible to get it all done in one shot.




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Some Good New TechNotes...

2003-03-14 Thread Dave Carabetta
As Christian points out in his blog, there are some new TechNotes on the MM 
site. With all the discussions about MX performance and OutOfMemory errors 
recently, I think that two of the three he lists are good reads for starting 
points to tackle the problems.

http://www.macromedia.com/go/cantrell

PS- Not that they need further promotion, but between Christian and Sean's 
blog, there's a hidden treasure trove of valuable information to be had 
regarding CFMX (and no, I am not a compensated endorser). I would definitely 
bookmark them as valuable resources to regularly check out, if you don't 
already. Sean's blog is at:

http://www.macromedia.com/go/blog_scorfield

Regards,
Dave.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Saving webpage as a PDF document and retain links

2003-03-14 Thread Svee, Eric
It's super easy--full versions of Acrobat have a feature called Web
Capture. It's the second icon at the upper left of the screen. Click
that button, enter your URL and you are on your way. All the links are
preserved, the images are preserved--it's a great way to archive a site.

Two caveats:
--Requires Internet Explorer
--Version 4 on Macintosh didn't have this feature. I believe that was
corrected in the current version (5) and when I looked on Adobe's site
just now, there was nothing to the contrary.

I used to work at Adobe and if you have additional questions, feel free
to contact me off list.

Eric



-Original Message-
From: FlashGuy [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 7:40 AM
To: CF-Talk
Subject: OT: Saving webpage as a PDF document and retain links


Hi,

This is off topic but has anyone had experience saving a webpage (with
links etc.) to a PDF file and also retain the links that when clicked on
in Acrobat opens those 
links?

Can this be done?



---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---




---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



sql datasource

2003-03-14 Thread Robert Shaw
Hi Jeff,
I've tested with a Domain account that has full rights and still no luck. 
Any other tips, are there any documents on seting this up?

TIA,
Rob







~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: aspmail?

2003-03-14 Thread samcfug
AspMail seems to require that SMTP services be running on the server, and I
consider that a security problem.   I prefer CFMAIL

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: "Emmet McGovern" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, March 14, 2003 11:29 AM
Subject: aspmail?


| Is anyone using aspmail instead of cfmail?  Any performance difference?
|
| Emmet
| 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Cflogin, application.cfm and javascript...

2003-03-14 Thread Jeff
on 3/14/03 1:13 PM, James Blaha at [EMAIL PROTECTED] wrote:

> Jeff,
> 
> http://www.cfvault.com/index.cfm/mode/DisplayTutorial/TuUUID/7F4D0522-EC4C-11D
> 3-85030050DABEAE1B/Tutorial_Page/1
> 
> This tutorial will explain it all. This is a great security application
> to apply for secure sites.
> 

Thanks for the link. I think this might help tremendously.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFX_PayFlowPro and CFMX

2003-03-14 Thread Ali Daniali
Thank you Nathan.
-AD

-Original Message-
From: Nathan Mische [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 6:45 AM
To: CF-Talk
Subject: RE: CFX_PayFlowPro and CFMX

Ali,

For CFX_PayFlowPro to work on CFMX you must pass all attributes into the
tag, including PARMLIST,PROXYADDRESS,PROXYPORT,PROXYLOGON, and
PROXYPASSWORD. These attributes will usually be left blank, like this:



You can find this solution in the VeriSign KB:

http://kb.verisign.com/esupport/esupport/payments/esupport.asp?selected=
solutionlist&user=&strCurrentSymptom=&strDisplaySymptom=

Search for soulution ID: vs12273

That said, I'm currently using CFX_PAYMENTNET, the C++ CFX tag that was
distributed before the Java based CFX_PayFlowPro tag. I was using
CFX_PayFlowPro on CF5, but VeriSign had me switch back to CFX_PAYMENTNET
when I migrated to MX, before this issue was resolved.

HTH,

--Nathan


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Joshua Miller
This is a snippet of a response to the ZDNet article about
Macromedia.com, I thought I'd pass it along here as well ...



... with RIA applications you will inherently have a longer load time
because you're loading the entire application at once. With traditional
web applications you get page-by-page loads which is faster initially,
but overall I would imagine you sit and wait longer for traditional HTML
pages when all is said and done.

Think about it - 35 seconds to load an HTML page is slow, but to load 50
HTML pages it's pretty fast. That's what RIAs give you, the equivalent
of an entire application in one page load. Most users don't complain
about Microsoft Outlook taking 30 seconds to load, it's total lack of
accessibility features and it's generally sluggish behavior when doing
searches, etc. but when a web application doesn't load in 6 seconds and
the link to the second version of the site in HTML doesn't leap out and
grab your attention then everyone is up in arms. We're all accustomed to
looking at application splash screens while waiting for desktop
applications to load, why is it so outrageous for a web application to
do the same?

You have to realize, what Macromedia is doing is laying the groundwork
for a whole new way to create applications, you can't expect that type
of technology to be 100% from day 1. Eventually web applications will
behave almost identically to desktop applications and in most cases will
even replace them. I would hate to think that the future of software
would be based on HTML. Flash, server-side processing and RIAs are the
future of not only the web, but software as we know it. We need to be
helpful and supportive of this process instead of being so critical. 

With support and positive feedback this process can mature and grow,
Macromedia took their feedback and improved their product, that speaks
volumes about their commitment to the future and to their developers.



Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 11:38 AM
To: CF-Talk
Subject: RE: Macromedia.Com (The new site?)


Ouch. ZDNet wasn't to kind about macromedia.com.
http://news.zdnet.co.uk/story/0,,t269-s2131698,00.html

Again, the new version is much better and I hope ZDNet writes a
follow-up article on how Macromedia has graciously responded to all the
criticism.

But I do with Macromedia would stop touting this argument: "When you
move from an HTML world into a much richer desktop-oriented world,
that's a big change, and people just have difficulty with change," he
said. "Any time you change a Web site, there's an initial week or so
where people don't feel comfortable yet and you hear a lot of feedback."

It's bullshit. If there is one thing that can be said about web
developers, is that we are accustomed to change. From the tools we use
to the technology, everything changes constantly. We're just critical of
the wrong types of change, not change itself.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Pablo Varando [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2003 6:53 PM
To: CF-Talk
Subject: Macromedia.Com (The new site?)

Well, Macromedia has changed the site with the feedback they received
from the community. http://www.macromedia.com

Like it better? Worse?

They also released a report about what they learned (good and bad) from
the first week of the new site.
http://www.macromedia.com/special/progress_report/
(This is really interesting... you should read it..)

Pablo




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.c

RegEx Help!

2003-03-14 Thread Oliver Cookson
That works great but it also removes other links which start with some text.

I need it to remove links that start with ]*>", "", "ALL") 

Cheers
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Realtime Filesystem Search

2003-03-14 Thread Jim Davis
> 
> Anyone know of any tools to search a collection of files on 
> the filesystem in realtime (i.e. w/o indexing).  Need a tool 
> comparable to 'grep' for unix that will allow me to search 
> file contents with regEx and the like.
> 
> Anyone have any suggestions?


I've got a "FileFind" tag that recurses directories and finds files of
specific extensions.  But the tag is open and could be easily modified
to accept a RegEx input:

http://www.depressedpress.com/DepressedPress/Content/ColdFusion/CustomTa
gs/DP_FileFind/Index.cfm

Jim Davis


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CFMX and CFFTP issues

2003-03-14 Thread Satish B
I also have a problem in using  tag.
It says - An exception occurred when establishing a FTP connection. 
The Error Occurred in /var/www/html/hccall/admin/doupdimg.cfm: line 17

It used to work before on my Cold Fusion 4.5 Server. Now I am trying this code on Cold 
Fusion MX. 

*** 

15 :username="xferfile" password="expressismore" stoponerror="Yes" 
passive="Yes" 
16 :localfile="/var/www/html/hccall/skuimg/images.cpio" 
remotefile="#remotefile#" 
17 :transfermode="BINARY" failifexists="No" timeout="300">
18 : 
 
***
Any help is appreciated. Thanks a bunch in advance !
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Creating a auto-generated account number

2003-03-14 Thread FlashGuy
It might require a format like

TSC-



On Thu, 13 Mar 2003 18:04:52 -0500, John Quarto-vonTivadar wrote:

> If it doesn't need a specific format why not just use createUUID() ?
> 
> -Original Message-
> From: FlashGuy [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, March 13, 2003 5:51 PM
> To: CF-Talk
> Subject: Creating a auto-generated account number
> 
> 
> Hi,
> 
> I'm using CF and MySQL in a windows platform. I have a form that when
> opened I would like a unique account number generated for each form
> opened. Has anyone done this before? Whats the best way to go about it? 
> 
> 
> 
> 
> ---
> Colonel Nathan R. Jessop
> Commanding Officer
> Marine Ground Forces
> Guatanamo Bay, Cuba
> ---
> 
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



sql datasource

2003-03-14 Thread Robert Shaw
More idtails... this is the error I'm getting in the Admin:

Connection verification failed for data source: Webtest
[]java.sql.SQLException: SQLException occurred in JDBCPool while attempting 
to connect: java.sql.SQLException: [MERANT][SequeLink JDBC Driver][ODBC 
Socket][Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 
'NT AUTHORITY\ANONYMOUS LOGON'.. The root cause was that: 
java.sql.SQLException: SQLException occurred in JDBCPool while attempting to 
connect: java.sql.SQLException: [MERANT][SequeLink JDBC Driver][ODBC 
Socket][Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 
'NT AUTHORITY\ANONYMOUS LOGON'

TIA,
Rob







~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: SOT: RegEx Help!

2003-03-14 Thread Dave Lyons
yep ben i had it figured out:)
lol
by the way, thanks for the great presentation on this last night

dave
- Original Message -
From: "Ben Doom" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, March 14, 2003 12:21 PM
Subject: RE: SOT: RegEx Help!


> If this is in a larger page context, I probably wouldn't use (.*) since
that
> would grab everything from the open anchor tag to the /last/ closing
anchor
> tag.  I'd use
> ([^<]*)
> However, if that's your whole context, Jochem's answer works great.
>
>
> --  Ben Doom
> Programmer & General Lackey
> Moonbow Software, Inc
>
> : -Original Message-
> : From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
> : Sent: Friday, March 14, 2003 6:23 AM
> : To: CF-Talk
> : Subject: Re: SOT: RegEx Help!
> :
> :
> : Oliver Cookson wrote:
> : >
> : > Im looking for this string (see bottom) and want to remove EVERYTHING
> : > except the word "a string here". This string could be any length or
any
> : > combo of chars\integers.
> : >
> : > Also the JS arg (14) is dynamic so that could be any number,
everything
> : > else is static.
> : >
> : > a string
> : > here
> :
> : Do you mean this string is part of a larger text? Use:
> :  : href="javascript:popUpJargonDefinition([0-9]*)">(.*).*$',"\1")>
> : else:
> :  : href="javascript:popUpJargonDefinition([0-9]*)">(.*)',"\1")>
> :
> : Jochem
> :
> :
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Cflogin, application.cfm and javascript...

2003-03-14 Thread James Blaha
Jeff,

If you hit a wall using it feel free let me know. It's penance for all 
my questions I ask on the list.  :-)  Security is not the easiest to 
understand.

Regards,
JB

Jeff wrote:

>on 3/14/03 1:13 PM, James Blaha at [EMAIL PROTECTED] wrote:
>
>  
>
>>Jeff,
>>
>>http://www.cfvault.com/index.cfm/mode/DisplayTutorial/TuUUID/7F4D0522-EC4C-11D
>>3-85030050DABEAE1B/Tutorial_Page/1
>>
>>This tutorial will explain it all. This is a great security application
>>to apply for secure sites.
>>
>>
>>
>
>Thanks for the link. I think this might help tremendously.
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: RegEx Help!

2003-03-14 Thread Ben Doom
Again, see Jochem and my posts.  This regex is for non-specific tags -- it
removes them all.  Jochem had it right for a constricted context (where the
text you gave was the only thing there) and I suggested a modification for
if the context was a full page.


--  Ben Doom
Programmer & General Lackey
Moonbow Software, Inc

: -Original Message-
: From: Oliver Cookson [mailto:[EMAIL PROTECTED]
: Sent: Friday, March 14, 2003 10:47 AM
: To: CF-Talk
: Subject: RegEx Help!
:
:
: That works great but it also removes other links which start with
: some text.
:
: I need it to remove links that start with ]*>", "", "ALL")
:
: Cheers
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFAdvocacy.org: Looking for contributors

2003-03-14 Thread Jim Davis
> -Original Message-
> From: Angel Stewart [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, March 13, 2003 2:10 PM
> To: CF-Talk
> Subject: RE: CFAdvocacy.org: Looking for contributors
> 
> 
> You GO man!
> 
> This is great! 
> 
> GO CF! 
> Its your birthday!
> Go CF! 
> We go'n party like its yo birthday!
> *puts hands in air*
> Uh huh!
> 
> *shakes booty*
> 
> ^_^
> Hows that for a start on contributions! 

Well - it's the best one I've gotten so far...  ;^)

Jim Davis


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



MX thinks URL Params are structures

2003-03-14 Thread Jonathan
I've found that in CFMX, if you pass a URL param that contains a . CF thinks it's a 
structure instead of a string, and therefore throws an error when you try to output 
it.  example:

myPage.cfm?fileName=myFile.exe

Does anyone know of a fix for this?

- Jonathan


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Formatting a Date in CFGRID

2003-03-14 Thread douglas . kronenberger
I'm having trouble get the date formatted in a CFGRID  column (mm/dd/yy).  

I tried doing this:
 

And of course it won't let me get away with that. What do I need to do? Do I
need to just format up in the SQL statement? could use a hint or two there
also.


Thanks in advance
Doug Kronenberger
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: MX thinks URL Params are structures

2003-03-14 Thread Miller, Kevin
Does the URL encode function escape this?

Kevin

-Original Message-
From: Jonathan [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 11:28 AM
To: CF-Talk
Subject: MX thinks URL Params are structures


I've found that in CFMX, if you pass a URL param that contains a . CF thinks it's a 
structure instead of a string, and therefore throws an error when you try to output 
it.  example:

myPage.cfm?fileName=myFile.exe

Does anyone know of a fix for this?

- Jonathan



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



componentDoc not finding my CFC

2003-03-14 Thread Brad Howerter
I created a CFC in d:\inetpub\cfc\com\wgc, but it doesn't show up in
componentDoc.cfm.  How do I get it to show?  I don't know if this matters,
but I do have a coldfusion mapping that points to the wgc folder.   My
default web site is d:\inetpub\wgapps, and the cfc folder is not in the
website.

***
The information in this e-mail is confidential and intended solely for the
individual or entity to whom it is addressed. If you have received this
e-mail in error please notify the sender by return e-mail, delete this
e-mail, and refrain from any disclosure or action based on the information.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Sessions across multiple domains?

2003-03-14 Thread cedric
THis is just a plain vanilla CF server. Nothing fancy. All of the domains are being 
held on the same server. As I thought about Matt's idea a bit more, I realized that 
his CFTOKEN-CFID idea works great for the session, but does not keep state when the 
user returns to the site. Is there a way I can set a cookie for all the domains after 
they login? I know I can specify the domain I want the cookie for, so what about 
having like 2 different cfcookie statements, so if the user visits the other site, the 
cookie already exists. Any good?
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Looping Client Vars

2003-03-14 Thread Ryan
Anyone have any ideas for looping through and deleting all client variables?  Client 
isn't a structure, is it?

TIA,

Ryan
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Mosh Teitelbaum
Hey Tony:

Did you have to pass a test to attain UnCertified Advanced status?  Is there
a good book for that? 8^)

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 942-5378
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 14, 2003 12:54 PM
> To: CF-Talk
> Subject: RE: Macromedia.Com (The new site?)
>
>
> oh ok.
> that makes sense...but come on...a simple feedback form :)
>
> heck, ill do it, and send ya the code :) jk, mike...it just hit me
> funny, we are all soo cf sensitive, me included...anytime we don't
> see .cfm on the end of a url, its like GRRR
>
> ...tony
>
> Tony Weeg
> Senior Web Developer
> UnCertified Advanced ColdFusion Developer
> Information System Design
> Navtrak, Inc.
> Mobile workforce monitoring, mapping & reporting
> www.navtrak.net
> 410.548.2337
>
> -Original Message-
> From: Mike Chambers [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 14, 2003 10:44 AM
> To: CF-Talk
> Subject: Re: Macromedia.Com (The new site?)
>
>
> That 99.9% of the site is in ColdFusion, and we have not completed
> changing
> the final .1% over.
>
> mike chambers
>
> [EMAIL PROTECTED]
>
>
> - Original Message -
> From: "Tony Weeg" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, March 14, 2003 10:07 AM
> Subject: RE: Macromedia.Com (The new site?)
>
>
> > webfeedback.cgi?
> > what the heck...why does mm use cgi and perl, I assume?
> > not to sure what that tells me?
> >
> > ...tony
> >
> > Tony Weeg
> > Senior Web Developer
> > UnCertified Advanced ColdFusion Developer
> > Information System Design
> > Navtrak, Inc.
> > Mobile workforce monitoring, mapping & reporting
> > www.navtrak.net
> > 410.548.2337
> >
> > -Original Message-
> > From: Christian Cantrell [mailto:[EMAIL PROTECTED]
> > Sent: Friday, March 14, 2003 9:51 AM
> > To: CF-Talk
> > Subject: Re: Macromedia.Com (The new site?)
> >
> >
> > Please make sure you submit these suggestions to the following URL:
> >
> > http://macromedia.com/bin/webfeedback.cgi
> >
> > As I hope we have demonstrated, we take feedback seriously and read it
> > all.  There are some good ideas here this morning, and I want to make
> > sure they are captured.
> >
> > Christian
> >
> > On Friday, March 14, 2003, at 01:10 AM, <[EMAIL PROTECTED]> wrote:
> >
> > > *twitch* is there a reason why you can't conveniently find a list of
> > > all
> > > currently availible MM updaters? IE I want any updater's availible
> for
> >
> > > all
> > > of the Studio MX suite (CFMX/FlashMX/Contribute/freehand/etc) and
> > > CFSTUDIO
> > > 5.0 updates if there are any but the only way I can find to get
> > > the damn
> > > things is to go through every products support pages, check and see
> if
> >
> > > tehre
> > > are any updates, and then install them if I can find them.
> > >
> > > Why not a consolidated list? or hell even a MM_Updater for win/Mac
> > > that just
> > > checks for any installed MM product and installs the relevant
> updates?
> > >
> > > 
> >
> >
> >
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: sql datasource

2003-03-14 Thread Bruce Sorge
It looks to me like the login is failing. Try creating a new account on the 
SQL server with permissions to that DB, then set it up in the CFADMIN using 
that account.



Bruce Sorge





From: "Robert Shaw" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: sql datasource
Date: Fri, 14 Mar 2003 14:03:35 -0500

More idtails... this is the error I'm getting in the Admin:

Connection verification failed for data source: Webtest
[]java.sql.SQLException: SQLException occurred in JDBCPool while attempting
to connect: java.sql.SQLException: [MERANT][SequeLink JDBC Driver][ODBC
Socket][Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user
'NT AUTHORITY\ANONYMOUS LOGON'.. The root cause was that:
java.sql.SQLException: SQLException occurred in JDBCPool while attempting to
connect: java.sql.SQLException: [MERANT][SequeLink JDBC Driver][ODBC
Socket][Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user
'NT AUTHORITY\ANONYMOUS LOGON'

TIA,
Rob








~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Tony Weeg
by all means.

it's the school of hard knocks cf quiz, given by me.

you can have the manual if you want to study up, I heard
that cliff is actually penning some notes for it as well :)

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 2:46 PM
To: CF-Talk
Subject: RE: Macromedia.Com (The new site?)


Hey Tony:

Did you have to pass a test to attain UnCertified Advanced status?  Is
there
a good book for that? 8^)

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 942-5378
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 14, 2003 12:54 PM
> To: CF-Talk
> Subject: RE: Macromedia.Com (The new site?)
>
>
> oh ok.
> that makes sense...but come on...a simple feedback form :)
>
> heck, ill do it, and send ya the code :) jk, mike...it just hit me
> funny, we are all soo cf sensitive, me included...anytime we don't
> see .cfm on the end of a url, its like GRRR
>
> ...tony
>
> Tony Weeg
> Senior Web Developer
> UnCertified Advanced ColdFusion Developer
> Information System Design
> Navtrak, Inc.
> Mobile workforce monitoring, mapping & reporting
> www.navtrak.net
> 410.548.2337
>
> -Original Message-
> From: Mike Chambers [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 14, 2003 10:44 AM
> To: CF-Talk
> Subject: Re: Macromedia.Com (The new site?)
>
>
> That 99.9% of the site is in ColdFusion, and we have not completed
> changing
> the final .1% over.
>
> mike chambers
>
> [EMAIL PROTECTED]
>
>
> - Original Message -
> From: "Tony Weeg" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, March 14, 2003 10:07 AM
> Subject: RE: Macromedia.Com (The new site?)
>
>
> > webfeedback.cgi?
> > what the heck...why does mm use cgi and perl, I assume?
> > not to sure what that tells me?
> >
> > ...tony
> >
> > Tony Weeg
> > Senior Web Developer
> > UnCertified Advanced ColdFusion Developer
> > Information System Design
> > Navtrak, Inc.
> > Mobile workforce monitoring, mapping & reporting
> > www.navtrak.net
> > 410.548.2337
> >
> > -Original Message-
> > From: Christian Cantrell [mailto:[EMAIL PROTECTED]
> > Sent: Friday, March 14, 2003 9:51 AM
> > To: CF-Talk
> > Subject: Re: Macromedia.Com (The new site?)
> >
> >
> > Please make sure you submit these suggestions to the following URL:
> >
> > http://macromedia.com/bin/webfeedback.cgi
> >
> > As I hope we have demonstrated, we take feedback seriously and read
it
> > all.  There are some good ideas here this morning, and I want to
make
> > sure they are captured.
> >
> > Christian
> >
> > On Friday, March 14, 2003, at 01:10 AM, <[EMAIL PROTECTED]> wrote:
> >
> > > *twitch* is there a reason why you can't conveniently find a list
of
> > > all
> > > currently availible MM updaters? IE I want any updater's availible
> for
> >
> > > all
> > > of the Studio MX suite (CFMX/FlashMX/Contribute/freehand/etc) and
> > > CFSTUDIO
> > > 5.0 updates if there are any but the only way I can find to
get
> > > the damn
> > > things is to go through every products support pages, check and
see
> if
> >
> > > tehre
> > > are any updates, and then install them if I can find them.
> > >
> > > Why not a consolidated list? or hell even a MM_Updater for win/Mac
> > > that just
> > > checks for any installed MM product and installs the relevant
> updates?
> > >
> > > 
> >
> >
> >
>
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Looping Client Vars

2003-03-14 Thread Greg McDaniel
You can use


   




Greg

-Original Message-
From: Ryan [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 1:47 PM
To: CF-Talk
Subject: Looping Client Vars


Anyone have any ideas for looping through and deleting all client variables?
Client isn't a structure, is it?

TIA,

Ryan

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Ken Wilson
> cliff is actually penning some notes for it as well :)


Yeah, he refers to them as CF-Talk.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: MX thinks URL Params are structures

2003-03-14 Thread James Ang
I ran this in CFMX (Developer Edition, Updater 2, WinXP, IIS):



#HTMLCodeFormat(URL.filename)#

I did not see the error you are talking about..

Jon, Say "hi" to Chris Evans for me. :)


James Ang
Programmer/Product Engineer
MedSeek, Inc.
[EMAIL PROTECTED]



-Original Message-
From: Miller, Kevin [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 11:32 AM
To: CF-Talk
Subject: RE: MX thinks URL Params are structures


Does the URL encode function escape this?

Kevin

-Original Message-
From: Jonathan [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 11:28 AM
To: CF-Talk
Subject: MX thinks URL Params are structures


I've found that in CFMX, if you pass a URL param that contains a . CF
thinks it's a structure instead of a string, and therefore throws an
error when you try to output it.  example:

myPage.cfm?fileName=myFile.exe

Does anyone know of a fix for this?

- Jonathan




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Macromedia.Com (The new site?)

2003-03-14 Thread Tony Weeg
:) zackly!

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Ken Wilson [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 14, 2003 3:02 PM
To: CF-Talk
Subject: RE: Macromedia.Com (The new site?)


> cliff is actually penning some notes for it as well :)


Yeah, he refers to them as CF-Talk.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: MX thinks URL Params are structures

2003-03-14 Thread Jonathan
nope. encoding the url param doesn't help


- Original Message -
From: "Miller, Kevin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, March 14, 2003 2:31 PM
Subject: RE: MX thinks URL Params are structures


> Does the URL encode function escape this?
>
> Kevin
>
> -Original Message-
> From: Jonathan [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 14, 2003 11:28 AM
> To: CF-Talk
> Subject: MX thinks URL Params are structures
>
>
> I've found that in CFMX, if you pass a URL param that contains a . CF
thinks it's a structure instead of a string, and therefore throws an error
when you try to output it.  example:
>
> myPage.cfm?fileName=myFile.exe
>
> Does anyone know of a fix for this?
>
> - Jonathan
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



  1   2   >