Re: Sync time between CF cluster members?

2007-04-27 Thread James Holmes
I've used this before:

http://www.forta.com/blog/index.cfm/2005/12/6/ColdFusion-UDF-To-Access-NIST-Time-Servers

It's better to have the sever's real time properly set though.

On 4/27/07, Peterson, Chris [EMAIL PROTECTED] wrote:
 How do you keep time synced on servers where its critial that the time
 is the same?

 I was thinking of changing my 'currentTime' value to make a call to the
 database to get its local time, but that would add some small overhead
 to each page request.  I need to ensure that my 2+ CF servers be
 precisely in sync with each other at all times.  Anyone else tackle this
 one?

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

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Regex help looking for a name in a string.

2007-04-27 Thread Will Swain
Ok, no doubt this is an easy RegEx question, but not for me.
 
I have two queries. One returns a set of names, the other a string which may
or may not contain one or more of the names.
 
I want to check for the existence of a name in the string, and if I find it,
make it a hyperlink.
 
So far I have this:
 
cfset works_string = qry_getEvent.works
 
cfloop query=qry_getProfiles
 cfset works_string = REReplaceNoCase(#works_string#, #artist#, a
href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a, ALL)
/cfloop
 
Which works in a limited sense but stumbles where names are similar or
contain the same words - for example
 
John Smith
John Smith  Sons
 
If the string contained John Smith  Sons, the code would highlight the John
Smith part but not the rest.
 
Any suggestions?
 
Thanks
 
will
 


~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Gaulin, Mark
Is there a delimited in the list of names (work_string), something that
you can include in your reg ex to anchor it to an entire entry? 
Mark

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 5:27 AM
To: CF-Talk
Subject: Regex help looking for a name in a string.

Ok, no doubt this is an easy RegEx question, but not for me.
 
I have two queries. One returns a set of names, the other a string which
may or may not contain one or more of the names.
 
I want to check for the existence of a name in the string, and if I find
it, make it a hyperlink.
 
So far I have this:
 
cfset works_string = qry_getEvent.works
 
cfloop query=qry_getProfiles
 cfset works_string = REReplaceNoCase(#works_string#, #artist#, a
href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a,
ALL) /cfloop
 
Which works in a limited sense but stumbles where names are similar or
contain the same words - for example
 
John Smith
John Smith  Sons
 
If the string contained John Smith  Sons, the code would highlight the
John Smith part but not the rest.
 
Any suggestions?
 
Thanks
 
will
 




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


directory watcher

2007-04-27 Thread Asim Manzur
is there any sample code available for directorywatcher application anywhere
?

Thanks

-- 
...
Regards,


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Bobby Hartsfield
Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a
href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a, all)

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 5:27 AM
To: CF-Talk
Subject: Regex help looking for a name in a string.

Ok, no doubt this is an easy RegEx question, but not for me.
 
I have two queries. One returns a set of names, the other a string which may
or may not contain one or more of the names.
 
I want to check for the existence of a name in the string, and if I find it,
make it a hyperlink.
 
So far I have this:
 
cfset works_string = qry_getEvent.works
 
cfloop query=qry_getProfiles
 cfset works_string = REReplaceNoCase(#works_string#, #artist#, a
href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a, ALL)
/cfloop
 
Which works in a limited sense but stumbles where names are similar or
contain the same words - for example
 
John Smith
John Smith  Sons
 
If the string contained John Smith  Sons, the code would highlight the John
Smith part but not the rest.
 
Any suggestions?
 
Thanks
 
will
 




~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


Re: Regex help looking for a name in a string.

2007-04-27 Thread Zaphod Beeblebrox
It does really look like your using Regex's.  Since you're looking for
strings essentially, can't you just use ReplaceNoCase?

On 4/27/07, Will Swain [EMAIL PROTECTED] wrote:
 Ok, no doubt this is an easy RegEx question, but not for me.

 I have two queries. One returns a set of names, the other a string which may
 or may not contain one or more of the names.

 I want to check for the existence of a name in the string, and if I find it,
 make it a hyperlink.

 So far I have this:

 cfset works_string = qry_getEvent.works

 cfloop query=qry_getProfiles
  cfset works_string = REReplaceNoCase(#works_string#, #artist#, a
 href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a, ALL)
 /cfloop

 Which works in a limited sense but stumbles where names are similar or
 contain the same words - for example

 John Smith
 John Smith  Sons

 If the string contained John Smith  Sons, the code would highlight the John
 Smith part but not the rest.

 Any suggestions?

 Thanks

 will



 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: Regex help looking for a name in a string.

2007-04-27 Thread Zaphod Beeblebrox
that should be It doesn't really look like your using Regex's

On 4/27/07, Zaphod Beeblebrox [EMAIL PROTECTED] wrote:
 It does really look like your using Regex's.  Since you're looking for
 strings essentially, can't you just use ReplaceNoCase?

 On 4/27/07, Will Swain [EMAIL PROTECTED] wrote:
  Ok, no doubt this is an easy RegEx question, but not for me.
 
  I have two queries. One returns a set of names, the other a string which may
  or may not contain one or more of the names.
 
  I want to check for the existence of a name in the string, and if I find it,
  make it a hyperlink.
 
  So far I have this:
 
  cfset works_string = qry_getEvent.works
 
  cfloop query=qry_getProfiles
   cfset works_string = REReplaceNoCase(#works_string#, #artist#, a
  href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a, ALL)
  /cfloop
 
  Which works in a limited sense but stumbles where names are similar or
  contain the same words - for example
 
  John Smith
  John Smith  Sons
 
  If the string contained John Smith  Sons, the code would highlight the John
  Smith part but not the rest.
 
  Any suggestions?
 
  Thanks
 
  will
 
 
 
  

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Will Swain
No, sadly. It's just a field of text, sometimes the entries (names) are
seperated by commas, sometimes by new lines, but not everything is a name.

A bit of background - basically, this is a text description about an event,
and includes the names of the artists performing. I'm trying to implement a
function so that the client can add profiles about artists, and if the
artist has a profile this is reached by a link to a new window containing
more info, an image etc..

For example typical content in the works_string might look like:

David Rees-Williams Triobr

bA Taste of France: Jazz Transcriptions of the Classics./b

But the only part that might need to be transformed to a link would be David
Rees-Williams Trio. That's fine, and the code I wrote can do that. However,
you might also have a profile for David Rees-Williams, so the code needs to
be clever enough to recognise that, and this is where the problem lies.

If I was building this from scratch I'd change the way the data is stored,
so that each artist was a separate entry in the db, and then it would be an
easy task. But I'm not and that's not really an option.

Thanks

Will

