RE: A good email validator?

2006-11-22 Thread Bobby Hartsfield
I'm pretty sure he was looking for a server side validator. It seems like I've seen that before. Maybe from Jim Davis? Anyway... some good stuff in there. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] S

Re: A good email validator?

2006-11-22 Thread Doug Brown
Another nice one I use. This has several functions. function custRound(x,places){ return (Math.round(x*Math.pow(10,places)))/Math.pow(10,places) } function emailValidate(email, isRequired ){ var required if( isRequired != null ) required = isRequired; else required = "YES"; email.va

web service error..

2006-11-22 Thread Michael Nguyen
I've got an weird error message when trying to consume webservice: coldfusion.jsp.CompilationFailedException: Errors reported by Java compiler: Found 1 semantic error compiling "C:/CFusionMX7/stubs/WS-1056924799/au/com/edi/www/EnterpriseService/UNLOCO.java": 21. this._value = new au.com.edi.ww

RE: Error handling best practices :)

2006-11-22 Thread Phillip B. Holmes
Wow. That’s a shame. --Phil -Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 6:35 PM To: CF-Talk Subject: Re: Error handling best practices :) Oğuz Demirkapı wrote: > Here is a good sample link. :) > > http://www.adobe.com/v1/deve

Re: FCKEditor (Things to watch out for?)

2006-11-22 Thread Rick Root
Claude Schneegans wrote: > >>check CFLIB they have better functions for cleaning that up. > > Thanks, I also have my own Editor and my own clean function, and it is > not optional, it is included > in the standard paste. > > Also, IMO the cleanup should be done on client side, during the pa

RE: cferror on application.cfm not working (?)

2006-11-22 Thread Snake
CF can only have one missing template handler, and it can be used by all sites. So if they have set it as 404.cfm then all you have to do is create a 404.cfm in the root of your site. So just ask HMS what their settings are. Russ -Original Message- From: Michael E. Carluen [mailto:[EMAI

Re: Error handling best practices :)

2006-11-22 Thread Jim Wright
Oğuz Demirkapı wrote: > Here is a good sample link. :) > > http://www.adobe.com/v1/developer/securityzone/securitybulletins.cfm > Interesting that the email address at the bottom to report the error still directs you to [EMAIL PROTECTED] ~~

Re: CFEclipse, RDS and Save As

2006-11-22 Thread Casey Dougall
what the heck is up with their downloads on cfeclipse. You would think they could update this to include the June release by now. Release HistoryStable Builds 1.1.17.2Nov 17 2004 1.2.0

RE: CFEclipse, RDS and Save As

2006-11-22 Thread Andrew Scott
Subversion, has nice plugins for eclipse as well. To add to your environment, even in development you all should be running locally a copy of CF and the environment. The reason being, it is very annoying when someone comes along and breaks some code and interferes with you doing your job. This wa

Re: CFEclipse, RDS and Save As

2006-11-22 Thread Kernal
Hey jacob, Thanks for the reply... I have ideed got a development server environment which we do all our development work on. I have found a way around the issue that I was having which basically involves creating a new file on the server and then copy and paste the parts of the code that I a

Error handling best practices :)

2006-11-22 Thread Oğuz Demirkapı
Here is a good sample link. :) http://www.adobe.com/v1/developer/securityzone/securitybulletins.cfm ~~~ Oğuz Demirkapı TeraTech Inc. | Senior Developer 405 East Gude Dr Suite 207, Rockville, MD 20850, USA Voice: +1 (301) 424-3903 ext 111

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Aaron Roberson
Busting up hysterically... The only possible answer to all this madness is that our friend is schizophrenic. It is common for such to ramble a string of meaningless words together like that. I will consider my thread officially victimized by trolling. -Aaron

RE: cferror on application.cfm not working (?)

2006-11-22 Thread Michael E. Carluen
Thanks for confirming Ray. Anyway, I contacted HMS, and they were able to modify the server's IIS 404 settings to include .cfm templates. > -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 22, 2006 2:33 PM > To: CF-Talk > Subject: Re: cfer

