Re: Loading page

2006-11-27 Thread Jon Clausen
Matthew, Simple, but you can take it from there (if you're using AJAX to display the results of the call you can skip the show/hide of the div):

Thank You. We Are Processing the information you have requested

Please St


Re: OT: DNS Problems...

2006-11-27 Thread Jon Clausen
Rick, A couple of things to check (I'm giving you some examples using IIS so you might need to find something equivalent in GoDaddy's DNS admin if you haven't done any of your DNS work on the server side): You may have created a reverse-pointer record when you were modifying your DNS. To

Loading page

2006-11-27 Thread Matthew Chambers
Hi guys, Does anyone have some reliable code which can be used so that I can display a loading or searching message whilst I am waiting for a web service call to return data? Cheers Matthew ~| Introducing the Fusion Authority

Slightly OT: fckeditor and CSS

2006-11-27 Thread Les Mizzell
I'm having some issues getting the fckeditor "edit" window display to match what's output on a cfm display page. One issue I think I'm having is that the display page CSS is interfering with the material that's output from the editor. I'm trying to use a "reset" CSS file for the div containing the

RE: Web service error, pls help

2006-11-27 Thread Michael Nguyen
When I go to the log exception log, I see the following exceptions: 1) This is when I restart ColdFusion and try it the very first time: "Error","jrpp-0","11/28/06","15:13:42",," The specific sequence of files included or processed is: C:\Inetpub\wwwroot\transtar2\cfm\Test.cfm " java.lang.Excepti

RE: access individual instances of CF

2006-11-27 Thread Dave Watts
> I really wish there was a way to do this. The only thing I > can think of is running the proxy service on 127.0.0.1, which > should work, but I am limited to 1 instance per physical > server per cluster. I'm not exactly sure what you mean by "proxy service", but if you mean the service to wh

RE: access individual instances of CF

2006-11-27 Thread Russ
My custom health check is a .cfm file which the loadbalancer hits to see if the instance is active. If it's down, or returns anything but a 200/OK error code, it's considered down. This also allows me to remove/rename the health check template for that instance to take it offline, while I can sti

RE: Challenging Loop problem.

2006-11-27 Thread Bobby Hartsfield
Nice :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 10:31 PM To: CF-Talk Subject: Re: Challenging Loop problem. Try this out... #variables["

RE: ColdFusion and Microsoft Excel

2006-11-27 Thread Ryan Sabir
SpreadsheetML might be the best way to do this. The quick and easy way to create a SpreadsheetML file is to create a mockup of your spreadsheet in Excel, then save it as XML. This creates an XML file with all the formatting you need. All you need to do is recreate that file with dynamic data, an

OT: DNS Problems...

2006-11-27 Thread Rick Faircloth
Hi, all. This is OT, but I really need some help figuring out why one of my clients cannot view their websites from their office. Everyone else in the world seems to be able to, but they can't. That's a big problem, because one of their "sites" is actually an office app that I host and if they

Re: Challenging Loop problem.

2006-11-27 Thread Doug Brown
Jim...You have way too much time on your hands :) Pretty damn interesting!! That would have made my brain explode!! Doug B. - Original Message - From: "Jim Wright" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, November 27, 2006 8:30 PM Subject: Re: Challenging Loop problem. > T

Re: Challenging Loop problem.

2006-11-27 Thread Jim Wright
Try this out... #variables["p#lp#"]#. We are looping, no more changes seem possible. #variables["p#lp#"]#

RE: RegEx help

2006-11-27 Thread Bobby Hartsfield
That looks VERY similar to one I found and tried for this thread :-) It didn’t work either. It was the same problem, '11' validates but he asked for letters and at least 1 number. I took that as meaning it has to have at least 1 letter and at least 1 number. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Ha

Re: ColdFusion and Microsoft Excel

2006-11-27 Thread Arden Weiss
I tried with success in using the CFCONTENT method to generate Excel 2000 files; however, it blew up when Excel 2003 was on the client's machine. Instead, I bought the CFX_EXCEL product from MasRizal and it has worked flawlessly for just about a year now. See product at following link http://ww