-Original Message-
From: Gaulin, Mark [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 13:27
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Is there a delimited in the list of names (work_string), something that you
can include in your reg ex to anchor it to an entire entry? 
Mark

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 5:27 AM
To: CF-Talk
Subject: Regex help looking for a name in a string.

Ok, no doubt this is an easy RegEx question, but not for me.
 
I have two queries. One returns a set of names, the other a string which may
or may not contain one or more of the names.
 
I want to check for the existence of a name in the string, and if I find it,
make it a hyperlink.
 
So far I have this:
 
cfset works_string = qry_getEvent.works
 
cfloop query=qry_getProfiles
 cfset works_string = REReplaceNoCase(#works_string#, #artist#, a
href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a, ALL)
/cfloop
 
Which works in a limited sense but stumbles where names are similar or
contain the same words - for example
 
John Smith
John Smith  Sons
 
If the string contained John Smith  Sons, the code would highlight the John
Smith part but not the rest.
 
Any suggestions?
 
Thanks
 
will
 






~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: Regex help looking for a name in a string.

2007-04-27 Thread James Holmes
Are the names delimited by something (like commas) or just strung together?

On 4/27/07, Will Swain  wrote:
 Ok, no doubt this is an easy RegEx question, but not for me.

 I have two queries. One returns a set of names, the other a string which may
 or may not contain one or more of the names.

 I want to check for the existence of a name in the string, and if I find it,
 make it a hyperlink.

 So far I have this:

 cfset works_string = qry_getEvent.works

 cfloop query=qry_getProfiles
  cfset works_string = REReplaceNoCase(#works_string#, #artist#, a
 href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a, ALL)
 /cfloop

 Which works in a limited sense but stumbles where names are similar or
 contain the same words - for example

 John Smith
 John Smith  Sons

 If the string contained John Smith  Sons, the code would highlight the John
 Smith part but not the rest.

 Any suggestions?

 Thanks

 will



 

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Will Swain
Hi James,

See my previous reply. They aren't delimited by anything in particular.

Thanks.

will

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 14:27
To: CF-Talk
Subject: Re: Regex help looking for a name in a string.

Are the names delimited by something (like commas) or just strung together?

On 4/27/07, Will Swain  wrote:
 Ok, no doubt this is an easy RegEx question, but not for me.

 I have two queries. One returns a set of names, the other a string 
 which may or may not contain one or more of the names.

 I want to check for the existence of a name in the string, and if I 
 find it, make it a hyperlink.

 So far I have this:

 cfset works_string = qry_getEvent.works

 cfloop query=qry_getProfiles
  cfset works_string = REReplaceNoCase(#works_string#, #artist#, a 
 href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a, 
 ALL) /cfloop

 Which works in a limited sense but stumbles where names are similar or 
 contain the same words - for example

 John Smith
 John Smith  Sons

 If the string contained John Smith  Sons, the code would highlight 
 the John Smith part but not the rest.

 Any suggestions?

 Thanks

 will



 



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Will Swain
Sure. But it still wouldn't work. :)

-Original Message-
From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 13:56
To: CF-Talk
Subject: Re: Regex help looking for a name in a string.

It does really look like your using Regex's.  Since you're looking for strings 
essentially, can't you just use ReplaceNoCase?

On 4/27/07, Will Swain [EMAIL PROTECTED] wrote:
 Ok, no doubt this is an easy RegEx question, but not for me.

 I have two queries. One returns a set of names, the other a string 
 which may or may not contain one or more of the names.

 I want to check for the existence of a name in the string, and if I 
 find it, make it a hyperlink.

 So far I have this:

 cfset works_string = qry_getEvent.works

 cfloop query=qry_getProfiles
  cfset works_string = REReplaceNoCase(#works_string#, #artist#, a 
 href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a, 
 ALL) /cfloop

 Which works in a limited sense but stumbles where names are similar or 
 contain the same words - for example

 John Smith
 John Smith  Sons

 If the string contained John Smith  Sons, the code would highlight 
 the John Smith part but not the rest.

 Any suggestions?

 Thanks

 will



 



~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


scheduled jobs run twice

2007-04-27 Thread Chris Norloff
Has anybody seen scheduled jobs run twice? (CFMX 7.0.2 on Solaris 9)Here's the 
scheduler.log entry showing the job running then rescheduling for the current 
time instead of the next time. This has happened on several jobs, but not on 
all jobs.

I found a reference to not starting jobs at regular times (like the top of the 
hour) to not interfere with other jobs. I thought I had it fixed by starting 
jobs at a minute-past a regular time, but it's happening again now.

I've also wondered if the scheduled job runs so fast that the rescheduler 
doesn't realize it's the *next* time now.

thanks,
Chris

Information,scheduler-1,04/25/07,22:01:00,,[oie_email_feedback] 
Executing at Wed Apr 25 22:01:00 EDT 2007

Information,scheduler-1,04/25/07,22:01:00,,[oie_email_feedback] 
Rescheduling for :Wed Apr 25 22:01:00 EDT 2007 Now: Wed Apr 25 22:01:00 EDT 
2007

Information,scheduler-1,04/25/07,22:01:00,,[oie_email_feedback] 
Executing at Wed Apr 25 22:01:00 EDT 2007

Information,scheduler-1,04/25/07,22:01:00,,[oie_email_feedback] 
Rescheduling for :Wed May 02 22:01:00 EDT 2007 Now: Wed Apr 25 22:01:00 EDT 
2007

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


Re: How do you guys save progressing projects?

2007-04-27 Thread Cutter (CFRelated)
Will,

Aaron West has an excellent series on configuring your environment for 
Subversion posted on his blog (trajiklyhip.com)

http://www.trajiklyhip.com/blog/index.cfm/2007/3/12/Configuring-a-Development-Environment-with-Apache-Subversion-TortoiseSVN-and-Subclipse

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

Will Tomlinson wrote:
Yes, that's SVN. You can use GUI clients to manage it like TortoiseSVN
(assuming you are on Windows).
 
 
 Ahh yeah! I was trying to figure it out and I'm one of those folks without my 
 GUI's.  :)
 
 preesh james,
 Will
 
 

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Gaulin, Mark
I think this is a good approach too, but it will get complicated because
you have to avoid matching text inside an existing already-hyperlinked
bit of text.  I suspect that this is less of a regex problem and the
solution will require searching for strings manually, but at least the
solution can be described and wil work, so that's something.

Mark

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 8:47 AM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a, all)

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 5:27 AM
To: CF-Talk
Subject: Regex help looking for a name in a string.

Ok, no doubt this is an easy RegEx question, but not for me.
 
I have two queries. One returns a set of names, the other a string which
may or may not contain one or more of the names.
 
I want to check for the existence of a name in the string, and if I find
it, make it a hyperlink.
 
So far I have this:
 
cfset works_string = qry_getEvent.works
 
cfloop query=qry_getProfiles
 cfset works_string = REReplaceNoCase(#works_string#, #artist#, a
href='profiles.cfm?e=#profileID#' target='artistWin'#artist#/a,
ALL) /cfloop
 
Which works in a limited sense but stumbles where names are similar or
contain the same words - for example
 
John Smith
John Smith  Sons
 
If the string contained John Smith  Sons, the code would highlight the
John Smith part but not the rest.
 
Any suggestions?
 
Thanks
 
will
 






~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: Getting schedule info on CFMX

2007-04-27 Thread Eric P
On 4/26/07, Dave Watts [EMAIL PROTECTED] wrote:
  We're moving to CFMX and I'm working on a way to get info
  about scheduled jobs via CFML (or any other method).  We
  currently have a script on CF 5 that polls each of our CF
  machines for their schedule job info, then we take that info
  and display it on one page (instead of logging into the admin
  on each machine whenever we're curious about when/where a
  scheduled job is running).
 
  But that's no longer possible in CFMX.  I've been searching
  around the net but I'm not finding a way to do this in CFMX.

 You could parse the neo-cron.xml file in the \lib directory on each machine.


Excellent.  That'll work just fine.

Thanks!
Eric P.

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Leitch, Oblio
Well, I've got a couple of comments, for what they're worth.  First,
you're not using RegEx.  Next, it appears that what you're doing here:

cfset works_string = qry_getEvent.works
 
cfloop query=qry_getProfiles
 cfset works_string = REReplaceNoCase(#works_string#, #artist#,
a
href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a,   ALL)
/cfloop

is you have two queries, one of the event(s), one grabbing a list of
artists.  Are you sorting the artists?  It looks to me like when you
loop over the artists, you're simply getting John Smith first.  So,
you have a statement like change all occurrences of 'John Smith',
which it does.  On the next pass, your statement reads change all
occurrences of 'John Smith  Sons', but it doesn't find any.

Now, using this method, you could easily run into other problems.  Say
you sort the artists query to avoid the above.  What happens when
(reverse alphabetically) you've just replaced some string Smith?
Then, when it gets to J, it will fail both John Smith and John
Smith  Sons.

Trying to do this programmatically will be very challenging and you
might not like the result.

This email message may contain privileged and/or confidential information. If 
you are not the intended recipient(s), you are hereby notified that any 
dissemination, distribution, or copying of this email message is strictly 
prohibited. If you have received this message in error, please immediately 
notify the sender and delete this email message from your computer.

CAUTION: The Agency of Human Services cannot ensure the confidentiality or 
security of email transmissions.

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: Flex = Open Source

2007-04-27 Thread Dwayne Cole
FDS?


-- Original Message --
From: Rick Root [EMAIL PROTECTED]
Reply-To: cf-talk@houseoffusion.com
Date:  Thu, 26 Apr 2007 22:27:03 -0400


On 4/26/07, Mark A Kruger [EMAIL PROTECTED] wrote:
 I take it FDS is still an arm and a leg though - right?

Yup, no plans to open source FDS or Flex Builder, according to Adobe.

They won't even give academics a freaking discount on FDS.

Rick



~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Will Swain
Hi Bobby,

Out of interest, how would I reorder by length? In the query? MySQL 4.1.7

Thanks

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 13:47
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a, all)



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: How do you guys save progressing projects?

2007-04-27 Thread Will Tomlinson
 Will,
 
 Aaron West has an excellent series on configuring your environment for 
 
 Subversion posted on his blog (trajiklyhip.com)

Thanks! I'll have a look...

Will

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Will Swain
Yes, I'm in agreement. I wondered if a regex was the answer here, but I have
no idea.

Interestingly, if I reverse the order of the query I still get the same
result, which is odd and not what I'd expect. I did a cfdump of the query to
check it is ordered correctly.

I'm beginning to think an alternative approach might be in order here...