Re: cferror on application.cfm not working (?)

2006-11-22 Thread Josh Nathanson
Wouldn't App.cfm have to be called *after* the requested template -- because CF looks for App.cfm based on the location of the requested page (goes up the hierarchy relative to the requested page). So if the page is missing, it couldn't find App.cfm. Also, if you are on a shared server, isn't

Re: cferror on application.cfm not working (?)

2006-11-22 Thread Raymond Camden
Unfortunately no. At least not as far as I know. On 11/22/06, Michael E. Carluen <[EMAIL PROTECTED]> wrote: > Thanks Ray, Will, Jon, > > For this app, I am currently using HMS on a shared server. This means I do > not have access to the CF Administrator for setting the .cfm missing > template han

Re: Random session drops?

2006-11-22 Thread Neil Middleton
I am on 7.0.1. I should point out that this may not be CF's fault - I am only aware of the symptoms. On 11/22/06, Ali Awan <[EMAIL PROTECTED]> wrote: > > Sorry for the double post. > I forgot to mention that I was running on CF5, and thought that it was a > CF5 only issue. I also hoped that once

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Sounds great! Rick PS - Please don't kill me... :o) -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 3:54 PM To: CF-Talk Subject: RE: Need a favor...quick check to see if anyone can access this site... Heck yeah-- and a whole slew of ima

RE: cferror on application.cfm not working (?)

2006-11-22 Thread Michael E. Carluen
Thanks Ray, Will, Jon, For this app, I am currently using HMS on a shared server. This means I do not have access to the CF Administrator for setting the .cfm missing template handler. And HMS's (control panel) custom error template mgt only catches .htm missing templates. Can the missing templ

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Josh Nathanson
>An unreasonable cake is a cake made by a unreasonable person. >Is a fruitcake a cake made by fruity person? If you've ever tried to eat fruitcake, you too might find it unreasonable. - Original Message - From: "Scott Stroz" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, November

Re: FCKEditor (Things to watch out for?)

2006-11-22 Thread Claude Schneegans
>>check CFLIB they have better functions for cleaning that up. Thanks, I also have my own Editor and my own clean function, and it is not optional, it is included in the standard paste. Also, IMO the cleanup should be done on client side, during the paste, not on the server, otherwise, the edi

Re: cferror on application.cfm not working (?)

2006-11-22 Thread Jon Clausen
Oops didn't mean to dog pile on that response :-) I see Will and Ray already got it covered... On Nov 22, 2006, at 4:33 PM, Jon Clausen wrote: > Michael, > > A template error is thrown before anything else. You'll need to > handle those through your missing template handler - which you can > se

RE: Initializing Objects in Application.cfm

2006-11-22 Thread Dave Watts
> An "air method" is a new term to describe a method without a > description or location of the object used in a demo? > > Like an antidemo demo. Dreamweaver was the method use to > search usage of java which returned with zero hits. > > The whys can be answered too: Because its forbidden to us

Re: cferror on application.cfm not working (?)

2006-11-22 Thread Jon Clausen
Michael, A template error is thrown before anything else. You'll need to handle those through your missing template handler - which you can set in the CFAdmin. Jon On Nov 22, 2006, at 3:58 PM, Michael E. Carluen wrote: > > > On testing it however (by using a .cfm file name that does not

RE: Other simple but powerful editors out there like CF Studio? Dreamweaver 8 nope!

2006-11-22 Thread Munson, Jacob
> I still use Studio 4.5 (true) and I am happy with it > especially when assigning shortcuts to tags and snippets, a > simple feature that DW8 does not offer easily after I > searched everywhere and posted my problems on the forums at > Adobe. I'm late to the thread, but I want to say that cfe

RE: Initializing Objects in Application.cfm