Re: CFMX 6.1 Connector Installer Problems

2006-11-27 Thread Gonzo Rock
Thanks Tom, That helped... coldfusion started without an error message... the coldfusion administrator now runs. If I put the file back the error message comes back, however the coldfusion administrator still runs properly. I don't understand what's up with that but at least it's working. Any l

Re: Shopping cart questions?

2006-11-27 Thread Patrick McElhaney
On 11/27/06, Doug Brown <[EMAIL PROTECTED]> wrote: > Well, that is what I was thinking. The other issue that I have as far as > using the database storage is image uploads. I plan on allowing a user to > upload as many as 10 images per ad, and was wondering how to handle the > image upload if they

Re: ColdFusion and Microsoft Excel

2006-11-27 Thread Patrick McElhaney
I agree with Ian. Use CSV if you can. I think there's a function or two on cflib.org to create CSV files. If you have to create an .xls this may be easier than COM. http://jakarta.apache.org/poi/ Patrick -- Patrick McElhaney 704.560.9117 ~~~

Re: Shopping cart questions?

2006-11-27 Thread Doug Brown
Well, that is what I was thinking. The other issue that I have as far as using the database storage is image uploads. I plan on allowing a user to upload as many as 10 images per ad, and was wondering how to handle the image upload if they end up not checking out. Should I just run a scheduled task

Re: RegEx help

2006-11-27 Thread Patrick McElhaney
Can't resist the challenge. :-) "^(?=.*\d).{6,12}$" I'm not sure if this will actually work in CF. Patrick On 11/27/06, Bobby Hartsfield <[EMAIL PROTECTED]> wrote: > You can also still do it in one cfset with Ben's 2 separate expressions... > > > > > > ..:.:.:.:.:.:.:.:.:.:.:. > Bobby Hartsf

RE: Hiding email addresses

2006-11-27 Thread Bobby Hartsfield
I've only seen her talk about it on the list. It wasn't long ago that she detailed it pretty well in a thread here so check the archives. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Dennis Powers [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: Shopping cart questions?

2006-11-27 Thread Snake
If u store the cart in the database, they can at least come back later and complete the order. -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: 28 November 2006 00:52 To: CF-Talk Subject: Shopping cart questions? I have a classifieds site that I am needing to design a

Re: Shopping cart questions?

2006-11-27 Thread Patrick McElhaney
You could serialize the cart (using WDDX or some other method) and put it in the client scope. I also think just using a database is a good option. Using a database would allow you to easily see your customers' carts, which might be useful from a support perspective. Also, it would allow a custom

RE: Hiding email addresses

2006-11-27 Thread Dennis Powers
>> which is what Sandra does and it sounds like a fool-proof system. Where can I read more about her system? I tried IP blocking but it became much to cumbersome to maintain. I am always interested in eliminating spam of any kind. >> Glad you liked bhcaptcha too :-) I'm a CF5'er and it fit nic

Shopping cart questions?

2006-11-27 Thread Doug Brown
I have a classifieds site that I am needing to design a shopping cart for. What I am looking to do is let the user create their ad and then once they are done and hit continue, they are taken to a page where they can choose to check out, or they can create another ad. I am wondering what the bes

Re: OT: iframe question

2006-11-27 Thread Pete Ruckelshaus
Why not just use AJAX to replace the content of a DIV on your site with the search results? On 11/27/06, Jason Rogoz <[EMAIL PROTECTED]> wrote: > i'm working on a site that requires the use of a search page that is hosted > on another domain to be embedded within the new site. The plans are to u

RE: access individual instances of CF

2006-11-27 Thread Dave Watts
> Is there a way to force the JRUN connector to use an > individual instance while maintaining session replication? > That's all I really want, for the request to be served by any > of the instances (managed by the loadbalancer currently), > except the instances that have failed my custom heal

Re: CrystalTech outage?