-Original Message-
From: Leitch, Oblio [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 14:48
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Well, I've got a couple of comments, for what they're worth.  First, you're
not using RegEx.  Next, it appears that what you're doing here:

cfset works_string = qry_getEvent.works
 
cfloop query=qry_getProfiles
 cfset works_string = REReplaceNoCase(#works_string#, #artist#, a
href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a,   ALL)
/cfloop

is you have two queries, one of the event(s), one grabbing a list of
artists.  Are you sorting the artists?  It looks to me like when you loop
over the artists, you're simply getting John Smith first.  So, you have a
statement like change all occurrences of 'John Smith', which it does.  On
the next pass, your statement reads change all occurrences of 'John Smith 
Sons', but it doesn't find any.

Now, using this method, you could easily run into other problems.  Say you
sort the artists query to avoid the above.  What happens when (reverse
alphabetically) you've just replaced some string Smith?
Then, when it gets to J, it will fail both John Smith and John Smith 
Sons.

Trying to do this programmatically will be very challenging and you might
not like the result.

This email message may contain privileged and/or confidential information.
If you are not the intended recipient(s), you are hereby notified that any
dissemination, distribution, or copying of this email message is strictly
prohibited. If you have received this message in error, please immediately
notify the sender and delete this email message from your computer.

CAUTION: The Agency of Human Services cannot ensure the confidentiality or
security of email transmissions.



~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: Anyone using coral Coral Web Builder

2007-04-27 Thread stylo stylo
does it have to be Coral? Or could you live with Railo too? You can use 
it for free in it's community version...

Gert, I sent an email to you guys yesterday asking if Railo can be packaged up 
like Coral. Can it? (Not on CD, but installed/setup locally as an app in an 
easy manner like Coral says it can, not resource heavy either.)

I will be looking to build a browser based solution using some AJAX, CFC's 
and a DB, those are the key factors for me.

Exact same for me. A local app using a browser. 

Possible Gert? If just another cf server, then the customer would need a 
webserver and such as well, no?

Is there anyone who has ever used Coral? Does it not support cfcs?

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


cms

2007-04-27 Thread Will Swain
 
I've been asked to evaluate off the shelf CMS packages for a client. So far,
I'm looking at Hot Banana and FarCry. Anyone have any experience with these?
Or any other suggestions for products to consider. Main requirements are
flexibility, ease of use and ideally some multi-lingual abilities. 
 
Thanks

Will


~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


RE: cms

2007-04-27 Thread Leitch, Oblio
I've worked with FarCry.  I wouldn't recommend it to anyone with less
than an army of developers, and not for production, yet.  (I'm not
saying it's bad, just not out-of-the-box enough.)

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 11:41 AM
To: CF-Talk
Subject: cms

 
I've been asked to evaluate off the shelf CMS packages for a client. So
far,
I'm looking at Hot Banana and FarCry. Anyone have any experience with
these?
Or any other suggestions for products to consider. Main requirements are
flexibility, ease of use and ideally some multi-lingual abilities. 
 
Thanks

Will




~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: cms

2007-04-27 Thread Robertson-Ravo, Neil (RX)
Hot Banana is superb +1.

We would have no doubt chosen it if we hadn't settled on a publishing model.






This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Nick Gleason
To: CF-Talk
Sent: Fri Apr 27 17:30:54 2007
Subject: RE: cms

Hi Will.  You may want to take a look at our CMS / CRM system - Community
Enterprise.  It's comparable to the ones that you mentioned and does have
some multi-lingual capabilities.  You can see more information here:
http://www.citysoft.com/ce
http://www.citysoft.com/demos 

Best,

Nick

.
..
...
 
Nick Gleason | CitySoft, Inc. | http://www.citysoft.com
 
Direct: (617) 899-5395 | Fax: (617) 507-0444

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

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 11:41 AM
To: CF-Talk
Subject: cms

 
I've been asked to evaluate off the shelf CMS packages for a client. So far,
I'm looking at Hot Banana and FarCry. Anyone have any experience with these?
Or any other suggestions for products to consider. Main requirements are
flexibility, ease of use and ideally some multi-lingual abilities. 
 
Thanks

Will






~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: cms

2007-04-27 Thread Robertson-Ravo, Neil (RX)
Also, what is your budget bearing in mind that of the two you mention one is
free, the other is not.


This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Swain
To: CF-Talk
Sent: Fri Apr 27 16:41:21 2007
Subject: cms

 
I've been asked to evaluate off the shelf CMS packages for a client. So far,
I'm looking at Hot Banana and FarCry. Anyone have any experience with these?
Or any other suggestions for products to consider. Main requirements are
flexibility, ease of use and ideally some multi-lingual abilities. 
 
Thanks

Will




~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: License Exception for JSP Pages - how to disallow

2007-04-27 Thread T Lux
To followup in hopes it may help someone else. We are running CF 7.0.2 Standard.

Before, when someone hit a JSP page, they saw this error:

500 A License Exception has been thrown
A License Exception has been thrown 

After following the docs at 
http://livedocs.adobe.com/coldfusion/7/htmldocs/0054.htm
and especially the comments (since the docs were not complete and relevant to 
CF 7), users hitting a JSP page saw this error:

404 /index2.jsp
/index2.jsp 

The TITLE of the page is still JRun Servlet Error.

So which it no longer throws a License Exception error in coldfusion-err.log, 
it now records the following:

04/27 11:56:48 error Requested resource '/index2.jsp' (%2findex2.jsp) not found

I still cant get my custom IIS 404 error handling to catch it. Has anyone else 
had any luck?

Tim


~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


Re: License Exception for JSP Pages - how to disallow

2007-04-27 Thread Robertson-Ravo, Neil (RX)
I gather this I a licensed copy? As in not a dev server copy which has timed
out?  


This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: T Lux
To: CF-Talk
Sent: Fri Apr 27 18:09:22 2007
Subject: Re: License Exception for JSP Pages - how to disallow

To followup in hopes it may help someone else. We are running CF 7.0.2
Standard.

Before, when someone hit a JSP page, they saw this error:

500 A License Exception has been thrown
A License Exception has been thrown 

After following the docs at
http://livedocs.adobe.com/coldfusion/7/htmldocs/0054.htm
and especially the comments (since the docs were not complete and relevant
to CF 7), users hitting a JSP page saw this error:

404 /index2.jsp
/index2.jsp 

The TITLE of the page is still JRun Servlet Error.

So which it no longer throws a License Exception error in
coldfusion-err.log, it now records the following:

04/27 11:56:48 error Requested resource '/index2.jsp' (%2findex2.jsp) not
found

I still cant get my custom IIS 404 error handling to catch it. Has anyone
else had any luck?

Tim




~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: License Exception for JSP Pages - how to disallow

2007-04-27 Thread T Lux
Yes, this is a licensed copy.

I gather this I a licensed copy? As in not a dev server copy which has timed
out?  


~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


RE: encrypt/decrypt bug

2007-04-27 Thread Rob O'Brien
Could you post the entire encrypt/decrypt code snip?

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 11:45 AM
To: CF-Talk
Subject: encrypt/decrypt bug

This is driving me crazy!!

For this code:

cfif IsDefined(form.myVAR) AND #form.myVAR# NEQ 
   cfset encrpt_myVAR=encrypt(#trim(FORM.myVAR)#,#encCODE#)
/cfif

Figure this out. Here's a few test:
---
Form Entry: Decrypted output: 
Form Entry: 2   Decrypted output: =
form Entry: 22  Decrypted output: 22
form entry: 3332Decrypted output: 333=
form entry: abcdef2 Decrypted output: abcdef2
form entry: abcdef32Decrypted output abcdef3=
form entry: abcdef33Decrypted output abcdef33


I can pretty much put anything I want into the form field and it 
encrypts correctly - UNLESS it ends in a 2. Then it's screwed - 
sometimes. I can't tell if the problem is on the encrypt or decrypt side 
either.

During these test, the var encCODE was kept constant. I haven't tried 
yet, but wonder if changing it would make a difference. Will try that next.

Something I'll get a  some instead of the equal sign. It's ONLY a 2 
that does this. WTF?

Any ideas at all? Is there a patch from the version below to fix this? 
It's driving myself and a client insane right now!!!


Level: Enterprise
Name: ColdFusion Server
Version 7,0,2,142559



~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: Spry Eclipse Plugin?

2007-04-27 Thread Adrian Moreno
JSEclipse
http://labs.adobe.com/technologies/jseclipse/

* Contextual code completion  shortcuts.
* Project outline and quick navigation through function declarations.
* Syntax highlighting.
* Error reporting.
* Customizable code templates to get you started.
* Support for popular JavaScript libraries (Dojo, Prototype, Spry, YUI, 
Qooxdoo).
* Support for JavaDoc documentation and multi-line comments.
* Adobe Flex Builder 2 compatibility.

HTH, 

Adrian

Has anyone heard of any developments on an Eclipse Plugin for
supporting Spry? I just got Web Standard CS3 (free upgrade with my old
DevNet subscription) and I think I might give Spry a try since it is
so well supported in DW and I may even consider going back to using DW
instead of Eclipse... who knows?

-Aaron

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


Re: Spry Eclipse Plugin?

2007-04-27 Thread Robertson-Ravo, Neil (RX)
Is this one still free? This is part of the old Interakt suite pre-Adobe..




This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Adrian Moreno
To: CF-Talk
Sent: Fri Apr 27 18:40:36 2007
Subject: Re: Spry Eclipse Plugin?

JSEclipse
http://labs.adobe.com/technologies/jseclipse/

* Contextual code completion  shortcuts.
* Project outline and quick navigation through function declarations.
* Syntax highlighting.
* Error reporting.
* Customizable code templates to get you started.
* Support for popular JavaScript libraries (Dojo, Prototype, Spry, YUI,
Qooxdoo).
* Support for JavaDoc documentation and multi-line comments.
* Adobe Flex Builder 2 compatibility.

HTH, 

Adrian

Has anyone heard of any developments on an Eclipse Plugin for
supporting Spry? I just got Web Standard CS3 (free upgrade with my old
DevNet subscription) and I think I might give Spry a try since it is
so well supported in DW and I may even consider going back to using DW
instead of Eclipse... who knows?

-Aaron



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


RE: Flex = Open Source

2007-04-27 Thread Brad Wood
Flex Data Services.   It lets you align planets and stuff.
Pretty pricy though.

http://www.adobe.com/products/flex/dataservices/


~Brad

-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 8:56 AM
To: CF-Talk
Subject: Re: Flex = Open Source

FDS?

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


CF 7.02 - Archiving Logs in TS Admin

2007-04-27 Thread T Lux
Ive seen this happen every now and then... and it is one of those now times 
at the moment. In TS Admin, I see that the mailsent.log (for example) is large. 
It is stored on our server at CFusionMX7\logs with all the other CF logs. In TS 
Admin, I click the archive button next to mailsent.log, and it gets reset to an 
empty file. I look in the directory, and the archive of the log is nowhere to 
be found... it wasnt copied into another file like I thought it would be. I 
tried it for all the other logs, too, and the same thing happened.

So what is the purpose of the archive button?

Tim

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: encrypt/decrypt bug

2007-04-27 Thread Kris Jones
Hi Les,

I've seen similar behavior most typically when I'm also urlencoding
the the encrypted value. What I figured out was happening is that if
the encrypted value contained a space, when urlencodedformat() was run
on it, the space would get converted to %20 as expected. However,
when it was decoded, the spaces were converted to + instead of a
space, then the decrypt would  not function properly. In my situation
that either resulted in strange characters being added or usually
resulting in a null pointer reference error. Also, this was under
CFMX6.1.

Cheers,
Kris


On 4/27/07, Les Mizzell [EMAIL PROTECTED] wrote:
 This is driving me crazy!!

 For this code:

 cfif IsDefined(form.myVAR) AND #form.myVAR# NEQ 
cfset encrpt_myVAR=encrypt(#trim(FORM.myVAR)#,#encCODE#)
 /cfif

 Figure this out. Here's a few test:
 ---
 Form Entry: Decrypted output: 
 Form Entry: 2   Decrypted output: =
 form Entry: 22  Decrypted output: 22
 form entry: 3332Decrypted output: 333=
 form entry: abcdef2 Decrypted output: abcdef2
 form entry: abcdef32Decrypted output abcdef3=
 form entry: abcdef33Decrypted output abcdef33


 I can pretty much put anything I want into the form field and it
 encrypts correctly - UNLESS it ends in a 2. Then it's screwed -
 sometimes. I can't tell if the problem is on the encrypt or decrypt side
 either.

 During these test, the var encCODE was kept constant. I haven't tried
 yet, but wonder if changing it would make a difference. Will try that next.

 Something I'll get a  some instead of the equal sign. It's ONLY a 2
 that does this. WTF?

 Any ideas at all? Is there a patch from the version below to fix this?
 It's driving myself and a client insane right now!!!


 Level: Enterprise
 Name: ColdFusion Server
 Version 7,0,2,142559

 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


RE: cms

2007-04-27 Thread Billy Cox
I evaluated FarCry some time ago. It seemed pretty arcane as far as getting
started and I didn't find much of a developer community.

In contrast, I have done some recent work with DotNetNuke...(not even being
a .NET developer) and it has been pretty easy to implement. Sometimes being
a Microsoft stooge has benefits.  :)

I currently have a site running CFWebStore (a CMS/Ecommerce package) and
another in development. It has a reasonable level of sophistication and
flexibility while also being open source (but not free). An open source
solution is desirable so that you can more easily fine-tune the application
to meet specific client needs.



-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 10:41 AM
To: CF-Talk
Subject: cms



I've been asked to evaluate off the shelf CMS packages for a client. So far,
I'm looking at Hot Banana and FarCry. Anyone have any experience with these?
Or any other suggestions for products to consider. Main requirements are
flexibility, ease of use and ideally some multi-lingual abilities.

Thanks

Will




~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

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


how to restart a specific CF application (not app server)

2007-04-27 Thread Jay Allen
I've ran into an interesting conundrum with an app. I am currently developing.

I've already deployed application.cfc and other files for the app. to my 
testing server, but now I need to go back and set some additional application 
scope vars inside my onApplicationStart function.

Ofcourse that function only fires at the very first hit for the application 
... so even though I can add the code I need in onApplicationSTart, it won't be 
executed when I hit the pages again.

I know I could restart the ColdFusion service and that would probably do the 
trick.  However I'm anticipating needing to do modify onApplicationStart 
several times during the course of development, and I would prefer to find a 
way to restart just this particular application.

Bear in mind, I am working in a development environment (not production), so 
this doesn't have to be a best practice or anything.

With that in mind, I'd appreciate any suggestions about how to go about 
restarting an individual application.  Is there some way I can explicitly call 
my onApplicationStart function, or some other built-in way to this?

Thanks!

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


RE: NCFUG - Cascading Stylesheets presentation tonight

2007-04-27 Thread Rick Faircloth
Any word on the link to your presentation, Andy?

Rick

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 26, 2007 4:36 PM
To: CF-Talk
Subject: RE: NCFUG - Cascading Stylesheets presentation tonight

Hah...good question. Here's the full breakdown.

DATE: April 26, 2007
TIME: 6:30 PM Presentation
LOCATION: Produce Alliance (One Vantage Way, Suite C-200) 

PRESENTATION:
Andy Matthews (in person) on CSS  CFM together: Alphabet Soup or Best
Friends Forever? 

CSS  CFM together: Alphabet Soup or Best Friends Forever?
Combining the power of Coldfusion with the flexibility and reusability of
Cascading Stylesheets. 

In this presentation, Andy will cover the basics of CSS.
-How to set up an efficient stylesheet and avoid a maze of classes and ids
-Define styles once and allow their values to cascade through child elements
-Using Coldfusion to set values in your stylesheet

SPEAKER BIO:
http://www.commadelimited.com 

ACROBAT CONNECT INFORMATION:
This meeting will be broadcast via Breeze. Please keep in mind that
sometimes there are audio problems when presenting via Breeze. If there are
audio problems during this presentation we will do our best to address them.


http://mmusergroup.adobe.acrobat.com/r78187836/ 


 

-Original Message-
From: Rick Faircloth [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 26, 2007 3:15 PM
To: CF-Talk
Subject: RE: NCFUG - Cascading Stylesheets presentation tonight

What time, Andy?

Rick

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 26, 2007 2:59 PM
To: CF-Talk
Subject: NCFUG - Cascading Stylesheets presentation tonight

The Nashville Coldfusion Usergroup has a presentation this evening by yours
truly.
 
The presentation is mostly on Cascading stylesheets, with a little CF info
thrown in. We'll be recording it via Connect, but if you're interested in
attending the live show, here's the URL:
 
http://mmusergroup.adobe.acrobat.com/r78187836/
 
 
 
Be gentle as I've got a frog voice and I've never done this before.
 

 
Andy Matthews
Senior Coldfusion Developer

Office:  877.707.5467 x747
Direct:  615.627.9747
Fax:  615.467.6249
[EMAIL PROTECTED]
www.dealerskins.com http://www.dealerskins.com/ 
 








~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: how to restart a specific CF application (not app server)

2007-04-27 Thread Casey Dougall
Something like this could work for your needs.

cffunction name=onRequestStart returnType=boolean output=true
cfargument name=thePage type=string required=true
!--- Let's re-initialize the application if somename_refresh is
present in the URL. ---
cfif StructKeyExists(URL,somename_refresh)
cfset OnApplicationStart()
/cfif


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


other charting tools

2007-04-27 Thread Jim Wright
I'm hitting a few roadblocks with cfchart, and wonder what other people 
are using that might be a bit more feature rich.  Specifically, I'm 
looking for more formatting control, such as series value labels that 
may extend past the borders of a bar, specific bar width, and specific 
colors applied to certain series items.  I've been messing around with 
the WebCharts3D style files and the chart design app that comes with CF, 
but I'm still not getting exactly what I need.

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


Re: Spry Eclipse Plugin?

2007-04-27 Thread Massimo Foti
 Has anyone heard of any developments on an Eclipse Plugin for
 supporting Spry? I just got Web Standard CS3 (free upgrade with my old
 DevNet subscription) and I think I might give Spry a try since it is
 so well supported in DW and I may even consider going back to using DW
 instead of Eclipse... who knows?

I would try either JSEclipse (see other post) or Aptana:
http://www.aptana.com/

  
Massimo Foti, web-programmer for hire
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com
  


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: encrypt/decrypt bug

2007-04-27 Thread Mike Chabot
Since you are running CFMX 7, you might give the new encryption
methods a try. If you encode using Hex, you should be able to use the
encrypted string directly in a URL without encoding it.

example:
cfset x = encrypt(var,key,blowfish,hex)

Good luck,
Mike Chabot

On 4/27/07, Kris Jones [EMAIL PROTECTED] wrote:
 Hi Les,

 I've seen similar behavior most typically when I'm also urlencoding
 the the encrypted value. What I figured out was happening is that if
 the encrypted value contained a space, when urlencodedformat() was run
 on it, the space would get converted to %20 as expected. However,
 when it was decoded, the spaces were converted to + instead of a
 space, then the decrypt would  not function properly. In my situation
 that either resulted in strange characters being added or usually
 resulting in a null pointer reference error. Also, this was under
 CFMX6.1.

 Cheers,
 Kris


 On 4/27/07, Les Mizzell [EMAIL PROTECTED] wrote:
  This is driving me crazy!!
 
  For this code:
 
  cfif IsDefined(form.myVAR) AND #form.myVAR# NEQ 
 cfset encrpt_myVAR=encrypt(#trim(FORM.myVAR)#,#encCODE#)
  /cfif
 
  Figure this out. Here's a few test:
  ---
  Form Entry: Decrypted output: 
  Form Entry: 2   Decrypted output: =
  form Entry: 22  Decrypted output: 22
  form entry: 3332Decrypted output: 333=
  form entry: abcdef2 Decrypted output: abcdef2
  form entry: abcdef32Decrypted output abcdef3=
  form entry: abcdef33Decrypted output abcdef33
 
 
  I can pretty much put anything I want into the form field and it
  encrypts correctly - UNLESS it ends in a 2. Then it's screwed -
  sometimes. I can't tell if the problem is on the encrypt or decrypt side
  either.
 
  During these test, the var encCODE was kept constant. I haven't tried
  yet, but wonder if changing it would make a difference. Will try that next.
 
  Something I'll get a  some instead of the equal sign. It's ONLY a 2
  that does this. WTF?
 
  Any ideas at all? Is there a patch from the version below to fix this?
  It's driving myself and a client insane right now!!!
 
 
  Level: Enterprise
  Name: ColdFusion Server
  Version 7,0,2,142559
 
 

 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: other charting tools

2007-04-27 Thread Mike Chabot
http://www.fusioncharts.com/ just released a free version. I like their charts.
The king of charting is Dundas. I also like ChartFX. I am not sure how
well they integrate with CF though. I used these on ASP.NET projects.

Good luck,
Mike Chabot

On 4/27/07, Jim Wright [EMAIL PROTECTED] wrote:
 I'm hitting a few roadblocks with cfchart, and wonder what other people
 are using that might be a bit more feature rich.  Specifically, I'm
 looking for more formatting control, such as series value labels that
 may extend past the borders of a bar, specific bar width, and specific
 colors applied to certain series items.  I've been messing around with
 the WebCharts3D style files and the chart design app that comes with CF,
 but I'm still not getting exactly what I need.

 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Bobby Hartsfield
Yes, Do it in your query. Try this...

Select artist
From tablename
Order by length(artist)


-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 10:24 AM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Hi Bobby,

Out of interest, how would I reorder by length? In the query? MySQL 4.1.7

Thanks

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 13:47
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a, all)





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


RE: cms

2007-04-27 Thread Dave Watts
 I've been asked to evaluate off the shelf CMS packages for a 
 client. So far, I'm looking at Hot Banana and FarCry. Anyone 
 have any experience with these?
 Or any other suggestions for products to consider. Main 
 requirements are flexibility, ease of use and ideally some 
 multi-lingual abilities. 

You might want to check out CommonSpot, which is not free, but meets your
requirements in spades. For example, Voice of America uses CommonSpot for
their news site, which provides content in more than 40 languages:

http://www.figleaf.com/Showcase/CaseStudies/voa.cfm

We do a lot of CommonSpot implementations, so feel free to contact me
offline with questions. 

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: cms

2007-04-27 Thread Tom McNeer
I'd suggest a look at AssetNow http://www.assetnow.com/. Fully CSS-based,
extremely flexible, definitely built with both multi-language support and
full accessibility. And a very helpful, talented developer,

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: other charting tools

2007-04-27 Thread Bruce Sorge
When I worked at Baylor in Dallas, we used PopCharts. http://www.corda.com.
Very cool app and not too hard to use.

Bruce

On 4/27/07, Jim Wright [EMAIL PROTECTED] wrote:

 I'm hitting a few roadblocks with cfchart, and wonder what other people
 are using that might be a bit more feature rich.  Specifically, I'm
 looking for more formatting control, such as series value labels that
 may extend past the borders of a bar, specific bar width, and specific
 colors applied to certain series items.  I've been messing around with
 the WebCharts3D style files and the chart design app that comes with CF,
 but I'm still not getting exactly what I need.



~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: how to restart a specific CF application (not app server)

2007-04-27 Thread Jay Allen
Something like this could work for your needs.

cffunction name=onRequestStart returnType=boolean output=true
cfargument name=thePage type=string required=true
!--- Let's re-initialize the application if somename_refresh is
present in the URL. ---
cfif StructKeyExists(URL,somename_refresh)
cfset OnApplicationStart()
/cfif

Cool this did the trick.  Thank you!

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


Re: encrypt/decrypt bug

2007-04-27 Thread Les Mizzell
Interesting - changing the value of #encCODE# to a longer string seems 
to have fixed the problem.

Haven't tested with every possible combination of letters/numbers on the 
input yet, so ya never know - but it seems to like 2s now. Very odd...


 For this code:
 
 cfif IsDefined(form.myVAR) AND #form.myVAR# NEQ 
cfset encrpt_myVAR=encrypt(#trim(FORM.myVAR)#,#encCODE#)
 /cfif
 
 Figure this out. Here's a few test:
 ---
 Form Entry:   Decrypted output: 
 Form Entry: 2 Decrypted output: =
 form Entry: 22Decrypted output: 22
 form entry: 3332  Decrypted output: 333=
 form entry: abcdef2   Decrypted output: abcdef2
 form entry: abcdef32  Decrypted output abcdef3=
 form entry: abcdef33  Decrypted output abcdef33
 
 
 I can pretty much put anything I want into the form field and it 
 encrypts correctly - UNLESS it ends in a 2. Then it's screwed - 
 sometimes. I can't tell if the problem is on the encrypt or decrypt side 
 either.
 
 During these test, the var encCODE was kept constant. I haven't tried 
 yet, but wonder if changing it would make a difference. Will try that next.
 
 Something I'll get a  some instead of the equal sign. It's ONLY a 2 
 that does this. WTF?
 
 Any ideas at all? Is there a patch from the version below to fix this? 
 It's driving myself and a client insane right now!!!
 
 
 Level: Enterprise
 Name: ColdFusion Server
 Version 7,0,2,142559
 
 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


CFHTTP Connection Failure

2007-04-27 Thread Matthew Irwin
I am tring to connect ot a vendor that had their I.P. changed. I was connecting 
allright yesterday but today I cnnot. I use cffhtp and transfer a url. When I 
paste the url in the browser I get a connection. Any ideas.
Thanks

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: CFHTTP Connection Failure

2007-04-27 Thread Robertson-Ravo, Neil (RX)
Interesting. Are you using a proxy to go to the internet? 




This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Matthew Irwin
To: CF-Talk
Sent: Fri Apr 27 20:21:17 2007
Subject: CFHTTP Connection Failure

I am tring to connect ot a vendor that had their I.P. changed. I was
connecting allright yesterday but today I cnnot. I use cffhtp and transfer a
url. When I paste the url in the browser I get a connection. Any ideas.
Thanks



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Bobby Hartsfield
I don’t know what I was thinking but that wont work either. Say you had
Bobby and Bobby Hartsfield

If you replaced Bobby Hartsfield with a link then Bobby... the code would
replace the Bobby within Bobby Hartsfield

You will need to order the names by length descending to make sure the
longer names are taken care of first but you will also need to use a regular
expression to replace the strings only if they are NOT within
a.*?(#artist#)/a already


-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 3:15 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Yes, Do it in your query. Try this...

Select artist
From tablename
Order by length(artist)


-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 10:24 AM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Hi Bobby,

Out of interest, how would I reorder by length? In the query? MySQL 4.1.7

Thanks

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 13:47
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a, all)







~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: CFHTTP Connection Failure

2007-04-27 Thread Matthew Irwin
No

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


RE: cms

2007-04-27 Thread Will Swain
Thanks Nick, I'll take a look. 
Will

-Original Message-
From: Nick Gleason [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 17:31
To: CF-Talk
Subject: RE: cms

Hi Will.  You may want to take a look at our CMS / CRM system - Community
Enterprise.  It's comparable to the ones that you mentioned and does have
some multi-lingual capabilities.  You can see more information here:
http://www.citysoft.com/ce
http://www.citysoft.com/demos 

Best,

Nick

.
..
...
 
Nick Gleason | CitySoft, Inc. | http://www.citysoft.com
 
Direct: (617) 899-5395 | Fax: (617) 507-0444

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

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 11:41 AM
To: CF-Talk
Subject: cms

 
I've been asked to evaluate off the shelf CMS packages for a client. So far,
I'm looking at Hot Banana and FarCry. Anyone have any experience with these?
Or any other suggestions for products to consider. Main requirements are
flexibility, ease of use and ideally some multi-lingual abilities. 
 
Thanks

Will






~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


RE: cms

2007-04-27 Thread Will Swain
 
No budget - typically our client is keeping it close to their chest - they
have a major redev we are bidding for, and I know one of the competitors has
suggested Ektron, with licenses starting at circa $10k, so we are taking
that as a guideline. Having said that, free is good if it meets the
requirements. Historically, we have always rolled our own CMS systems, but
this client is keen on an OTS package, hence the questions.

Hot Banana does look pretty slick.

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 18:05
To: CF-Talk
Subject: Re: cms

Also, what is your budget bearing in mind that of the two you mention one is
free, the other is not.


This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Swain
To: CF-Talk
Sent: Fri Apr 27 16:41:21 2007
Subject: cms

 
I've been asked to evaluate off the shelf CMS packages for a client. So far,
I'm looking at Hot Banana and FarCry. Anyone have any experience with these?
Or any other suggestions for products to consider. Main requirements are
flexibility, ease of use and ideally some multi-lingual abilities. 
 
Thanks

Will






~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Bobby Hartsfield
Or a couple loops

!--- loop the query and replace the names with markers ---
cfloop query=artists
cfset thetext = replacenocase(thetext, artist, **#currentrow#**,
all) /
/cfloop

!--- now loop again and replace the placeholders with their links ---
cfloop query=artists
cfset thetext = replace(thetext, **#currentrow#**, a
href='mypage.cfm?var=#artist#'#artist#/a, all) /
/cfloop

That did the trick for me.

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 3:34 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

I don’t know what I was thinking but that wont work either. Say you had
Bobby and Bobby Hartsfield

If you replaced Bobby Hartsfield with a link then Bobby... the code would
replace the Bobby within Bobby Hartsfield

You will need to order the names by length descending to make sure the
longer names are taken care of first but you will also need to use a regular
expression to replace the strings only if they are NOT within
a.*?(#artist#)/a already


-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 3:15 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Yes, Do it in your query. Try this...

Select artist
From tablename
Order by length(artist)


-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 10:24 AM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Hi Bobby,

Out of interest, how would I reorder by length? In the query? MySQL 4.1.7

Thanks

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 13:47
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a, all)









~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


RE: cms

2007-04-27 Thread Will Swain
Thanks Tom and Dave - I'll certainly look at both of these suggestions.

Dave, I may have some questions so if so I'll drop you a line. Thanks.

-Original Message-
From: Tom McNeer [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 20:22
To: CF-Talk
Subject: Re: cms

I'd suggest a look at AssetNow http://www.assetnow.com/. Fully CSS-based,
extremely flexible, definitely built with both multi-language support and
full accessibility. And a very helpful, talented developer,

--
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560




~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Will Swain
Good plan. I reckon that will work. Now to play with the regex...

Cheers

w

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 20:34
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

I don't know what I was thinking but that wont work either. Say you had
Bobby and Bobby Hartsfield

If you replaced Bobby Hartsfield with a link then Bobby... the code would
replace the Bobby within Bobby Hartsfield

You will need to order the names by length descending to make sure the
longer names are taken care of first but you will also need to use a regular
expression to replace the strings only if they are NOT within
a.*?(#artist#)/a already


-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 3:15 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Yes, Do it in your query. Try this...

Select artist
From tablename
Order by length(artist)


-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 10:24 AM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Hi Bobby,

Out of interest, how would I reorder by length? In the query? MySQL 4.1.7

Thanks

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: 27 April 2007 13:47
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a, all)









~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: CFHTTP Connection Failure

2007-04-27 Thread Robertson-Ravo, Neil (RX)
Flush the DNS on the ColdFusion server.  


This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Matthew Irwin
To: CF-Talk
Sent: Fri Apr 27 20:27:13 2007
Subject: Re: CFHTTP Connection Failure

No



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: cms

2007-04-27 Thread Robertson-Ravo, Neil (RX)
CommonSpot will be way out of your league money wise.  We evaluated it but
it didn't make the grade for us.



This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Swain
To: CF-Talk
Sent: Fri Apr 27 20:46:18 2007
Subject: RE: cms

Thanks Tom and Dave - I'll certainly look at both of these suggestions.

Dave, I may have some questions so if so I'll drop you a line. Thanks.

-Original Message-
From: Tom McNeer [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 20:22
To: CF-Talk
Subject: Re: cms

I'd suggest a look at AssetNow http://www.assetnow.com/. Fully CSS-based,
extremely flexible, definitely built with both multi-language support and
full accessibility. And a very helpful, talented developer,

--
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560






~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


get Range Between 2 IP addresses

2007-04-27 Thread Elena Aminova
What is the correct way to write the following?
I need to redirect a user based on his/her IP address range if the 
CGI.REMOTE_ADDR falls between 2 IP address ranges or if using a netmask. 

CFIF (#Left(CGI.REMOTE_ADDR, 13)# between ('172.29.278.33' and 
'172.29.278.62'))

cflocation url=. etc

Can I use the between function like above?
Please advise

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: CFHTTP Connection Failure

2007-04-27 Thread Matthew Irwin
We have restarted the CF Server Is there something else that I need to do? They 
have also informed me that they are doing a redirect. This all happend last 
night.

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: CFHTTP Connection Failure

2007-04-27 Thread Robertson-Ravo, Neil (RX)
Well, from the ColdFusion server you will have to flush the DNS. It may not
be the case but it could be I suppose.


This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Matthew Irwin
To: CF-Talk
Sent: Fri Apr 27 20:43:50 2007
Subject: Re: CFHTTP Connection Failure

We have restarted the CF Server Is there something else that I need to do?
They have also informed me that they are doing a redirect. This all happend
last night.



~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


RE: get Range Between 2 IP addresses

2007-04-27 Thread Brad Wood
If you are only concerned with the last octet, you could treat the IP as
a period delimited list like so:

cfif listgetat(CGI.REMOTE_ADDR,4) gt 33 and listgetat(CGI.REMOTE_ADDR,4)
lt 62

Not sure exactly you are going for though.

~Brad

-Original Message-
From: Elena Aminova [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 2:42 PM
To: CF-Talk
Subject: get Range Between 2 IP addresses

What is the correct way to write the following?
I need to redirect a user based on his/her IP address range if the
CGI.REMOTE_ADDR falls between 2 IP address ranges or if using a netmask.


CFIF (#Left(CGI.REMOTE_ADDR, 13)# between ('172.29.278.33' and
'172.29.278.62'))

cflocation url=. etc

Can I use the between function like above?
Please advise

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: get Range Between 2 IP addresses

2007-04-27 Thread Charlie Griefer
i don't believe that'll work as intended.

you can always use listLast() using the period as a delimiter to get
those last octals and -then- use the BETWEEN operator.

also, you could convert the addresses to their integer counterparts.
i believe the formula is:

(first octet * 16777216) + (second octet * 65536) + (third octet *
256) + (fourth octet)

and use the BETWEEN operator on ther resulting integers.

On 4/27/07, Elena Aminova [EMAIL PROTECTED] wrote:
 What is the correct way to write the following?
 I need to redirect a user based on his/her IP address range if the 
 CGI.REMOTE_ADDR falls between 2 IP address ranges or if using a netmask.

 CFIF (#Left(CGI.REMOTE_ADDR, 13)# between ('172.29.278.33' and 
 '172.29.278.62'))

 cflocation url=. etc

 Can I use the between function like above?
 Please advise

 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


RE: CFHTTP Connection Failure

2007-04-27 Thread Peterson, Chris
I bet you a buck it is because they enabled compression on their server.
Add these insidde your cfhttp tag:

cfhttpparam type=Header name=Accept-Encoding value=deflate;q=0
cfhttpparam type=Header name=TE value=deflate;q=0

Chris

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


RE: get Range Between 2 IP addresses

2007-04-27 Thread Bobby Hartsfield
cfif listlast(cgi.remoate_addr, '.') GTE 33 and listlast(cgi.remoate_addr,
'.') LTE 62


-Original Message-
From: Elena Aminova [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 3:42 PM
To: CF-Talk
Subject: get Range Between 2 IP addresses

What is the correct way to write the following?
I need to redirect a user based on his/her IP address range if the
CGI.REMOTE_ADDR falls between 2 IP address ranges or if using a netmask. 

CFIF (#Left(CGI.REMOTE_ADDR, 13)# between ('172.29.278.33' and
'172.29.278.62'))

cflocation url=. etc

Can I use the between function like above?
Please advise



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


RE: cms

2007-04-27 Thread Will Swain
Hi Billy,

Yes, so far I can echo your sentiments about Farcry, which is a shame.
However, I shall persevere with my evaluation anyway. I'm happier with an
open source CF based system if possible, because we will need to do some
tweaking no doubt, or possibly add in our own components. The client has a
requirement for a Flash media player and library, with dynamic content
delivered according to user level, which I am imagining having to build
myself - Flex sounds ideal for this.

Cheers

will

-Original Message-
From: Billy Cox [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 19:31
To: CF-Talk
Subject: RE: cms

I evaluated FarCry some time ago. It seemed pretty arcane as far as getting
started and I didn't find much of a developer community.

In contrast, I have done some recent work with DotNetNuke...(not even being
a .NET developer) and it has been pretty easy to implement. Sometimes being
a Microsoft stooge has benefits.  :)

I currently have a site running CFWebStore (a CMS/Ecommerce package) and
another in development. It has a reasonable level of sophistication and
flexibility while also being open source (but not free). An open source
solution is desirable so that you can more easily fine-tune the application
to meet specific client needs.



-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 10:41 AM
To: CF-Talk
Subject: cms



I've been asked to evaluate off the shelf CMS packages for a client. So far,
I'm looking at Hot Banana and FarCry. Anyone have any experience with these?
Or any other suggestions for products to consider. Main requirements are
flexibility, ease of use and ideally some multi-lingual abilities.

Thanks

Will






~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


RE: cms

2007-04-27 Thread Will Swain
 
Just looking at their site now - it certainly appears more expensive than
Ektron - circa $20k plus. Can you elaborate a little on the reasons why you
didn't like it? Email me offlist if you prefer.

Cheers

w

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 20:46
To: CF-Talk
Subject: Re: cms

CommonSpot will be way out of your league money wise.  We evaluated it but
it didn't make the grade for us.



This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Swain
To: CF-Talk
Sent: Fri Apr 27 20:46:18 2007
Subject: RE: cms

Thanks Tom and Dave - I'll certainly look at both of these suggestions.

Dave, I may have some questions so if so I'll drop you a line. Thanks.

-Original Message-
From: Tom McNeer [mailto:[EMAIL PROTECTED]
Sent: 27 April 2007 20:22
To: CF-Talk
Subject: Re: cms

I'd suggest a look at AssetNow http://www.assetnow.com/. Fully CSS-based,
extremely flexible, definitely built with both multi-language support and
full accessibility. And a very helpful, talented developer,

--
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560








~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


RE: Coldfusion Integration with .net,java

2007-04-27 Thread Josh Adams
You are correct, Andrew:  the .NET editions of BlueDragon allow for
integration with other .NET code and the Java editions of BlueDragon allow
for integration with other Java code.  BlueDragon .NET (there are two
editions, Standard and Enterprise, but the underlying code base is the same)
is implemented as a native extension of the ASP.NET processing pipeline and
as such it truly makes CFML pages deployed on BlueDragon .NET into ASP.NET
pages.  In other words, with BlueDragon .NET, CFML is a ASP.NET development
language.  BlueDragon Server, BlueDragon Server JX, and BlueDragon J2EE are
implemented with Java.  They allow great opportunities for integration with
other Java code.  In those products, as in any Java product, the best we
could do is use Java-to-.NET bridge technology to allow for some small
amount of non-native integration with .NET.  It is not currently our plan to
implement such support, but at such time as our customers and prospects ask
for it, we will certainly implement it.  However, to this point, our
customers and prospects interested in .NET integration have indicated they
prefer the true .NET integration afforded them by BlueDragon .NET.

Josh
[EMAIL PROTECTED]
New Atlanta Communications

-Original Message-
From: Andrew Scott [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 25, 2007 7:59 AM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

What sort of question is that? As I said earlier CF can leverage of .Net and
java libraries.

Currently only BlueDragon supports .Net until CF8 is released and CF8 will
support both out of the box and I will not comment on BueDragon I think it
is one or the other. Someone will correct me if I am wrong there.

And it is upto your needs, what are you looking at developing. CFML is a
scripting language for Web development, .Net and Java are more than that,
and because there is a huge development base there might be an application
like jasper reports or something that you might want to leverage of.

So then you follow the API's of that and then intergaret that into your
application.

I think you need to be more specific on what you want to do, or go away and
develop in another language as your not clear on what CF is.



On 4/25/07, srinivas ganta [EMAIL PROTECTED] wrote:

 Thanks to all for your replies.
 can u please give few cases where you used .net classes or java classes?
 that will help me to go for java or .net.

 Thanks
 Srinivas



 On 4/25/07, Andrew Scott [EMAIL PROTECTED] wrote:
 
  No he means that CF8 can do this
 
  CreateObject('.Net','some.net.class');
 
 
 
 
 
  On 4/25/07, Kevin Aebig [EMAIL PROTECTED] wrote:
  
   Hate to break the fun by doing Coldfusion to .NET or .NET to
 Coldfusion
   with
   Webservices is entirely possible. Though I'm quite sure you mean 
   that
  the
   datatypes are off (query  dataset), that's easy to deal with.
  
   We deal with CF  DotNET in a number of internal projects and 
   they
 all
   function extremely well.
  
   Cheers,
  
   !k
  
   -Original Message-
   From: James Holmes [mailto:[EMAIL PROTECTED]
   Sent: Tuesday, April 24, 2007 5:25 AM
   To: CF-Talk
   Subject: Re: Coldfusion Integration with .net,java
  
   CF 7 is built on Java. If you want to integrate natively with .NET 
   you'll have to wait for CF8. Otherwise webservices work well with 
   ...NET.
  
   On 4/24/07, srinivas ganta [EMAIL PROTECTED] wrote:
Hi,
   
  Any guys had gone thru the coldfusion integration with .net or
 Java?
i have few questions regarding it.
1.what can u achive with integrating coldfusion with .net or java?
2.which combinatation works good(coldfusion with java   OR
 coldfusion
   with
..net)
3. what kind of projects u suggest CF with .net?
4. what kind of projects u suggest CF with java?
  
  
   --
   mxAjax / CFAjax docs and other useful articles:
   http://www.bifrost.com.au/blog/
  
  
  
  
 
 

 



~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


Re: Spry Eclipse Plugin?

2007-04-27 Thread Adrian Moreno
Is this one still free? This is part of the old Interakt suite pre-Adobe..

AFAIK, it's free.

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


Re: CFHTTP Connection Failure

2007-04-27 Thread Matthew Irwin
No they say that they did not do that.
This is the url I'am trying to get to.
https://elink2.unitedstationers.com/Interlink/InterlinkDirect.asp
If you are have sucess it tells you acces denied. If you are not like Iam it 
tells you connection failure.
Thanks

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


CF8 and DualCore

2007-04-27 Thread Jason Manaigre
Hi everyone, I realize Adobe is pretty tight lipped about CF8, but does
anyone have any info regarding how much CF8 will take advantage of a
dual core server, such as 'Dual Xeon Dual Core 3.0 Ghz (Dempsey 5050)'
We're building a project proposal to move to CF8, but don't want to
waste money on hardware we don't need, or can't use. I realize more
power is always good, but we have limited funds for this project.

Server will run CF8 and MySQL

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Will Swain
That's sweet Bobby - seems to work a treat. Thanks very much.

Will 


-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 20:43
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Or a couple loops

!--- loop the query and replace the names with markers --- cfloop
query=artists
cfset thetext = replacenocase(thetext, artist, **#currentrow#**,
all) /
/cfloop

!--- now loop again and replace the placeholders with their links ---
cfloop query=artists
cfset thetext = replace(thetext, **#currentrow#**, a
href='mypage.cfm?var=#artist#'#artist#/a, all) / /cfloop

That did the trick for me.

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 3:34 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

I don't know what I was thinking but that wont work either. Say you had
Bobby and Bobby Hartsfield

If you replaced Bobby Hartsfield with a link then Bobby... the code would
replace the Bobby within Bobby Hartsfield

You will need to order the names by length descending to make sure the
longer names are taken care of first but you will also need to use a regular
expression to replace the strings only if they are NOT within
a.*?(#artist#)/a already


-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 3:15 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Yes, Do it in your query. Try this...

Select artist
From tablename
Order by length(artist)


-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 10:24 AM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Hi Bobby,

Out of interest, how would I reorder by length? In the query? MySQL 4.1.7

Thanks

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: 27 April 2007 13:47
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a, all)











~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


Newbie Question: Coding CFML once SSL Certificate is Installed

2007-04-27 Thread Brian Wright
I am building pages in CFML and using the application file to password protect 
certain areas of the site for members only. Certain information entered by 
members may be sensitive so I went ahead and had an SSL cert installed. When 
integrating CFML with SSL, I assume I don't need to load pages that require SSL 
into any special directory (of course the member's pages will be in a separate 
directory). I assume I just have to call those pages using https:// instead of 
http:// which means I shouldn't use relative links in pages that should be 
called using SSL since relative links (e.g. /members/file1.cfm) would default 
to http:// and not https://. Haven't seen anything specific on how to code this 
- sometimes when surfing sites it says one or more items is unsecured, I assume 
this is because the page may have been built with at least one link or image 
file not having the https prefix.

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Bobby Hartsfield
Sorry, Should have said that you DO still have to: 
order by length(artist) desc

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 3:43 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Or a couple loops

!--- loop the query and replace the names with markers ---
cfloop query=artists
cfset thetext = replacenocase(thetext, artist, **#currentrow#**,
all) /
/cfloop

!--- now loop again and replace the placeholders with their links ---
cfloop query=artists
cfset thetext = replace(thetext, **#currentrow#**, a
href='mypage.cfm?var=#artist#'#artist#/a, all) /
/cfloop

That did the trick for me.

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 3:34 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

I don’t know what I was thinking but that wont work either. Say you had
Bobby and Bobby Hartsfield

If you replaced Bobby Hartsfield with a link then Bobby... the code would
replace the Bobby within Bobby Hartsfield

You will need to order the names by length descending to make sure the
longer names are taken care of first but you will also need to use a regular
expression to replace the strings only if they are NOT within
a.*?(#artist#)/a already


-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 3:15 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Yes, Do it in your query. Try this...

Select artist
From tablename
Order by length(artist)


-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 10:24 AM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Hi Bobby,

Out of interest, how would I reorder by length? In the query? MySQL 4.1.7

Thanks

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 13:47
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a, all)











~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


RE: CF8 and DualCore

2007-04-27 Thread Dave Watts
 Hi everyone, I realize Adobe is pretty tight lipped about 
 CF8, but does anyone have any info regarding how much CF8 
 will take advantage of a dual core server, such as 'Dual Xeon 
 Dual Core 3.0 Ghz (Dempsey 5050)'
 We're building a project proposal to move to CF8, but don't 
 want to waste money on hardware we don't need, or can't use. 
 I realize more power is always good, but we have limited 
 funds for this project.

I imagine that CF 8 will take as much advantage of multiple processors
(physical or virtual) as CF 7, which takes advantage of them quite nicely.
More processors means more threads that you can run concurrently.
Alternatively, you could support more instances of CF if you're using the
multiserver functionality that Enterprise provides.

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net


~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


RE: Newbie Question: Coding CFML once SSL Certificate is Installe d

2007-04-27 Thread Dave Watts
 I am building pages in CFML and using the application file to 
 password protect certain areas of the site for members only. 
 Certain information entered by members may be sensitive so I 
 went ahead and had an SSL cert installed. When integrating 
 CFML with SSL, I assume I don't need to load pages that 
 require SSL into any special directory (of course the 
 member's pages will be in a separate directory). I assume I 
 just have to call those pages using https:// instead of 
 http:// which means I shouldn't use relative links in pages 
 that should be called using SSL since relative links (e.g. 
 /members/file1.cfm) would default to http:// and not 
 https://. Haven't seen anything specific on how to code this 
 - sometimes when surfing sites it says one or more items is 
 unsecured, I assume this is because the page may have been 
 built with at least one link or image file not having the 
 https prefix.

While you don't have to separate files based on whether they'll be accessed
via SSL or not, I think it's a good idea to do so - it makes things easier
for you, in my opinion. It also lets you control whether files require SSL
based on their location, instead of internal application logic.

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Will Swain
Thanks Bobby, I owe you a beer. And not just for this but for
http://www.acoderslife.com/news/index.cfm?storyid=7 too!!

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 21:21
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Sorry, Should have said that you DO still have to: 
order by length(artist) desc

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 3:43 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Or a couple loops

!--- loop the query and replace the names with markers --- cfloop
query=artists
cfset thetext = replacenocase(thetext, artist, **#currentrow#**,
all) /
/cfloop

!--- now loop again and replace the placeholders with their links ---
cfloop query=artists
cfset thetext = replace(thetext, **#currentrow#**, a
href='mypage.cfm?var=#artist#'#artist#/a, all) / /cfloop

That did the trick for me.

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 3:34 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

I don't know what I was thinking but that wont work either. Say you had
Bobby and Bobby Hartsfield

If you replaced Bobby Hartsfield with a link then Bobby... the code would
replace the Bobby within Bobby Hartsfield

You will need to order the names by length descending to make sure the
longer names are taken care of first but you will also need to use a regular
expression to replace the strings only if they are NOT within
a.*?(#artist#)/a already


-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 3:15 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Yes, Do it in your query. Try this...

Select artist
From tablename
Order by length(artist)


-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 10:24 AM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Hi Bobby,

Out of interest, how would I reorder by length? In the query? MySQL 4.1.7

Thanks

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: 27 April 2007 13:47
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a, all)













~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


RE: Regex help looking for a name in a string.

2007-04-27 Thread Bobby Hartsfield
Haha! Beer may have played a part in that article... oh and I accept the beer. 
;-)

Cheers!

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 27, 2007 5:01 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Thanks Bobby, I owe you a beer. And not just for this but for
http://www.acoderslife.com/news/index.cfm?storyid=7 too!!

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: 27 April 2007 21:21
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Sorry, Should have said that you DO still have to: 
order by length(artist) desc

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 3:43 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Or a couple loops

!--- loop the query and replace the names with markers --- cfloop
query=artists
cfset thetext = replacenocase(thetext, artist, **#currentrow#**,
all) /
/cfloop

!--- now loop again and replace the placeholders with their links ---
cfloop query=artists
cfset thetext = replace(thetext, **#currentrow#**, a
href='mypage.cfm?var=#artist#'#artist#/a, all) / /cfloop

That did the trick for me.

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 3:34 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

I don't know what I was thinking but that wont work either. Say you had
Bobby and Bobby Hartsfield

If you replaced Bobby Hartsfield with a link then Bobby... the code would
replace the Bobby within Bobby Hartsfield

You will need to order the names by length descending to make sure the
longer names are taken care of first but you will also need to use a regular
expression to replace the strings only if they are NOT within
a.*?(#artist#)/a already


-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 3:15 PM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Yes, Do it in your query. Try this...

Select artist
From tablename
Order by length(artist)


-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 10:24 AM
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Hi Bobby,

Out of interest, how would I reorder by length? In the query? MySQL 4.1.7

Thanks

Will

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: 27 April 2007 13:47
To: CF-Talk
Subject: RE: Regex help looking for a name in a string.

Reorder by length so the longer names come first. Also, I think you only
need replace(works_string, artist, a href='profiles.cfm?e=#profileID#'
target='artistWin'#artist#/a, all)















~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


RE: cms

2007-04-27 Thread Damien McKenna
 -Original Message-
 From: Billy Cox [mailto:[EMAIL PROTECTED] 
 Sent: Friday, April 27, 2007 2:31 PM
 Subject: RE: cms
 
 I currently have a site running CFWebStore (a CMS/Ecommerce 
 package) and another in development. It has a reasonable level
 of sophistication and flexibility while also being open source
 (but not free).

Just to clarify, CFWebStore is not Open Source, it's a commercial
product.  Being open source is different from being able to see 
modify the code :-)


Damien McKenna
Web Developer

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

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


Re: CF 7.02 - Archiving Logs in CF Admin

2007-04-27 Thread T Lux
Sorry.. I meant CF Admin as in the ColdFusion Administrator, not TS Admin. Duh.

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


Re: CF5 under Vista

2007-04-27 Thread Graham Simpson
I manage a number of CF5 sites and maintain the scripts on may local machine 
which needed to be upgraded to Vista. After a lot of messing about I surprised 
myself and finally got this going. I've no idea what is or isn't necessary in 
the following description of what I did but it DOES work.

In the Turn Windows Features on or off select the World Wide Web Services and 
manually also turn on CGI, ISAPI Extensions and ISAPI Filters.

Start the IIS Manager and select the ROOT (server) and ensure you're in feature 
view.
Select the Handler Mappings. You should see CGI and ISAPI there as disabled. 
Select ISAPI and select Edit Handler Permissions. Check the Execute option and 
press OK. ISAPI and CGI should now appear as enabled. Still in Handler Mappings 
add a script map. Path should be *.cfm, enter the path and filename (iscf.dll) 
DIRECTLY into the field (DO NOT use the file dialog by pressing the elipses 
button) and call it ColdFusion. You should get a dialog asking if you want 
enable the ISAPI extension - say yes. Exit the Handler Mappings. Go into the 
ISAPI and CGI restrictions and verify iscf.dll is there and enabled. You can 
edit it and give it a name if needed.
Make sure the CF server service is running and all should go - did for me.

The strange thing is if you select iscf.dll as the executable by using the ... 
button IIS7 gives an error about the ISCF.dll. I stumbled on this little bug by 
trying all the dlls in the bin directory and finding it liked the ns35cf.dll. 
The dll failed of course but I then overkeyed the ns35 with is and it burst 
into life. If MS clean up this bug in the future I suggest you use ns35cf.dll 
and change it manually to iscf.dll in the applicationHost.config file.

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: License Exception for JSP Pages - how to disallow

2007-04-27 Thread James Holmes
Right, so now the .jsp extension needs to be disconnected from the CF
connector. Check your IIS site setups and change/remove the mapping
for the .jsp section.

On 4/28/07, T Lux [EMAIL PROTECTED] wrote:
 Yes, this is a licensed copy.

 I gather this I a licensed copy? As in not a dev server copy which has timed
 out?

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

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


Re: encrypt/decrypt bug

2007-04-27 Thread Dana Kowalski
This is going to sound weird but I've seen two issues nesting a trim() inside 
other functions in the past. When I moved it above the function and cfset to a 
temp it fixed the error. May not apply here but its only a 15 second test :)

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

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


Re: scheduled jobs run twice

2007-04-27 Thread Dana Kowalski
We were getting this on 6.x and they posted a hotfix at one point early on in 7 
or late 6 to correct it. We still saw it sometimes where the task would run 
multiple times over night, and there was a post on the adobe forums pointing to 
use the daily at option instead of every x hours.

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: scheduled jobs run twice

2007-04-27 Thread Dana Kowalski
bah flip that (SORRY!) use every x hours vs daily at and see if it still 
happens. When we changed that we never ran into this trouble again =\


 We were getting this on 6.x and they posted a hotfix at one point 
 early on in 7 or late 6 to correct it. We still saw it sometimes where 
 the task would run multiple times over night, and there was a post on 
 the adobe forums pointing to use the daily at option instead of every 
 x hours.

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


Re: CFHTTP Connection Failure

2007-04-27 Thread James Holmes
Java caches successful DNS lookups forever by default. Flushing DNS on
the server doesn't help, but restarting CF should have, so something
else is going on. Anyway, here's the Adobe article describing the
Java/DNS situation.

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=13115e61

On 4/28/07, Matthew Irwin [EMAIL PROTECTED] wrote:
 No they say that they did not do that.
 This is the url I'am trying to get to.
 https://elink2.unitedstationers.com/Interlink/InterlinkDirect.asp
 If you are have sucess it tells you acces denied. If you are not like Iam it 
 tells you connection failure.
 Thanks


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

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


Re: Spry Eclipse Plugin?

2007-04-27 Thread Aaron Roberson
Just downloaded JSEclipse. However, I really am beginning to wonder
about the trade-off between Eclipse and DW. There are soo many very
helpful features in DW that really speed up my work flow (I'm not just
talking about wysiwyg and wizardry stuff). I am kind of feeling like I
moved to Eclipse just because everyone else was doing it - though I
have grown to like many things about it, but I can set my preferences
in DW to behave the same way.

Really, are we throwing the baby (DW) out with the bathwater
(commercial license)?

-Aaron

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

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


Re: License Exception for JSP Pages - how to disallow

2007-04-27 Thread T Lux
In IIS 6, I went to the website in question. Right click, Properties, Home 
Directory tab. Configuration button. Selected the .jsp extension and removed 
it. I restarted IIS just for kicks.

I called a JSP page on the website (which doesnt exist) and now I dont get the 
JRun Servlet error -- I just get a blank page in my browser. Getting better.

I am actually OK with this -- but Id love it if I can somehow redirect jsp 
requests to a 404 handler in IIS. Is it possible without an ISAPI Filter?

Thanks,
Tim


Right, so now the .jsp extension needs to be disconnected from the CF
connector. Check your IIS site setups and change/remove the mapping
for the .jsp section.


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: CF 7.02 - Archiving Logs in CF Admin

2007-04-27 Thread T Lux
Apologies for the mistake in the original post.

Ive seen this happen every now and then... and it is one of those now times 
at the moment. In CF Admin, I see that the mailsent.log (for example) is large. 
It is stored on our server at CFusionMX7\logs with all the other CF logs. In CF 
Admin, I click the archive button next to mailsent.log, and it gets reset to an 
empty file. I look in the directory, and the archive of the log is nowhere to 
be found... it wasnt copied into another file like I thought it would be. I 
tried it for all the other logs, too, and the same thing happened.

So what is the purpose of the archive button?

Tim


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


FLEX2 or CFMX/AJAX developer wanted for a one off mini-application

2007-04-27 Thread Oliver Cookson
Hi, 

We are looking for an advanced FLEX2\CFMX or AJAX developer.

We would prefer this candidate to be based in the UK but will accept 
applications from the USA and the rest of Europe but excellent English 
communication is ESSENTIAL. 

I have worked on e-commerce site for 4 years and due to other areas of the 
business needing my help I need help adding features that I have been meaning 
to do for a while but just not getting the time. The application is CFMX7 
running on a Windows 2003 Dedicated Server at rackspace.co.uk. The database is 
mySQL. 

Excellent knowledge (2/3+ years experience) of FLEX2\CFMX is essential, 
excellent communication, reliable and works to deadlines. As this is a remote 
opportunity we appreciate this could suit someone who is in full time 
employment and they want to take this on in their spare time. 

This is a standalone FLEX2 application for creating a formula. It could be 
created using AJAX and CFMX as well.

We are hoping the rates will reasonable as this is a great opportunity and we 
have lots of work. Please contact me directly on oliver2 #at# gmail.com with 
your CV, rates and anything else you may feel is valid when full details can be 
revealed about the site.

Thanks

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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