2006-11-22 Thread Dave Watts
> My core complaint is that cfoop is using java terms while not > using java. The word "class" is not exclusively associated with Java. There is nothing wrong with talking about CF components as classes; no one is going to confuse them with Java classes. In OOP-speak, a class is simply a definiti

Re: cferror on application.cfm not working (?)

2006-11-22 Thread Raymond Camden
cferror is for errors that occur within cfm files. To catch a 404 you are going to need to use your web server's error handling or use CF's Missing Template Handler. On 11/22/06, Michael E. Carluen <[EMAIL PROTECTED]> wrote: > Hi everyone. > > > > I am currently adding a basic custom error page on

RE: It's Happened!

2006-11-22 Thread Munson, Jacob
> I just looked at the service, and for 2 personal emails > (hosted at a shared > host) received FALSE. My work email, on the other hand, > returned TRUE. > Assume that the hosting co has incorrectly configured > something, and it > isn't the script (as I am), can this really be used with high

Re: cferror on application.cfm not working (?)

2006-11-22 Thread Will Tomlinson
>On testing it however (by using a .cfm file name that does not exists), I >still see the usual debug page with "Error Occurred While Processing >Request" message and not the error.cfm. You'd need a missing template handler for that type of error. An error request template won't catch it. You'l

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Oğuz Demirkapı
Unfortunate Scott! :-) Scott Stroz wrote: > On 11/22/06, Dan Plesse <[EMAIL PROTECTED]> wrote: > >> An "air method" is a new term to describe a method without a description >> or >> location of the object used in a demo? >> > > > Are you asking if it is a new term to describe a method wi

RE: A good email validator?

2006-11-22 Thread Ian Skinner
I've used this one for quite some time [attached] This list strips attachments. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | - "C code. C code run. Run code run. Please!" - Cynthia Dunn

cferror on application.cfm not working (?)

2006-11-22 Thread Michael E. Carluen
Hi everyone. I am currently adding a basic custom error page on my app with the basic tags: on the application cfm On testing it however (by using a .cfm file name that does not exists), I still see the usual debug page with "Error Occurred While Processing Request" message and not the

CFMX 6.1 Connector Installer Problems

2006-11-22 Thread Gonzo Rock
I am having trouble running the connector for ColdfusionMX 6.1 install onto a RH Enterprise 4 edition of linux. Evertime CF starts it trys to run the connector and fails... with this recongnizable message below. Is there some way to just edit the appropriate file to get coldfusion to recognize a co

RE: RegEx Brain Twister