2006-11-27 Thread Matt Robertson
Luckily none of my dedicated servers were affected, nor any of my clients. SORT OF... One of my clients uses a combination of his own SQL Server and CT's, where the CT server manages a peripheral app and his client variables (!). His CF connections kept working but his ASP DSN's died. I *guess*

RE: Challenging Loop problem.

2006-11-27 Thread Ben Nadel
The patterns is the same. The columns are changing in harmonic motion (so to speak). The other difference bewteen the two sets is that the first one starts C A A and the second one starts A C C. Once the first line is established, the patterns follows in a harmonic motion. The patterns seems to sta

Re: Challenging Loop problem.

2006-11-27 Thread Josh Nathanson
Wait a minute, even the different lists Ian gave as examples in the original post don't match up --- In the letters one, the third to last and the last letter groups are both "BCA". But in the numbers one, the third to last is "8 0 16" while the last is "16 0 8". So something is amiss in one

RE: Challenging Loop problem.

2006-11-27 Thread Brad Wood
I agree. I can't see the pattern. Also, there are combinations you didn't show in the example. Where would those fall in the pattern, like aaa, or bbb. ~Brad -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 4:20 PM To: CF-Talk Subject

RE: Challenging Loop problem.

2006-11-27 Thread Bobby Hartsfield
I should have paid a little more attention. I didn’t see the order requirement. I see no rhyme or reason to the order of what you want to generate though. Is there any? What I posted would generate something closer to... AAA, AAB, AAC, ABA, ABB, ABC, etc... ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfi

RE: Challenging Loop problem.

2006-11-27 Thread Ben Nadel
It's just nested list loops (or index loops depending on how you execute). The trick is just to figure out what the pattern is. I can't quite see the pattern is, but once you figure it out, the technicals of the CFLoops are the easy part. You figure out the patterns, we can help you with the CFLoop

RE: Challenging Loop problem.

2006-11-27 Thread Russ
This won't do it in the proper order... > -Original Message- > From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] > Sent: Monday, November 27, 2006 5:09 PM > To: CF-Talk > Subject: RE: Challenging Loop problem. > > > > > > > #a##b##c# > > > > > > > ..:.:.:.:.:.:.:.:.

RE: Hiding email addresses

2006-11-27 Thread Bobby Hartsfield
> There is absolutely nothing anyone can do about human spam because if you keep the human from entering data then the form is useless. Unless you want to apply full content filtering. Exactly... which is what Sandra does and it sounds like a fool-proof system. It's just more work... Glad you lik

RE: Challenging Loop problem.

2006-11-27 Thread Bobby Hartsfield
#a##b##c# ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 4:34 PM To: CF-Talk Subject: Challenging Loop problem. Say I have the following values

Re: Challenging Loop problem.

2006-11-27 Thread Jake Churchill
I'm not touching this with a 50' pole. However, I'm interested to see the result. Douglas Knudsen wrote: > nice compsci homework question! quick google on 'generating combinations' > http://www.google.com/search?q=generating+combinations&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozill

Re: Challenging Loop problem.

2006-11-27 Thread Douglas Knudsen
nice compsci homework question! quick google on 'generating combinations' http://www.google.com/search?q=generating+combinations&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:en-US:official yields all kinds of nifty stuff. http://www.thescripts.com/forum/thread161838.html looks like a

access individual instances of CF

2006-11-27 Thread Russ
I have 2 CF enterprise servers with 2 instances (so far) of CF on each physical server. I have set up separate virtual sites for each instance in Apache and have configured the loadbalancer to do health checks on each individual instance (through the virtual site). Everything works fine unti

Challenging Loop problem.

2006-11-27 Thread Ian Skinner
Say I have the following values: A,B,C How could I programically create the following list in this order? ACC,ABC,AAC,BAC,CAC,CAB,CAA,CBA,CCA,BCA,ACA,BCA Or the same thing with the numbers 0,8,16: 16 0 0,16 8 0,16 16 0,8 16 0,0 16 0,0 16 8,0 16 16,0 8 16,0 0 16,8 0 16,16 0 16,16 0 8 Now do the

