RE: Employee Satisfaction

2006-11-22 Thread David Low
From: Snake [mailto:[EMAIL PROTECTED] Sent: 21 November 2006 16:26 To: CF-Talk Subject: RE: Employee Satisfaction I actually have found that being too friendly with your staff doesn't work very well. People generally don't want to be mates with their boss and wont relax with you, and

Re: It's Happened!

2006-11-22 Thread Tom Chiverton
On Tuesday 21 November 2006 23:45, Paul Boyd wrote: on valid email addresses. Oh well, I thought the idea was neat, but obvioulsy the service needs to be ironed out. At the end of the day it's impossible for a remote server to tell. I may, for instance, configure my mail server to accept email

Re: SOT: textfields on submit

2006-11-22 Thread Tom Chiverton
On Thursday 16 November 2006 20:30, Turetsky, Seth wrote: So when CF gets it, would 1a and 1b always be the first values of the lists, and 2a and 2b would be the 2nd...and so, or is that assuming too much? And is that browser dependent? Although browsers tend to send back form fields in the

Re: IIS 7.0 Vista

2006-11-22 Thread Tom Chiverton
On Tuesday 21 November 2006 16:35, Brian Peddle wrote: Anyone have any success in setting up CF 7.02 on IIS 7.0? I'll be posting detailed instructions tonight. If you can't wait till then, drop me a bell off-list. -- Tom Chiverton Helping to preemptively bully essential portals

DB Server Issues

2006-11-22 Thread James Smith
Some time ago the MySQL Server and CF sat on the same machine. About 8 months ago we moved it onto a separate machine and ever since then we occasionally get the message... [Macromedia][SequeLink JDBC Driver][ODBC Socket][MySQL][ODBC 3.51 Driver][mysqld-4.1.21-community-nt]MySQL server has gone

Country Name Case

2006-11-22 Thread RichL
Hi Guys I have a country reference table where all of the country names are held in upper case. I want to be able to output in lower case but keep the caps where appropriate (e.g. UNITED KINGDOM to United Kingdom). However I think that this going to be close to impossible as there are values

Re: Country Name Case

2006-11-22 Thread Rob Wilkerson
On 11/22/06, RichL [EMAIL PROTECTED] wrote: Also, is there a UDF around for capitalising the first letter of each word? Take a look at initCapTitle() (I think that's the function name) at cflib.org. It won't be exact, but it'll get you pretty close.

Re: Country Name Case

2006-11-22 Thread RichL
Thank you very much Rob I found CapFirstTitle() which looks like it may be useful On 11/22/06, Rob Wilkerson [EMAIL PROTECTED] wrote: On 11/22/06, RichL [EMAIL PROTECTED] wrote: Also, is there a UDF around for capitalising the first letter of each word? Take a look at initCapTitle() (I

Re: Country Name Case

2006-11-22 Thread Gert Franz
You could do something like this. I did not test it though: cfset lstCountry =countryFromDB!--- keeps the names in capital letters --- cfset replaceCountry =lstCountry!--- here the names will be replaced --- cfloop list=#lstCountry# index=lst delimeters=. /( !--- Place all separators in the

[Reply To] Country Name Case

2006-11-22 Thread Seamus Campbell
CF_Capitalize is very good. Seamus You wrote Hi Guys I have a country reference table where all of the country names are held in upper case. I want to be able to output in lower case but keep the caps where appropriate (e.g. UNITED KINGDOM to United

CFUnit/ANT

2006-11-22 Thread Neil Middleton
I'm just getting into using CFUnit with the ANT integration (lazy developers are a PITA). Trouble is, we are developing against a shared server - so when I run my Ant script from my local machine I get an error saying that the build failed because it can't locate CFUnit. I'm guessing this is

Re: CFUnit/ANT

2006-11-22 Thread Neil Middleton
Why is it everytime I post a problem I solve it two minutes later. The issue is that CFUnit only appears to work if it's at the top of the classpath dialog. Without this it seems to fall on it's backside. Neil On 11/22/06, Neil Middleton [EMAIL PROTECTED] wrote: I'm just getting into using

Zip code locator

2006-11-22 Thread Doug Brown
I am needing to implement a search within X miles of zipcode feature on my websire, and was wondering if someone knows of an open source solution. Thanks in advance Doug B. ~| Introducing the Fusion Authority Quarterly

Re: Zip code locator

2006-11-22 Thread Will Tomlinson
I am needing to implement a search within X miles of zipcode feature on my websire, and was wondering if someone knows of an open source solution. Talk to dave the disruptor. He knows zip code locators inside and out! Will

Re: Zip code locator

2006-11-22 Thread Charles Sheehan-MIles
Hi Doug, I have a zip code locator built into the CMS I'm working on. Feel free to grab the code: http://activecharity.riaforge.org -- unzip the file and find the file /members/profilesearch.cfm. A more or less working version of it is here:

Re: Getting all CFCASE values from a file

2006-11-22 Thread Pete Ruckelshaus
Thanks Bobby, I tried that and it didn't do quite what I was hoping. It did parse out the values from the cfcase statements, but it also left all of the other code from the CF template (i.e. all I wanted left at the end was the attribute values from the CFCASE statements). Here's my code:

Re: Zip code locator

2006-11-22 Thread Charles Sheehan-MIles
Also take a look at: http://www.webmonkey.com/webmonkey/05/32/index4a.html?tw=programming I based my zip code search right out of this article. On 11/22/06 8:19 AM, Charles Sheehan-MIles [EMAIL PROTECTED] wrote: Hi Doug, I have a zip code locator built into the CMS I'm working on. Feel

Re: Zip code locator

2006-11-22 Thread Doug Brown
Thanks. Actually I just found one at http://coldfusion.sys-con.com/read/154258_1.htm Pretty interesting. I know I could not build one myself, since I know nothing about the math used to get it done. Doug B. - Original Message - From: Will Tomlinson [EMAIL PROTECTED] To: CF-Talk

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Scott Stroz
Aaron, Functionally, there really is no difference between using the object factory the way we did and instantiating an object in the application scope as you are suggesting. When a variable, or object, is passed 'by reference', it simply means that a new instance of the variable or object is

RE: Country Name Case

2006-11-22 Thread Andy Matthews
You could do a test and cap the first letter of any word 4 letters or longer. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: RichL

imap.cfc

2006-11-22 Thread Rick Root
Anyone using imap.cfc out there? http://sourceforge.net/projects/cfimap-cfc/ Rick ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to

Re: Country Name Case

2006-11-22 Thread Tom King
There's a CFC called titlecase.cfc on cflib.org which is usually used for names (i.e recognises von, de as small etc..) You may be able to alter it to suit your needs T On 22 Nov 2006, at 14:06, Andy Matthews wrote: You could do a test and cap the first letter of any word 4 letters or

Re: imap.cfc

2006-11-22 Thread Yves Arsenault
Neat, I didn't know it existed. I might use it soon... ;-) Yves On 11/22/06, Rick Root [EMAIL PROTECTED] wrote: Anyone using imap.cfc out there? http://sourceforge.net/projects/cfimap-cfc/ Rick ~| Introducing the

Re: Country Name Case

2006-11-22 Thread Tom King
Correction, its not on there, author was http://artlung.com but I can't seem to find it on there. Well, I have a copy if you want a look see T On 22 Nov 2006, at 14:16, Tom King wrote: There's a CFC called titlecase.cfc on cflib.org which is usually used for names (i.e recognises von, de as

Re: DB Server Issues

2006-11-22 Thread Tom Chiverton
On Wednesday 22 November 2006 10:47, James Smith wrote: [Macromedia][SequeLink JDBC Driver][ODBC Socket][MySQL][ODBC 3.51 Driver][mysqld-4.1.21-community-nt]MySQL server has gone away Turn off persistant connections. Is there any way to get around this, would changing from ODBC to JDBC help

Re: Country Name Case

2006-11-22 Thread RichL
Thanks guys CapsFirstTitle() from CFLib seems to be working out well for me... a couple of minor tweaks but otherwise great On 11/22/06, Tom King [EMAIL PROTECTED] wrote: Correction, its not on there, author was http://artlung.com but I can't seem to find it on there. Well, I have a copy if

Identifying date/time objects

2006-11-22 Thread Charles Sheehan-MIles
I have a page which allows the user to select a custom query and download a CSV. The relevant code is: cfsetting enablecfoutputonly=yes CFHEADER NAME=Content-Disposition VALUE=attachment; filename=#session.MM_Username##LSTimeFormat(Now(),'hhmmmss')#.csv CFCONTENT TYPE=application/excel

Re: imap.cfc

2006-11-22 Thread Rick Root
Yves Arsenault wrote: Neat, I didn't know it existed. I might use it soon... I'm thinking about building a Flex-based webmail app. rick ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,

Re: Identifying date/time objects

2006-11-22 Thread Will Tomlinson
cfif IsDate(thisfield) #DateFormat(blahblah)# cfelse whatever /cfif Would that work? Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers,

Re: Identifying date/time objects

2006-11-22 Thread Will Tomlinson
Or maybe you'd needta extract that date out first with a ListFirst()? cfset dateOnly = ListFirst(thisfield, ) cfif isValid(dateOnly) Show this cfelse show that /cfif ?? Will ~| Introducing the Fusion Authority Quarterly

Re: javascript confirm

2006-11-22 Thread Tom Chiverton
On Tuesday 21 November 2006 20:55, Charlie Griefer wrote: CF is server side. JS is client side. It never ceases to make me scratch my head that people can start using the one or the other without coming across this fundamental difference. -- Tom Chiverton Helping to augmentatively expedite

Re: MySQL Datasource error

2006-11-22 Thread Cutter (CFRelated)
Also, make sure port 3306 (or whatever your MySQL is using) is open on your firewall, if there is one on the CF machine (or one between your CF and MySQL). Cutter _ http://blog.cutterscrossing.com Steven Erat wrote: In short, the problem is Connection refused when attempting

Random session drops?

2006-11-22 Thread Neil Middleton
Has anyone had any experience of CF seemingly randomly dropping sessions? I running in a single server config here. -- Neil Middleton Visit feed-squirrel.com ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Re: Identifying date/time objects

2006-11-22 Thread Charles Sheehan-MIles
I just slapped myself on my forehead, thank you. This worked fine: cfoutput query=rsList cfloop index=thisfield list=#fieldlist# cfif IsDate(evaluate(#thisfield#)) #lsdateformat(evaluate(#thisfield#), mm/dd/)# cfelse #evaluate(#thisfield#)# /cfif, /cfloop#CHR(13)# /cfoutput On

Re: javascript confirm

2006-11-22 Thread Dan Vega
Yes indeed, I had a very long day yesterday and I was losing my mind. Sorry for the dumb question!! On 11/22/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 21 November 2006 20:55, Charlie Griefer wrote: CF is server side. JS is client side. It never ceases to make me scratch my head

Re: OT: Employee Satisfaction

2006-11-22 Thread Jon Clausen
No problem, Teddy. If you liked that article, here's a bit more background on the book I referenced: http://gmj.gallup.com/book_center/FBATR/default.aspx Regards, Jon On Nov 21, 2006, at 10:52 PM, Teddy Payne wrote: That article in an interesting read. Thanks Jon. Teddy On 11/21/06,

Re: Identifying date/time objects

2006-11-22 Thread RichL
Will, It looks like isDate() will do what you need - to see if the string can be converted to a date You might want to look at parseDateTime() which will create a date object from the date string.. may or may not be of any use cfset test = 2006-02-11 00:00:00.0 cfoutput#parseDateTime(test)# |

Wrong error message under CF5

2006-11-22 Thread Claude Schneegans
Hi, I have an application on a CF5 server which traps and logs errors with some CFERROR template. I have noticed that when an error occurs in a template which has some function definition in a CFSCRIPT tag, say myFunction (), whatever the error is, even a syntax error, the error message is

Spry Dataset not sorting

2006-11-22 Thread Chad McCue
I have a dataset that displays correctly but doesn't seem to sort when I use onclick=dsRecruitments.sort('country'); anyone know where in the SPRY JS I can put some alerts where the sorting should be happening. I have 3 pages each showing different datasets. Only one page will sort the rest will

Re: Spry Dataset not sorting

2006-11-22 Thread Raymond Camden
Could it be a case issue? Maybe sort on COUNTRY instead. You can turn on Spry Debugging and it may help. On 11/22/06, Chad McCue [EMAIL PROTECTED] wrote: I have a dataset that displays correctly but doesn't seem to sort when I use onclick=dsRecruitments.sort('country'); anyone know where in the

replace syntax issue

2006-11-22 Thread coldfusion . developer
Why isn't this working? cffile action=read file=http://www.site.com/StoreLocator/Store_page.txt; variable=page_content CFSET get_page = replace(page_content, img src=http://productlocator.site.com/productlocator/resources/9/KEGP/header_02.gif; width=242 height=75, ) Error: Missing argument

RE: Spry Dataset not sorting

2006-11-22 Thread Chad McCue
How is SPRY debugging turned on? Suppose to be a certain cap to make sorting work? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 10:33 AM To: CF-Talk Subject: Re: Spry Dataset not sorting Could it be a case issue? Maybe sort on

RE: replace syntax issue

2006-11-22 Thread Ian Skinner
CFSET get_page = replace(page_content, img src=http://productlocator.site.com/productlocator/resources/9/KEGP/header_02.gif; width=242 height=75, ) You need some quotes around your img string. CFSET get_page = replace(page_content, 'img

RE: Getting all CFCASE values from a file

2006-11-22 Thread Bobby Hartsfield
cffile action=read file=d:\webroot\testing\www\test2.html variable=myvar / cfset myvar = rereplacenocase(myvar, 'cfcase value=(.*?).*?/cfcase', \1, all) / cfset myvar = rereplacenocase(myvar, .*?cfswitch.*?(.*?)/cfswitch.*, \1) / cfset myvar = rereplacenocase(myvar, cfdefaultcase.*?/cfdefaultcase,

RE: Wrong error message under CF5

2006-11-22 Thread Dave Watts
I have an application on a CF5 server which traps and logs errors with some CFERROR template. I have noticed that when an error occurs in a template which has some function definition in a CFSCRIPT tag, say myFunction (), whatever the error is, even a syntax error, the error message is

How can I make this query run correctly?

2006-11-22 Thread Rick Faircloth
Good morning, all. I'm having to directly query a MySQL database for a client because they can't access their web app on my server. I'm trying to get clients' whose birthdates fall with a date range. I've tried variations, with no success in returning *any* results. the latest version of the

Re: replace syntax issue

2006-11-22 Thread Jochem van Dieten
coldfusion.developer wrote: Why isn't this working? cffile action=read file=http://www.site.com/StoreLocator/Store_page.txt; variable=page_content The file attribute of cffile requires a path, not a URL. CFSET get_page = replace(page_content, img

Re: Spry Dataset not sorting

2006-11-22 Thread massimo
I have a dataset that displays correctly but doesn't seem to sort when I use onclick=dsRecruitments.sort('country'); Can you put something online? It doesn't have to be live, even a static XML file plus the HTML would be okay. anyone know where in the SPRY JS I can put some alerts where the

RE: How can I make this query run correctly?

2006-11-22 Thread Ian Skinner
Is it a date formatting issue? Is so, what is the date date format MySQL could read? Thanks for any help! Is it a date field or a text field? If it is a date field try the createODBCDate() function. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA

Re: Wrong error message under CF5

2006-11-22 Thread Tom Chiverton
On Wednesday 22 November 2006 15:14, Claude Schneegans wrote: Has anyone found a cure for that? Does you global error template include other things that might be confusing it ? -- Tom Chiverton Helping to revolutionarily repurpose turn-key niches

Re: How can I make this query run correctly?

2006-11-22 Thread Tom Chiverton
On Wednesday 22 November 2006 15:46, Rick Faircloth wrote: from clients where Client_Birthdate = '2006-11-27' and Client_Birthdate = '2006-12-31' where client_birthdate between cfqueryparam value=#dateOne# ... and cfqueryparam value=#dateTwo# ... Between is a handy SQL shortcut, and the

Re: javascript confirm

2006-11-22 Thread Tom Chiverton
On Wednesday 22 November 2006 14:51, Dan Vega wrote: Yes indeed, I had a very long day yesterday and I was losing my mind. Sorry for the dumb question!! Heh, we've all done it, no worries :-) -- Tom Chiverton Helping to administratively monetize eligible web-readiness

RE: How can I make this query run correctly?

2006-11-22 Thread Rick Faircloth
Never mind...figured out that I needed to leave off the year to get birthdates...years don't matter... Thanks... Rick -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 10:47 AM To: CF-Talk Subject: How can I make this query run

Re: Spry Dataset not sorting

2006-11-22 Thread Raymond Camden
Add this: Spry.Data.Region.debug = true; On 11/22/06, Chad McCue [EMAIL PROTECTED] wrote: How is SPRY debugging turned on? Suppose to be a certain cap to make sorting work? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 10:33 AM

Re: How can I make this query run correctly?

2006-11-22 Thread Jim Wright
Rick Faircloth wrote: Good morning, all. I'm having to directly query a MySQL database for a client because they can't access their web app on my server. I'm trying to get clients' whose birthdates fall with a date range. I've tried variations, with no success in returning *any*

cfhttp - column name is invalid - huh?

2006-11-22 Thread coldfusion . developer
My syntax is correct yet I'm getting this error. Maybe I just a second pair of eyes to look at this. Thanks. Code CFIF ISDEFINED (FORM.client_family_id) CFHTTP url=http://productlocator.site.com/productlocator/resources/9/KEGP/keg.pli; method=post name=keg cfhttpparam name=clientid

Re: cfhttp - column name is invalid - huh?

2006-11-22 Thread Jim Wright
[EMAIL PROTECTED] wrote: My syntax is correct yet I'm getting this error. Maybe I just a second pair of eyes to look at this. Thanks. Code CFIF ISDEFINED (FORM.client_family_id) CFHTTP url=http://productlocator.site.com/productlocator/resources/9/KEGP/keg.pli; method=post name=keg

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Aaron Roberson
Scott, That definitely helps! -Aaron On 11/22/06, Scott Stroz [EMAIL PROTECTED] wrote: Aaron, Functionally, there really is no difference between using the object factory the way we did and instantiating an object in the application scope as you are suggesting. When a variable, or

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Dan Plesse
I download the zip and did a quick search for keyword java and dreamweaver and it returned 0 of 18 documents and all the set() methods are air methods should be object.setmethod(). I guess its to hide stuff. And not using objectFactory is like throwing rocks back at the people who are trying to

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Aaron Roberson
On 11/22/06, Dan Plesse [EMAIL PROTECTED] wrote: I download the zip and did a quick search for keyword java and dreamweaver and it returned 0 of 18 documents and all the set() methods are air methods should be object.setmethod(). I guess its to hide stuff. And not using objectFactory is like

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Dan Plesse
You forgot Air Methods, unreasonable cake and strictly forbidden. On 11/22/06, Aaron Roberson [EMAIL PROTECTED] wrote: On 11/22/06, Dan Plesse [EMAIL PROTECTED] wrote: I download the zip and did a quick search for keyword java and dreamweaver and it returned 0 of 18 documents and all

RE: How can I make this query run correctly?

2006-11-22 Thread Rick Faircloth
Thanks, Jim...Got it figured out...I was running a query directly against MySQL DB with using CF. No results were being returned because I had the year included and no customers have been born for my client since the dates, 2006-11-27 to 2006-12-03, have even occurred yet! :oP Rick

RE: How can I make this query run correctly?

2006-11-22 Thread Rick Faircloth
Thanks, Tom...the use of between may solve one problem I had with the actual working of the app, which was when the user would ask for birthdates on or between two dates (month and day) that spanned a month, no results would be returned. However, wouldn't between only dates actually between two

RE: How can I make this query run correctly?

2006-11-22 Thread Rick Faircloth
This question was originally asked to solve a problem when I directly queried a MySQL database...however, the query is built into a web app for one of my customer that doesn't work properly. The user is sending out birthday cards to clients and needs to know what clients have birthdates between,

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Dan Plesse
Even cfoop.org is all wrong. Creating a Class in ColdFusion That's more about creating components in CF. The class object in coldfusion is the most powerful object because it can create almost any object just like createObject() via forName(), reflection for object inspection (think cfdump) ,

Re: CFQUERYPARAM stripping characters..why?

2006-11-22 Thread Cameron Johnson
I'm not sure of the specifics, but to troubleshoot, I'd test it by removing the CFQUERYPARAM and doing the insert. If it is still stripping the characters, it's not CFQUERYPARAM. It's either the form or the DB. Hope that helps, at least a little bit. Cameron I have this code... insert

RE: cfhttp - column name is invalid - huh?

2006-11-22 Thread Andy Matthews
Try taking off the name attribute from the cfhttp call. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: How can I make this query run correctly?

2006-11-22 Thread Ian Skinner
If the requested earliest and latest dates fall within the same month, everything run well...but, if two months are spanned, no results are returned. Why? Rick Here is a query that we use to find birthdays for the next 28 days on our intranet. This may not be the most elegant solution, but

Re: Random session drops?

2006-11-22 Thread Josh Nathanson
A lot of time it seems random, but digging further reveals a sensible reason for dropped sessions. What sort of other symptoms do you see when it happens? Who is it happening to? People can have cookies blocked on their LAN for example. -- Josh - Original Message - From: Neil

RE: Spry Dataset not sorting

2006-11-22 Thread Chad McCue
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': table id=Recruitment_Table class=datagrid border=0 cellpadding=0 cellspacing=0 width=100% tbodytr class=FormBar th

Re: Wrong error message under CF5

2006-11-22 Thread Claude Schneegans
Are you sure you don't have the function defined twice? Definitely sure. This was the first thing I verified. And it happens with any template that has a function defined in it. -- ___ REUSE CODE! Use custom tags; See

RE: Country Name Case

2006-11-22 Thread Phillip B. Holmes
Here you go Rich. This may be of some use to you. http://www.phillipholmes.com/?p=112 Warmest Regards, Phillip B. Holmes http://www.phillipholmes.com - -Original Message- From: RichL [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 5:03 AM To: CF-Talk Subject:

Re: Initializing Objects in Application.cfm

2006-11-22 Thread Aaron Roberson
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.org is all wrong. Are you just trolling or do you have some valuable input that we should be

RE: replace syntax issue

2006-11-22 Thread Bobby Hartsfield
If you need to read content from a URL, use cfhttp not cffile. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 10:36 AM To: CF-Talk Subject: replace syntax

Re: Random session drops?

2006-11-22 Thread Neil Middleton
Generally it seems to be happening across all our apps, and with users that have previously logged in fine, and logged in OK since. N On 11/22/06, Josh Nathanson [EMAIL PROTECTED] wrote: A lot of time it seems random, but digging further reveals a sensible reason for dropped sessions. What

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

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.org is

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

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:

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

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

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

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

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

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.

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 cf-talk@houseoffusion.com Sent: Wednesday, November 22, 2006 10:32 AM Subject: Need a favor...quick

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

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

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

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

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

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:

  1   2   >