2006-11-22 Thread Ben Nadel
(\[\]|\(\)|") .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Steve Brownlee [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 3:40 PM To: CF-Talk Subjec

Re: Requests / threads that hang

2006-11-22 Thread Dan Plesse
I like neils response the best. Two areas you can play with are: the VM of the host server. For example I switched java 1.5_09 for Jrun while going retro for CF's VM 1.4_09 and that seemed to work while point to VM locations to other hard drives. java.home=F:/CFusionMX7/runtime/jre and not java.

Re: FCKEditor (Things to watch out for?)

2006-11-22 Thread Richard Dillman
yes the paste from word option blows. It was the primary reason i needed to use it but check CFLIB they have better functions for cleaning that up. On 11/21/06, Claude Schneegans <[EMAIL PROTECTED]> wrote: > > >>I am getting ready to use FCKEditor in an e-commerce application, and > was wondering

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Brad Wood
Heck yeah-- and a whole slew of image manipulation functions built-in too. It even does captchas for you. I've been testing with the Alpha 2 of Scorpio. I would tell you more, but then I would have to kill you. :) I think it will be great out-of-the-box functionality for people in shared hostin

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Nicholas M Tunney
Man, not quite the intelligent response I had expected. Nic Dan Plesse wrote: > An "air method" is a new term to describe a method without a description or > location of the object used in a demo? > > Like an antidemo demo. Dreamweaver was the method use to search usage of > java which returned w

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Andy Matthews
Not necessarily that tag, but it will have built in image manipulation features. http://ray.camdenfamily.com/index.cfm/2006/10/24/ColdFusion-8-Image-Support -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 2:42 PM To: CF-Talk Subject:

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Scott Stroz
On 11/22/06, Dan Plesse <[EMAIL PROTECTED]> wrote: > > An "air method" is a new term to describe a method without a description > or > location of the object used in a demo? Are you asking if it is a new term to describe a method without a description or location of the object used in a demo? I

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
> Talking to them may or may not help, You are right about that...not even writing a tutorial above the upload form field helps. They just do what's most convenient. I'll have to go in a write some code using CFX_JPG to resize the photos as they're displayed. Rick -Original Message- Fr

RE: A good email validator?

2006-11-22 Thread Andy Matthews
I've used this one for quite some time [attached] -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 12:25 PM To: CF-Talk Subject: A good email validator? I'm lookin' for a decent email validator. No need to make sure the email add. is

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Yeah, I've been resizing photos on the fly for years...it's really great since I work with a lot of images, especially client uploaded images. They will inevitably upload a 1280 pixel wide photo for a 135 pixel wide space. And then they want to know why their site is slowing down. :oP Rick

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Bobby Hartsfield
Just incase you've been in a cave and haven’t heard me say this before, I'll say it again... ImageCR3 is the greatest image manipulation component available to CF :-) Good choice. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Rick Faircl

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
So, CF 8 will have a CFImage tag, huh? Rick -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 3:08 PM To: CF-Talk Subject: RE: Need a favor...quick check to see if anyone can access this site... Well heck, if you are waiting for CF 8 you can

timeout errors cfdirectory

2006-11-22 Thread Seamus Campbell
Hi I'm hoping someone can help me. I have a directory with about 9000 images in it. I have to find out which images are 100 pixels wide, which are GT 100 px but LT 120 px wide and which ones are LT 100, then display them in a printable report. (Most of the images LT 120 pixels wide are LT 12

RegEx Brain Twister

2006-11-22 Thread Steve Brownlee
Usually have a good handle on regular expressions, but this one's got me boggled. What I need to capture is if one of the following three literal groups is in a string 1. () 2. [] 3. " Strangest thing, though. With this pattern (\(\))(\[\])" I matches the entire string ()[]" and puts it

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Thanks, Bobby... Rick -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 3:09 PM To: CF-Talk Subject: RE: Need a favor...quick check to see if anyone can access this site... C:\WINDOWS\system32\drivers\etc\hosts ...:.:.:.:.:.:.:.:.:.

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
> So that you can add in scripts to resize your client's images on the fly as > they upload or as you display them... Is that native to CF 7 or does it require Image CFC? Rick -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 3:08 PM T

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
I'll probably be going with Efflare's CR 3 for that. They've reduced the price and I've been using CFX_JPG for several years now and it's great. Too bad they don't still offer it. Rick -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 2

Re: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Josh Nathanson
> Yikes! I just noticed one of the photo was 1.5 MB for a > 180x135 photo...I've got to talk to this client about how to > resize photos. HOO DOGGY! That is *brutal*. Talking to them may or may not help, resizing photos is more complicated task than most laypeople want to deal with - once you

Re: Push dynamic text file to the browser

2006-11-22 Thread Jeff Chastain
I just assumed it would mess up the text content some how, but after a quick test it appears to work. I will see what I can do with this. Thanks for the help. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of ha

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Ray Champagne
Seeing your other email about CFX_JPG, I take this back. I forgot that you *could* do this prior to MX. I wasn't exactly at that level when I started CF around 4.5. HoF is really messing with email again lately, they are coming in really slow, and all out of order again. Must be getting more me

RE: Push dynamic text file to the browser