Re: Framework or application to make form submissions easy

2006-11-27 Thread Nathan Strutz
Jeff, There are a few projects, both in the wild and behind closed doors, that a lot of developers are working on now. The idea, generally, is that of "scaffolding" - a concept from ruby on rails. In CF, you can easily find this in Model-Glue Unity, or CFWheels, but there are a number of other dev

RE: ColdFusion and Microsoft Excel

2006-11-27 Thread Ian Skinner
How complex of an "Excel" file? Can the data be represented by a simple comma or tab delimitated CSV file? If so to would be pretty easy to build such a file in ColdFusion and mail it anywhere you like. For most people .csv is a native format to Excel, it would automatically open with that so

RE: ColdFusion and Microsoft Excel

2006-11-27 Thread Ben Nadel
The simple solution (but not the *best*): Create the Excel table using very simple HTML in a ColdFusion string buffer (CFSaveContent). Then save that file to a temporary file (CFFile to a file in a temp directory, possibly GetTempDirectory()). Use CFMailParam tag inside of CFMail to attach the Fil

ColdFusion and Microsoft Excel

2006-11-27 Thread Gabrielle Mack
Question: I am a newb to CF and I have been assigned the daunting task of dynamically generating an excel file with absolutely no user action entailed. We currently have code that takes HTML and throws it in an excel file, but the user is prompted to download/save it. We dont want that. I have se

RE: DNS Redundancy

2006-11-27 Thread Eric J. Hoffman
We use Zone Edit...www.zoneedit.com and we actually never use Crystal Techs DNS since it is all on the same network (so to speak) as the servers and they have had a DNS issue before (attacks they say)...with Zoneedit, I have it configured to use multiple nameservers from all over the country, and t

RE: DNS Redundancy

2006-11-27 Thread Russ
If you're lucky enough to have a server with rackspace, I've never had a problem with their DNS servers which are highly redundant (as are the rest of their networks). I've also used the registrar's DNS servers with fairly good success. Some places (I believe it's register.com and networksoluti

RE: CrystalTech outage?

2006-11-27 Thread Eric J. Hoffman
Oh, that's why we are still working on our dedicated scenario. We use external DNS through zoneedit. They have had a DNS issue before if memory serves, its why we went this route. Just in case anyone wants to look at it: www.zoneedit.com Cheap as heck and reliable. ---

Re: DNS Redundancy

2006-11-27 Thread Steve Bryant
Jordan, Sorry, I should have been more clear in my question. I have been using Crystal Tech to handle the DNS for sites I host with them. They provide me two DSN servers. In the most recent DDOS attack, both were affected. I would like to have more DSN servers - some provided by someone else -

Re: DNS Redundancy

2006-11-27 Thread Jordan Michaels
Steve Bryant wrote: > Given that the recent Crystal Tech outage seems to have been from a DDOS > attack on their DNS servers, does anyone know of a good back-up service for > DNS servers? > > Thanks, > > Steve Bryant > 918-449-9440 > Bryant Web Consulting LLC > http://www.BryantWebConsulting.co

DNS Redundancy

2006-11-27 Thread Steve Bryant
Given that the recent Crystal Tech outage seems to have been from a DDOS attack on their DNS servers, does anyone know of a good back-up service for DNS servers? Thanks, Steve Bryant 918-449-9440 Bryant Web Consulting LLC http://www.BryantWebConsulting.com/ http://steve.coldfusionjournal.com/

RE: CrystalTech outage?

2006-11-27 Thread Brad Wood
>From what I understand about most DDOS's is that hackers will use a large network of compromised machines running a Trojan virus. That means, if your anti-virus isn't up-to-date, your computer could be helping out with the attack. :) That's what scares me about the general uneducated public wit

Re: Multiple language support

