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

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

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

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

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:

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

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:

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

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

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

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

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

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

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

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

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#,

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

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

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

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

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

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.

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

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

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

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

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

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

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

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

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

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?

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

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

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

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

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.

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

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

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

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

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

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

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

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

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.

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

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

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 ~|

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

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

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:

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

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

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

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

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

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

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

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

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

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.

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

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

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

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

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

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]

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

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

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

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

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

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

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

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

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

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.

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

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

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.

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

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

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 :)

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.

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

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

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

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

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

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