2006-11-22 Thread Ben Nadel
You could Convert the text to base64 and then convert that to binary. That might work? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Jeff Chastain [mailto:[EMAIL

RE: Initializing Objects in Application.cfm

2006-11-22 Thread Brad Wood
Dude, I think you meant to post to the CF-philosophy thread. :) ~Brad -Original Message- From: Dan Plesse [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 2:11 PM To: CF-Talk Subject: Re: Initializing Objects in Application.cfm An "air method" is a new term to describe a me

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Bobby Hartsfield
C:\WINDOWS\system32\drivers\etc\hosts ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 3:04 PM To: CF-Talk Subject: RE: Need a favor...quick check to see if anyone

Re: Push dynamic text file to the browser

2006-11-22 Thread Jeff Chastain
In answer to your questions, I am running CFMX 7. I looked at the variable attribute on the cfcontent tag, but it appears to be for binary content only. I am just working with a text string and text file, so even though this is simpler (plain ASCII), it does not appear to work with the variabl

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Dan Plesse
An "air method" is a new term to describe a method without a description or location of the object used in a demo? Like an antidemo demo. Dreamweaver was the method use to search usage of java which returned with zero hits. The whys can be answered too: Because its forbidden to use java because s

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Brad Wood
Well heck, if you are waiting for CF 8 you can just use the cfimage tag! ~Brad -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 2:02 PM To: CF-Talk Subject: RE: Need a favor...quick check to see if anyone can access this site... And...

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Yeah, those photos on the right are pulled at random from a user-maintained photo gallery. I use CFX_JPG from Efflare to resize photos on most of my sites, but this one was built prior to CFX_JPG use. Yikes! I just noticed one of the photo was 1.5 MB for a 180x135 photo...I've got to talk to th

RE: A good email validator?

2006-11-22 Thread Bobby Hartsfield
There are top level domains longer than 2-4 characters ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 2:47 PM To: CF-Talk Subject: RE: A good email validator? ^[a-zA-Z](

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Ray Champagne
So that you can add in scripts to resize your client's images on the fly as they upload or as you display them... > -Original Message- > From: Rick Faircloth [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 22, 2006 3:02 PM > To: CF-Talk > Subject: RE: Need a favor...quick check to se

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Yeah...their firewall could be an issue...or perhaps they've accidentally blocked the site...but this is happening on both computers that run on their internal network...(it's a really big business!) And where would I find a host file on a Win XP machine? Rick -Original Message- From: Bo

RE: A good email validator?

2006-11-22 Thread Snake
^[a-zA-Z]([.]?([[:alnum:]_-]+)*)?@([[:alnum:]\-_]+\.)+[a-zA-Z]{2,4}$ Russ -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: 22 November 2006 18:25 To: CF-Talk Subject: A good email validator? I'm lookin' for a decent email validator. No need to make sure the email

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
And...what would that reason be...what's this got to do with 4.5? (I just mention I'm on 4.5 to avoid the "perhaps you CFC, etc..." But...I will say I'm waiting for CF 8! Rick -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 2:24 PM To:

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
They're not on UUNet...they're on the same ISP I am and the domain name hasn't changed either...thanks for the suggestions, however. Rick -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 2:15 PM To: CF-Talk Subject: Re: Need a favor...q

RE: Push dynamic text file to the browser

2006-11-22 Thread Ben Nadel
If you are using CFMX 7, there should be a "variable" attribute for CFContent. Then just use CFHeader the same way you would normally (forcing the attachment). If you are doing it pre-MX7... You might want to try it like you are using a standard binary object: http://www.bennadel.com/index.cfm

Re: A good email validator?

2006-11-22 Thread Will Tomlinson
Bobby hookled me up as usual... do this do that Thanks! Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four t

Push dynamic text file to the browser

2006-11-22 Thread Jeff Chastain
In the past, I have used a combination of cfcontent and cfheader to push a file from the file system to the user in the form of an open/save as pop-up box. I am looking to do that same thing with a text file now, but the content of that text file is in a variable and not a file on the file syst

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Joshua Cyr
Have them ping the domain. What IP is it trying to hit? Is it the right IP? Joshua Cyr Savvy Software 866.870.6358 www.besavvy.com -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 2:09 PM To: CF-Talk Subject: RE: Need a favor...quic

Re: Random session drops?

2006-11-22 Thread Ali Awan
Neil, I have had that problem too. I don't count myself as a newbie developer, as I've been coding in CF for almost 10 years. It's only in my current job that I have seen it happen. And it happens like once every blue moon. Not frequently, but when it does, there's no explanation for it. It

Re: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Josh Nathanson
It looks like it is the pictures that are slow. Too bad you're not using CFMX, you could fire up Rick Root's imageCFC and resize the photos for them when they upload. (I think it can do that, from what I hear on this list) -- Josh - Original Message - From: "Rick Faircloth" <[EMA

A good email validator?

2006-11-22 Thread Will Tomlinson
I'm lookin' for a decent email validator. No need to make sure the email add. is deliverable, just the string is formatted correctly. IsValid() is no good because too much slips thru. I checked cflib.org and didnt see anything with a quick search. Anybody have a regex or somethin? Thanks, Will

Re: Random session drops?

2006-11-22 Thread Ali Awan
Sorry for the double post. I forgot to mention that I was running on CF5, and thought that it was a CF5 only issue. I also hoped that once we upgrade to MX 7 or Scorpio, that it will go away. What version of CF are you running? If it's 7 or above, then looks like the problem won't go away, si

Re: Spry Dataset not sorting

2006-11-22 Thread Raymond Camden
Nothing stands out. I'd ditto Massimo - can we see the XML? On 11/22/06, Chad McCue <[EMAIL PROTECTED]> wrote: > When I run it with debugging on it shows a box with this. It is the same > every time I click the sorting column. > > Generated region markup for 'Recruitment_Div': > > cellpadding="0"

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Bobby Hartsfield
You could put this in the host file of one of the machines that cannot access it. 66.79.46.138 www.huntdsp.com Save the file and open a fresh browser and try to access www.huntdsp.com (don’t forget the www) If they can get there with that, then it is most likely a DNS problem and you know where

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Ray Champagne
Ha ha - Rick, it looks like all conversations lead back to this same subject with you...but now you have officially found a good reason to upgrade your CF from 4.5. :) > -Original Message- > From: Rick Faircloth [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 22, 2006 2:10 PM > To:

RE: report builder

2006-11-22 Thread Tim Do
Nobody knows what the future holds for this product?? -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 21, 2006 8:44 PM To: CF-Talk Subject: Re: report builder I prefer cyrstal reports over the report builder, only because I can do more in CR tha

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Thanks, Josh...pictures slow to load or the site in general? Rick -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 1:58 PM To: CF-Talk Subject: Re: Need a favor...quick check to see if anyone can access this site... Rick, comes up for

Re: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Josh Nathanson
Hey Rick, This site is tremendously helpful in checking out dns issues: http://www.dnsstuff.com/ I only saw one ISP that had your domain cached, it was UUNet, and the ip they have cached is 66.79.46.138 So if by some weird coincidence they are on UUNet, and you have a new ip for the domain, thi

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Bobby Hartsfield
I can see it fine in NC on Roadrunner Server: dns-cac-lb-01.southeast.rr.com Address: 24.25.5.150 Non-authoritative answer: Name:huntdsp.com Address: 66.79.46.138 Aliases: www.huntdsp.com ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message-

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Thanks, Will... -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 12:40 PM To: CF-Talk Subject: Re: Need a favor...quick check to see if anyone can access this site... Comin up just fine here Rick. Will ~~~

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Dan Plesse
My core complaint is that cfoop is using java terms while not using java. Then I listed the power features of java within a single class (the class object) and thus coldfusion gains without any outside help etc 1. compile classes 2. use of reflection 3. decomplie classes. These are the valuable in

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
> I would have them try to get to your > server via IP some how and confirm if it is network or DNS related. I thought about trying that, but I host multiple sites via host headers and the site folders are outside the root folder, so I'm not sure how to access the sites via IP anymore. I used to

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
The sites been up for years...can't figure out why they can't access it. Thanks for suggestions on the possible solutions. How would I check for a cached copy of DNS or errant host file entry? Rick -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
They upload their own photos and haven't learned how or the value of resizing their original photos, yet. Guess I need to code that for them... Rick -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 1:50 PM To: CF-Talk Subject: RE: Need a

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Thanks, Randy... -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 1:50 PM To: CF-Talk Subject: RE: Need a favor...quick check to see if anyone can access this site... No problem here in Virginia

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Thanks, Sandra... -Original Message- From: Sandra Clark [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 1:48 PM To: CF-Talk Subject: RE: Need a favor...quick check to see if anyone can access this site... Dorchester Shooting Preserve is coming up for me Sandra Clark =

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Ray Champagne
Rick, it works fine for me too. However, the images on the RHS are ridiculously slow to load for their size on the page. Are you resizing them via javascript? It looks like they are actually coming into the page at around 1300 X 1000 pixels! Anyways, just FYI. The site popped right up, no dela

Re: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Josh Nathanson
Rick, comes up for me no problem, although it's a bit sluggish. I'm on Speakeasy ISP in San Francisco. -- Josh - Original Message - From: "Rick Faircloth" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, November 22, 2006 10:32 AM Subject: Need a favor...quick check to see if anyon

Re: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Will Tomlinson
Comin up just fine here Rick. Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauth

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Scott Stroz
Dan, Why would 'dreamweaver' be in the code? Why would 'java' be in the code? What is an 'air method'? And what are you trying to say is 'strictly forbidden'? Using an objectFactory, not using an objectFactory, stoning someone who uses an objectfactory, or stoning someone who uses an objectFactor

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Thanks, Kevin, for the check and the suggestion. Rick -Original Message- From: Kevin Aebig [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 1:46 PM To: CF-Talk Subject: RE: Need a favor...quick check to see if anyone can access this site... I can bring up the site quite easi

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Joshua Cyr
Did the DNS change recently? It could be cached for them or their ISP could be blocking IP's. I have had a few times where the client domain was hosted with their ISP. They moved the domain to our servers and we took control of DNS. Everyone could see it but them. Their ISP wouldn't remove th

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Ian Skinner
Worked for me, slow, but worked. I'm still downloading one of the pictures. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | - "C code. C code run. Run code run. Please!" - Cynthia Dun

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Adkins, Randy
No problem here in Virginia -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 1:32 PM To: CF-Talk Subject: Need a favor...quick check to see if anyone can access this site... Hi, all. I've got a client who cannot access any sites from

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Brad Wood
I can access it. Is the domain new? The name servers may not have propagated. They could be on a LAN with a cashed copy of DNS, or they could have an errant host file entry... ~Brad -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 1

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Sandra Clark
Dorchester Shooting Preserve is coming up for me Sandra Clark == http://www.shayna.com Training in Cascading Style Sheets and Accessibility -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 1:32 PM To: CF-T

RE: Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Kevin Aebig
I can bring up the site quite easily. They might want to check that their ISP isn't causing any problems... !k -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 12:32 PM To: CF-Talk Subject: Need a favor...quick check to see if anyone ca

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Nicholas M Tunney
I'm curious as to why you think cFoop is wrong as well. Nic Aaron Roberson wrote: > Dan, > > You keep referring to stuff that may or may not be on another thread. > "my AJAX and CF analogy" and "my JODE example." I really don't have a > clue what you are talking about and why you think that cfoop

Need a favor...quick check to see if anyone can access this site...

2006-11-22 Thread Rick Faircloth
Hi, all. I've got a client who cannot access any sites from my webserver. They have one business website and one web app and cannot access either. However, they can access anything else on the web. Others can access the site, but they can't . Just checking on access in various places. If you

  1   2   >