2006-11-27 Thread Mike Little
sorry, perhaps i misunderstood. i did not realise i could integrate human translation. thanks for that. mike >I think you did not check all details. > >There are some files called as ".properties" which must include "human >translations" for you localized needs. :) > > > >Mike Little wrote: > >

Re: CrystalTech outage?

2006-11-27 Thread Jeff Langevin
This from the crystaltech forums: - We have experienced a very large distributed denial of service attack DDOS on our main network. The attack is against our shared segment and DNS specifically. We have currently blocked over 2200 DDOS IPs and are continuing

RE: CrystalTech outage?

2006-11-27 Thread Ray Champagne
DOS attack on their DNS server, according to them. Something like 2500 IP have been isolated so far. This sucks. > -Original Message- > From: Will Tomlinson [mailto:[EMAIL PROTECTED] > Sent: Monday, November 27, 2006 1:09 PM > To: CF-Talk > Subject: Re: CrystalTech outage? > > >Is anyon

Re: CrystalTech outage?

2006-11-27 Thread Jeff Langevin
Looks like it is back up... --Jeff Jeff Langevin wrote: > Ah, I see. I meant the IP address of crystaltech. I am just curious > whether their own website has any info on the problem. > > --Jeff > > Ray Champagne wrote: >> Um, no, I meant if you use the IP of *your* site. There is no IP to gi

Re: CrystalTech outage?

2006-11-27 Thread Will Tomlinson
>Is anyone else experiencing outages for their CrystalTech sites? Seems like >none of mine are up as of about 20 minutes ago. Hey, maybe it's the same construction crew that hit HostMySite awhile back. lol! Will ~| Introducing

Re: CrystalTech outage?

2006-11-27 Thread Jeff Langevin
Ah, I see. I meant the IP address of crystaltech. I am just curious whether their own website has any info on the problem. --Jeff Ray Champagne wrote: > Um, no, I meant if you use the IP of *your* site. There is no IP to give > you, only you'd know that. > > It's prolly not going to help your

Re: CrystalTech outage?

2006-11-27 Thread John C. Bland II
2 of our clients said they are out. We're on dedicated though so that is good to go (as someone else noted). On 11/27/06, Ray Champagne <[EMAIL PROTECTED]> wrote: > > Um, no, I meant if you use the IP of *your* site. There is no IP to give > you, only you'd know that. > > It's prolly not going to

Re: CrystalTech outage?

2006-11-27 Thread Will Tomlinson
Dude, they have MAJOR problems right now. All my sites are down too. And CT's website was down for quite a while. Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion infor

RE: CrystalTech outage?

2006-11-27 Thread Ray Champagne
Um, no, I meant if you use the IP of *your* site. There is no IP to give you, only you'd know that. It's prolly not going to help your customers too much, but you can at least access your site(s) if you need to. > -Original Message- > From: Jeff Langevin [mailto:[EMAIL PROTECTED] > Sent:

Re: CrystalTech outage?

2006-11-27 Thread Jeff Langevin
Can you post the IP address? Ray Champagne wrote: > Looks like if you use the IP, you're good. Must be some kind of DNS > issue... > > http://www.crystaltech.com/forum/topic.asp?TOPIC_ID=16202 > >> -Original Message- >> From: Jerry Johnson [mailto:[EMAIL PROTECTED] >> Sent: Monday, Nove

Re: CrystalTech outage?

2006-11-27 Thread Mary Jo Sminkey
Not just my websites, but my email as well seems to be down. Not good on a Monday. --- Mary Jo ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, d

Re: Framework or application to make form submissions easy

2006-11-27 Thread Jeff Fleitz
Hey Jeff, Plum will do all of this for you, but it uses a .NET app for the code generator. If you install and generate the code once, you can pretty much build any form you want using the custom tag library without using the code generator at all. Al

Re: What am I doing wrong? (Problem with )

2006-11-27 Thread Adrian
DateSent = "Now()" er, won't that insert the string "Now()" into your db? Why not use a date field in your DB? On 25/11/06, Will Tomlinson <[EMAIL PROTECTED]> wrote: > > > DateSent = "Now()" > And you might also think about using CreateODBCDate() for this. > > Will > > ~

Re: Framework or application to make form submissions easy

2006-11-27 Thread Massimo Foti
> I'm well versed in CFC's and OO, and just starting to look at frameworks > (although i've used them with ajax stuff for quite a while). > > One of the most immediate applications in need of this (for me) is form > submissions. Ideally, i would want something that could: > 1) generate my forms ba

RE: Simple Date - I think

2006-11-27 Thread Ben Nadel
CreateODBCDateTime( CreateDate( Year( Now() ), Month( FORM_VALUE_GOES_HERE ), Day( Now() ) ) ) .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: [EMAIL

Simple Date - I think

2006-11-27 Thread coldfusion . developer
All, I'm doing an insert from a form. 1) In the form the months of the year are listed. 2) Each month having it's appropriate value, January is 01, February is 02 etc. 3) Now when I do my insert statement, I want to insert an ODBCDateTime using #CreateODBCDateTime(now())# but I want to change t

Framework or application to make form submissions easy

2006-11-27 Thread Jeff Gladnick
I'm well versed in CFC's and OO, and just starting to look at frameworks (although i've used them with ajax stuff for quite a while). One of the most immediate applications in need of this (for me) is form submissions. Ideally, i would want something that could: 1) generate my forms based on an

RE: Hiding email addresses

2006-11-27 Thread Dennis Powers
I have several websites that were getting form-bot spam, at a rate of 60-100 a week. I added Bobby Hartsfield's bhcaptcha tag (http://acoderslife.com) to the forms and haven't gotten one since. There is absolutely nothing anyone can do about human spam because if you keep the human from entering

RE: CrystalTech outage?

2006-11-27 Thread Ray Champagne
I just called - "We're sorry, all circuits are busy now..." Yikes. Poor tech guys, and on Cyber Monday. > -Original Message- > From: Jerry Johnson [mailto:[EMAIL PROTECTED] > Sent: Monday, November 27, 2006 11:58 AM > To: CF-Talk > Subject: Re: CrystalTech outage? > Importance: High >

RE: mask function

2006-11-27 Thread Ben Nadel
Steve, You can format values for CFQuery using Mask functions (as part of the value)... I am not sure what you mean (I am not fully familiar with CFInput. Can you give more info? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help

RE: CrystalTech outage?

2006-11-27 Thread Ray Champagne
Looks like if you use the IP, you're good. Must be some kind of DNS issue... http://www.crystaltech.com/forum/topic.asp?TOPIC_ID=16202 > -Original Message- > From: Jerry Johnson [mailto:[EMAIL PROTECTED] > Sent: Monday, November 27, 2006 11:58 AM > To: CF-Talk > Subject: Re: CrystalTech

RE: CrystalTech outage?

2006-11-27 Thread Eric J. Hoffman
Our dedicated servers are all functioning normally. Maybe we got lucky. Eric J. Hoffman Managing Partner 2081 Industrial Blvd StillwaterMN55082 mail: [EMAIL PROTECTED] www: http://www.ejhassociates.com tel: 651.717.4105 fax: 651.717.41

Re: mask function

2006-11-27 Thread Teddy Payne
What are you trying to mask? A date? The DateFormat() function can be applied in typically any art of your output and can be applied in conditional logic inside your queries. Teddy On 11/27/06, Steve Good <[EMAIL PROTECTED]> wrote: > > > > Dumb question I'm sure, but here it is. Can I use the

mask function

2006-11-27 Thread Steve Good
Dumb question I'm sure, but here it is. Can I use the mask function with a or does it only work with ? I would test it myself but I'm not sure where I would start (not to mention I just fixed an hour's worth of code because I tried to play with DateFormat() *bonk*) Thanks for the answer!

RE: CrystalTech outage?

2006-11-27 Thread Ray Champagne
Of course theirs is up first. :) > -Original Message- > From: Tom McNeer [mailto:[EMAIL PROTECTED] > Sent: Monday, November 27, 2006 11:53 AM > To: CF-Talk > Subject: Re: CrystalTech outage? > > Having said that it looks like CrystalTech's own site is up. It seemed > to be down, too

Re: CrystalTech outage?

2006-11-27 Thread Jerry Johnson
yep, I'm down too. On 11/27/06, Tom McNeer <[EMAIL PROTECTED]> wrote: > Ray, > > On 11/27/06, Ray Champagne <[EMAIL PROTECTED]> wrote: > > > > Is anyone else experiencing outages for their CrystalTech sites? Seems > > like > > none of mine are up as of about 20 minutes ago. > > > Actually, I thin

Re: CrystalTech outage?

2006-11-27 Thread Tom McNeer
Having said that it looks like CrystalTech's own site is up. It seemed to be down, too. Maybe they're getting back online. -- Thanks, Tom Tom McNeer MediumCool http://www.mediumcool.com 1735 Johnson Road NE Atlanta, GA 30306 404.589.0560

Re: CrystalTech outage?

2006-11-27 Thread Tom McNeer
Ray, On 11/27/06, Ray Champagne <[EMAIL PROTECTED]> wrote: > > Is anyone else experiencing outages for their CrystalTech sites? Seems > like > none of mine are up as of about 20 minutes ago. Actually, I think it's been almost an hour and a half. They're definitely dead in the water. Looks like

CrystalTech outage?

2006-11-27 Thread Ray Champagne
Is anyone else experiencing outages for their CrystalTech sites? Seems like none of mine are up as of about 20 minutes ago. Ray Champagne Senior Application Developer CrystalVision Innovative Web & eMarketing Solutions http://www.cvwp.com ~~

RE: Hiding email addresses

2006-11-27 Thread Bobby Hartsfield
Putting the address anywhere in the source code in it's original format is just making it easy for someone to read it. The best thing you can do for them is to put a form that submits to the email address rather than giving a mailto: link to the address. That way it is never seen. ..:.:.:.:.:.:.

RE: Hiding email addresses

2006-11-27 Thread Jason Rogoz
the email address is sitting on a processing page that also sends the email -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 9:22 AM To: CF-Talk Subject: RE: Hiding email addresses Is the email address located as hidden field in the form it

RE: Hiding email addresses

2006-11-27 Thread Andy Matthews
Is the email address located as hidden field in the form itself? Or are you placing the email into the processing portion of the page? Putting the email as a hidden field is a HGUE no-no as spam-bots read that in a heartbeat. -Original Message- From: Jason Rogoz [mailto:[EMAIL PROTECTED]

RE: Hiding email addresses

2006-11-27 Thread Bobby Hartsfield
Yeah, there has apparently been a rise in spammers paying the poor to submit forms for them. It was actually on Slashdot a couple days ago I think. If that becomes an increasing problem, we'll all be moving to Sandra's white/black lists method and working twice as hard to keep crap out of our data

RE: Hiding email addresses

2006-11-27 Thread Ben Nadel
Well, Here's the thing. For some reason, I only seem to get spam submissions on the weekend. Normally, I would not have made anything of this, but someone recently pointed out that sometimes spam form submissions are made BY people (not bots). I don't know what kind of person does this, but this w

Re: OT: Hiding email addresses

2006-11-27 Thread Claude Schneegans
>>They have asked me if there is a way to hide the email address better...does anyone have any ideas? 1. put this in your application.cfm: function encodeAddress(a) { return replace(replace(a, "@", "$"), ".", ";", "all"); } function decodeAddress(a) { a.href = a.href.re

RE: Hiding email addresses

2006-11-27 Thread Bobby Hartsfield
Well crap... so the hidden field method is letting spam through now? ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 11:04 AM To: CF-Talk Subject: RE: Hiding email address

OT: iframe question

2006-11-27 Thread Jason Rogoz
i'm working on a site that requires the use of a search page that is hosted on another domain to be embedded within the new site. The plans are to use an iframe to include the search form, however, i need a way to dynamically change the size of the iframe to fit the search results. ~~

RE: RegEx help

2006-11-27 Thread Bobby Hartsfield
But I guess that’s what Ben did heh... ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 9:32 AM To: CF-Talk Subject: RE: RegEx help I say break it up into two different t

RE: Hiding email addresses

2006-11-27 Thread Ben Nadel
Jacob, Also, I have gotten several spam form submissions since my new implementation :( I am going to try and upgrade it to incorporate an idea similar to Michael Dinowitz's... But not quite as complicated as his (IMO). http://www.blogoffusion.com/index.cfm/2006/11/21/AntiForm-Spam-code-test We

RE: RegEx help

2006-11-27 Thread Bobby Hartsfield
You can also still do it in one cfset with Ben's 2 separate expressions... ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 9:32 AM To: CF-Talk Subject: RE: RegEx help I s

Re: SSL Providers

2006-11-27 Thread Rick Root
Ryan Stille wrote: > I've used Thawte in the past and had no problems with them. They are > owned by Verisign, and work in pretty much all browsers I think. > http://www.thawte.com All browsers since IE 3 and Netscape 2. QuickSSL from Geotrust supports all browsers since IE 5 and Netscape 4.51

RE: Hiding email addresses

2006-11-27 Thread Munson, Jacob
Not enough info. Do you really have the email address exposed in the form somewhere? If not, maybe they're getting spam from the form (spam bots)? If it's the latter, you should do something to protect the form. I used to suggest CAPTCHA, but now there are more accessible methods. Ben Nadel has

RE: Hiding email addresses

2006-11-27 Thread Ben Nadel
Convert the email to it's ascii equivalent for the source. So instand of "a" "b", or what have you, have &#XXX; where "XXX" is the ascii number of the character. This makes for strange Source Code, but the browser renders it properly. Sure, spam bots can still find patterns, but in my experience, t

OT: Hiding email addresses

2006-11-27 Thread Jason Rogoz
I have a client where I setup a contact form that emails them the results of a form submission. They are claiming they are receiving more spam now since bots are reading the email address in the page. They have asked me if there is a way to hide the email address better...does anyone have any

Re: SSL Providers

2006-11-27 Thread Will Tomlinson
dave suggested xramp. Seems to be a good one so far. http://www.xramp.com/ Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your

Re: i'm a daddy

2006-11-27 Thread Cutter (CFRelated)
Congrats Russ! Snake wrote: > For the second time :-) > > http://russ.michaels.me.uk/index.cfm/2006/11/26/New-Baby > > -- > > Russ > > > ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-

RE: How do I get number of birthdays?

2006-11-27 Thread Rick Faircloth
Thanks, Andy...that was going to be my next approach. Jim's solution took care of it for me, however... it took care of the need to include the dates the user specified, plus crossing over between years. Rick -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: How do I get number of birthdays?

2006-11-27 Thread Rick Faircloth
Hi, Greg... You're right...and I may just do that since someone in the jQuery community just created a new one that I saw this weekend. Thanks for the tip! Rick -Original Message- From: Greg Morphis [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 9:41 AM To: CF-Talk Subject:

Re: DateAdd in Query Statement

2006-11-27 Thread Jim Wright
sorry...shouldn't have had those #s around the right hand sides. fixed below. Jim Wright wrote: > > You also might want to use the CreateODBCDate function (without the > time)...with the time part, you will have cases where... > > if now() = 11/27/2006 09:46AM and F.filePostDate = 11/6/2006 00

Re: DateAdd in Query Statement

2006-11-27 Thread Jim Wright
Mark Leder wrote: > Outstanding! That was it (the filePostDate value not existing problem). > Thanks Jim and Ryan. > You also might want to use the CreateODBCDate function (without the time)...with the time part, you will have cases where... if now() = 11/27/2006 09:46AM and F.filePostDate = 1

  1   2   >