Re: Best Practices

2002-08-16 Thread Douglas Brown
Yes, but you also have to take performance into consideration Example cfset myString = cfloop from=1 to=1000 index=i cfif myString EQ Hello /cfif /cfloop Execution Time 811 milliseconds Compared to cfset myString = 1cfloop from=1 to=1000 index=icfif len(myString)Hello/cfif/cfloop Execution

Re: Best Practices

2002-08-16 Thread Jon Hall
So one iteration of the former executes in .811 milliseconds and the latter .37 milliseconds? No one is ever going to notice that. What someone who comes from any other language under the sun will notice though, is that len() returns an int and not a boolean. So why would someone be doing a

RE: Best Practices

2002-08-16 Thread Benoit Hediard
On this simple example, you win more than 50% of the processing time. Under load, you'll be able to support 50% more users... The question is not to know if one user will notice it or not. The question is to get the best response time under load. It depends on your application. If it is for a

Re: Best Practices

2002-08-16 Thread Jon Hall
I fail to see how adding half a millisecond with a thousand concurrent users is any gain whatsoever. Response time gains would be nearly unmeasurable. It's impossible for 1000 people to be running that code at once on one server anyway. CF defaults to 5 concurrent connections max, and I've never

Re: Best Practices

2002-08-16 Thread Kym Kovan
Hi Jon, So one iteration of the former executes in .811 milliseconds and the latter .37 milliseconds? No one is ever going to notice that. Are you serious? That was one small piece of code, stretched certainly, but it might well be used umpteen times over in one page and many other things

RE: Best Practices

2002-08-16 Thread Benoit Hediard
When I was saying 1000 concurrent users I was not saying 1000 users requesting a page at the same time. I was talking about 1000 active users (sessions) on the server. Off course, caching and stored proc are an efficient way to optimize you app. But usually, you can't cache everything and you

Re: Best Practices

2002-08-16 Thread Jon Hall
Friday, August 16, 2002, 5:35:01 AM, you wrote: KK Hi Jon, So one iteration of the former executes in .811 milliseconds and the latter .37 milliseconds? No one is ever going to notice that. KK Are you serious? That was one small piece of code, stretched certainly, but KK it might well be used

Re: Best Practices

2002-08-16 Thread Jon Hall
How much CPU time does logic take up? Next to none. The only way we can get any kind of metric on logic speed is to loop over it 1000 times. Every single thing that is performance sensitive in CF has to do with accessing resources like file systems, databases, web services, etc. We are not coding

Re: Best Practices

2002-08-16 Thread James Smith
just to throw in my bit ;) the original post said the slow code executed in 811 milliseconds (0.811 seconds) and the fast code in 370 milliseconds (0.37 seconds). If there are 1000 page views that is 811 seconds to execute the old code and 370 to execute the new, a saving of 441 seconds (7

Re: Best Practices

2002-08-16 Thread James Smith
just to throw in my bit ;) the original post said the slow code executed in 811 milliseconds (0.811 seconds) and the fast code in 370 milliseconds (0.37 seconds). If there are 1000 page views that is 811 seconds to execute the old code and 370 to execute the new, a saving of 441 seconds (7

RE: Best Practices

2002-08-16 Thread Adrian Lynch
Well it is said that a CFer's weak point is SQL Ade -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: 16 August 2002 11:39 To: CF-Talk Subject: Re: Best Practices How much CPU time does logic take up? Next to none. The only way we can get any kind of metric on logic

Netscape

2002-08-16 Thread Kodjo Ackah
Why can I not get my netscape to display this type address; http://192.168.0.1:6001 I need this because site is down, worked on it - but I want to test it in netscape and this is the port on which it is locally. __ Structure

RE: Best Practices

2002-08-16 Thread Benoit Hediard
I definitely agree with you. In most of web applications, performance issues are linked to : (1)- external ressource access (2)- presentation logic (3)- business logic (by order of importance) If you already have good performances ( 200/300 ms) by optimizing/caching external ressource access and

cf 5 error - very odd!

2002-08-16 Thread Nikki Forshaw
This is a multi-part message in MIME format. --=_NextPart_000_0038_01C24528.5BB1C2E0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable =20 Server Application Error The server has encountered an error while loading an application during = the

RE: Best Practices

2002-08-16 Thread Everett, Al
I agree. Upwards of 90% of the issues with performance I've ever seen with a CF site are due to poor SQL methods. Things like SELECT *, or looping over one query result and performing another query in that loop instead of joining the two tables in one query. In Oracle, the order with which you

CF + Cyrillic?

2002-08-16 Thread Roberts Freimuts
A very basic question. In ColdFusion Studio, I am trying to enter Cyrillic text into the body of the document. No databse [yet], just trying to get the Editor to accept Cyrillic text. I can type Latin characters into the editor or I can enter them using Character Map. I have chosen a Unicode

RE: CFMX Linux - installation question

2002-08-16 Thread Mark A. Kruger - CFG
Jesse, Thanks - that worked, but now I get a message when it's unpacking the install files telling me the package is corrupt and to download in binary mode (sigh). -mk -Original Message- From: Jesse Noller [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 4:35 PM To: CF-Talk

RE: CFMX Linux - installation question

2002-08-16 Thread Jesse Noller
What's the exact error message? Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 8:35 AM To: CF-Talk Subject: RE: CFMX Linux - installation

RE: ANY Major Company using Cold Fusion

2002-08-16 Thread Weaver, Anthony
Limited Brands is a big Cold Fusion shop internally. Tony Weaver Limited Brands Technology Services Advanced Technology Group Senior Programmer/Analyst Phone: 614.415.7647 E-mail: [EMAIL PROTECTED] AURA SCIENCE / BATH BODY WORKS / EXPRESS / HENRI BENDEL / THE LIMITED

RE: ANY Major Company using Cold Fusion

2002-08-16 Thread Edwards Robert (air0rae)
UPS (albeit, 4.x) but we're using it. Rob Edwards Phone: (502) 359-1627 Systems Management Tools Pager: (502) 478-1116 United Parcel Service Fax:(502) 359-0094 EMail: [EMAIL PROTECTED] (2B || !2B) == ? -Original Message- From:

RE: ANY Major Company using Cold Fusion

2002-08-16 Thread Hugo Ahlenius
United Nations Environment Programme (UNEP) is using CF. __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Re: Netscape

2002-08-16 Thread Jochem van Dieten
Kodjo Ackah wrote: Why can I not get my netscape to display this type address; http://192.168.0.1:6001 What error? Jochem __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

Re: Best Practices

2002-08-16 Thread Kym Kovan
Hi Jon, KK If I have learnt one thing over my years writing CF code since V1.5 it is KK that performance is a major issue and some folk don't think about it, until KK it is too late. Just look at Spectra :-) Thinking about it too much is unproductive. Too much, of course, but I was saying not

CFMX and Access Memo fields

2002-08-16 Thread Pete Ruckelshaus
I'm building a proof-of-concept CMS using CF MX Enterprise and an Access 2000 database on Windows 2000 using the MS Access ODBC Driver. I have two memo fields because they contain larger amounts of text; when the data type is memo, the text in that column does not display. However, if I

RE: CFMX and Access Memo fields

2002-08-16 Thread Chad Gray
In CF Admin there is a 'Long Text Buffer (chr)' under advanced settings. Somehow all of my databases got set to 0 when the default is 64,000. Check your setting. -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 7:59 AM To: CF-Talk

Re: Best Practices

2002-08-16 Thread Jochem van Dieten
Douglas Brown wrote: Yes, but you also have to take performance into consideration [... 0.811 ms vs. 0.370 ms ...] I would say that that is not significant (especially since on the system I tested both these numers are a sugnificantly lower). Just switching to cfqueryparam probably has more

K2 Server Question

2002-08-16 Thread Frank Mamone
First time user of K2. Excuse newbie questions. 1. If I setup k2 as an NT service using -ntsevice command line switch, what happens when I reboot. How will the service know what switches I used when I set it up like port, ini file etc? Does it store it? Do I need to use a bat file to start

Re: ANY Major Company using Cold Fusion

2002-08-16 Thread Sandy Clark
Boeing uses it internally. So do a lot of sites within the Federal Govt. NIST (National Institute of Standards and Technology under Department of Commerce) NIH (National Institute of Health) FEMA Run this on Google for a listing: gov filetype:cfm - Original Message - From: Ryan Kime

Re: ANY Major Company using Cold Fusion

2002-08-16 Thread Dick Applebaum
NUMI (General Motors / Toyota co-op) uses it internally __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Re: CFMX and Access Memo fields

2002-08-16 Thread Pete Ruckelshaus
That did the trick, thanks! Pete - Original Message - From: Chad Gray [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 16, 2002 9:06 AM Subject: RE: CFMX and Access Memo fields In CF Admin there is a 'Long Text Buffer (chr)' under advanced settings. Somehow all

RE: ANY Major Company using Cold Fusion

2002-08-16 Thread Ben Forta
Lots and lots of branches of the US Federal government. Some I can think of offhand are: The Senate (www.senate.gov) Air Force (lots of cool Flash too) Army DOT DOJ FEMA HUD SSA NIST CIA US Mint NIH State Department NHTSA FAA USDA NASA GSA (purchasing) Attorney General NSF Federal Reserve You'd

Re: ANY Major Company using Cold Fusion

2002-08-16 Thread J. Kris Baca
Hi Corrine, I am using it at Northwest Airlines. kris Vernon Viehe wrote: Here's the list we have on the Macormedia site: http://www.macromedia.com/software/coldfusion/proven/ -Vern -Original Message- From: Corrine Clark [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15,

RE: ANY Major Company using Cold Fusion

2002-08-16 Thread Ron Davis
Check out this list: http://www.macromedia.com/software/coldfusion/proven/ [EMAIL PROTECTED] 08/15/02 05:28PM Errm - are HP big enough for you? http://www.hpdevelopersolutions.com/join/APDK.cfm Jb. -Original Message- From: Corrine Clark [mailto:[EMAIL PROTECTED]] Sent: 15 August

Oracle WHERE clauses (from RE: Best Practices)

2002-08-16 Thread Chris Lofback
In Oracle, the order with which you reference tables and make comparisons in the WHERE clause has a significant impact on performance. I had heard that Oracle reads WHERE clauses from the bottom up and that clauses that exclude the most records should go last. But when I asked about this on

RE: cf 5 error - very odd!

2002-08-16 Thread Bryan F. Hogan
I personally have never seen this error, or have I had any problems using CF6 and CF5 together. If you tell us what your event log says, it might be a little easier to find your problem. -Original Message- From: Nikki Forshaw [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 7:25

OT: Maximizing/Minimizing menu - Cont'd Thread

2002-08-16 Thread FlashGuy
Hi again, When I expand a menu by clicking on the image bar it expands properly. If I refresh the page the menu minimizes. How can I keep it expanded. I know it can be done because Microsoft has one on their site and it doesn't minimize if you do a refresh. I'm not sure how to go about it?

RE: CFMX and Access Memo fields

2002-08-16 Thread Chad Gray
Should this be submitted as a bug? It has only happened to one of our development servers, and I have not idea what caused it. Now it has happened on Pete's server... so bug or no bug? -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16,

Strange JDBC/ODBC error on Insert statements...

2002-08-16 Thread jremus-lists
I have a transaction here that was working fine, but is now returning [Macromedia][SQLServer JDBC Driver][SQLServer]Could not find prepared statement with handle -1. when executed. I have also started and started all MX services, hoping that it might fix it, it does not. Again, the strange

RE: CFMX Linux - installation question

2002-08-16 Thread Mark A. Kruger - CFG
Jesse, Here it is. Perparing to install... Extracting the JRE from the installer archive Unpacking the JRE... Extracting the installation resources from the installer archive... The size of the extracted files to be installed are corrupted. Please try to download the installer again and

Array question...

2002-08-16 Thread Dowdell, Jason G
I have a single dimensional array that I want to duplicate into a 2 dimensional array. The first dimension are all odd numbers in the array and the second dimension are all the even numbers in the array. e.g. Array as it exists now... Array[1] = One Array[2] = Planes Array[3] = Twelve Array[4]

Re: ANY Major Company using Cold Fusion

2002-08-16 Thread Tim Painter
I can't believe I forgot this -- AutoTrader.com (the company I work for!) is using it internally and owns www.wwwheels.com which is using it for all the dealers there. Tim P. - Original Message - From: Weaver, Anthony [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday,

RE: CFMX Linux - installation question

2002-08-16 Thread Jesse Noller
Mozilla has a bad habit (I know, I use it a lot) of munging files, have a different browser? Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002

RE: CFMX Linux - installation question

2002-08-16 Thread todd
Using Mozilla on the linux box or did you FTP the coldfusion server to the linux box? If you did FTP, make sure you're in 'bin' (read: binary) mode and not ascii mode during the FTP. ~Todd On Fri, 16 Aug 2002, Mark A. Kruger - CFG wrote: Jesse, Here it is. Perparing to install...

Re: ANY Major Company using Cold Fusion

2002-08-16 Thread todd
My old employers: http://www.MetalSite.net http://ScrapSite.net ~Todd On Fri, 16 Aug 2002, Tim Painter wrote: I can't believe I forgot this -- AutoTrader.com (the company I work for!) is using it internally and owns www.wwwheels.com which is using it for all the dealers there. Tim P.

RE: CFMX Linux - installation question

2002-08-16 Thread Mark A. Kruger - CFG
Used Mozilla on the linux box. I'll try again. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 9:23 AM To: CF-Talk Subject: RE: CFMX Linux - installation question Using Mozilla on the linux box or did you FTP the coldfusion server

RE: CFMX Linux - installation question

2002-08-16 Thread Mark A. Kruger - CFG
Jesse, Netscape appears a lot faster on linux than Mozilla - I find that surprising. -mk -Original Message- From: Jesse Noller [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 9:16 AM To: CF-Talk Subject: RE: CFMX Linux - installation question Mozilla has a bad habit (I know,

CFFILE and NFS

2002-08-16 Thread Jeff Britts
Having issues uploading or moving files using the CFFILE tag. Works great on a local directory, but when trying to write to an NFS mount, it will work fine sometimes, work slow others, or completly die later. Permissions are fine. Have tried uploading to a local and then moving to NFS. It

Re: Array question...

2002-08-16 Thread mynews
You could use MOD: cfloop from=1 to=#ArrayLen(aMyArray)# index=i cfset aNewArray = ArrayNew(2) ~cfif i NOT MOD 2 ~~cfset aNewArray[i][1] = aMyArray[i] ~cfelse ~~cfset aNewArray[i][2] = aMyArray[i] ~/cfif /cfloop I haven't tested this, its just off the cuff David Murphy www.cfugcny.org = = =

RE: CFMX Linux - installation question

2002-08-16 Thread Jesse Noller
Hmm? Not very, mozilla eats RAM for Fun and profit. Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 10:27 AM To: CF-Talk Subject: RE: CFMX

RE: CFMX Linux - installation question

2002-08-16 Thread Mark A. Kruger - CFG
Jesse, Ok - I'm trying Netscape. It seems faster and the size it reports for the file download (117944k) is larger than the size of the previous download (96 megs) which I foolishly forgot to note g. Thanks for the help. I got this box installed and connected to the network and I compiled and

RE: Array question...

2002-08-16 Thread Dowdell, Jason G
Good point. Thanks, Jason -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 10:28 AM To: CF-Talk Subject: Re: Array question... You could use MOD: cfloop from=1 to=#ArrayLen(aMyArray)# index=i cfset aNewArray = ArrayNew(2) ~cfif i

Re: Oracle WHERE clauses (from RE: Best Practices)

2002-08-16 Thread Dave Carabetta
In Oracle, the order with which you reference tables and make comparisons in the WHERE clause has a significant impact on performance. I had heard that Oracle reads WHERE clauses from the bottom up and that clauses that exclude the most records should go last. But when I asked about this

RE: CFFILE and NFS

2002-08-16 Thread Jesse Noller
Hmm, CFFILE on a Unix/Linux box posting to an NFS share? Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy -Original Message- From: Jeff Britts [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 10:27 AM To: CF-Talk Subject: CFFILE and NFS

RE: CFMX Linux - installation question

2002-08-16 Thread Mark A. Kruger - CFG
Jesse, Yes! - I noticed it was a resource hog when I was monitoring the last download. Netscape looks like crap on this box though - not that anyone uses linux for the great visual appeal g. -mk -Original Message- From: Jesse Noller [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16,

Re: cfqueryparam

2002-08-16 Thread Zac Spitzer
Paul Giesenhagen wrote: If using cfqueryparam does it matter if you have queries named the same but do different things (on different pages but in the same application and using the same db)? Example one query named getProduct uses a cfqueryparam, while another query named getProduct

test

2002-08-16 Thread mynews
sorry, my posts weren't going through. ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com. __ Your ad could be here.

ColdFusion MX Web Application Construction Kit

2002-08-16 Thread Kris Pilles
Hey Ben... is your book going to be released on time??? Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED] __ Your ad could be here. Monies from

RE: CFFILE and NFS

2002-08-16 Thread Jeff Britts
Zactly...Unix box Wont work with a direct post to the NFS directory. Posts to a local directory fine, but then hangs when moving it to the NFS share. -Original Message- From: Jesse Noller [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 10:32 AM To: CF-Talk Subject: RE:

Re: Array question...

2002-08-16 Thread Alex
cfscript SingleArray = ArrayNew(1); SingleArray[1] = One; SingleArray[2] = Planes; SingleArray[3] = Twelve; SingleArray[4] = Jets; DoubleArray = ArrayNew(2); j=0; for (x = 1; x lt arraylen(SingleArray); x = x + 2) { j = j + 1; DoubleArray[j][1] = SingleArray[x]; DoubleArray[j][2] =

RE: CFFILE and NFS

2002-08-16 Thread Jesse Noller
You running NFS through a firewall, or trying to do NFS mounts via DNS instead of IP/Etc? CFMX or CF5? Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy -Original Message- From: Jeff Britts [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002

newbie question about MM example app and Flash and CFC's

2002-08-16 Thread Chris Phillips
Hi I've had a quiet afternoon here in the UK so thought I'd get CFMX onto my laptop. I've been thoroughly enjoying myself trying out the MM example apps, working out what does what and why everyone talking about CFC's :-) All of the examples work fine until I get to the Flash event calendar

RE: CFFILE and NFS

2002-08-16 Thread Jeff Britts
(from my IT guys)Same subnet. Mounted via dns. CF 4.5xyes I know ;) -Original Message- From: Jesse Noller [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 10:53 AM To: CF-Talk Subject: RE: CFFILE and NFS You running NFS through a firewall, or trying to do NFS mounts via

RE: ANY Major Company using Cold Fusion

2002-08-16 Thread cameronc
Forta's list of who's using CF: http://www.forta.com/cf/using/ -Cameron - Cameron Childress Sumo Consulting Inc. --- cell: 678-637-5072 aim: cameroncf email: [EMAIL PROTECTED] -Original Message- From: Tim Painter [mailto:[EMAIL PROTECTED]] Sent: Friday, August

RE: CFFILE and NFS

2002-08-16 Thread Jesse Noller
4.5... Sp2? Try changing it to IP rather than DNS Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy -Original Message- From: Jeff Britts [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 10:58 AM To: CF-Talk Subject: RE: CFFILE and NFS

Writing Hit Tracking Software

2002-08-16 Thread Thane Sherrington
I wrote some basic Hit Tracking Software in CF5 (more for the fun of it than anything else), but I was wondering if there is a way to use it on non-CF pages. I know that there must be a way to do it, because sites like Netstat allow you to add a little javascript code to your page and track

Friday Joke

2002-08-16 Thread James Dodge
http://www.zeetec.net/host/logs/ ;P __ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com __ Structure your ColdFusion code with Fusebox. Get the

CF Mail problem sending multiple times

2002-08-16 Thread Neil H.
Has anyone seen This problem: Warning,1288,08/15/02,18:35:41,,Unable to move the spooled mail file, C:\CFusion\Mail\spool\BC91.cfmail. The process cannot access the file because it is being used by another process.. It is causing emails to be sent out over and over again because the file can't

RE: Friday Joke

2002-08-16 Thread Philip Arnold - ASP
http://www.zeetec.net/host/logs/ While (kinda) funny, this does not help towards the amount of OT talk on this list Philip Arnold Technical Director Certified ColdFusion Developer ASP Multimedia Limited Switchboard: +44 (0)20 8680 8099 Fax: +44 (0)20 8686 7911 www.aspmedia.co.uk

Re: cf 5 error - very odd!

2002-08-16 Thread Nikki Forshaw
This stuff is from my application logs: Failure to obtain ColdFusion server information via the url: serverinfo.cfm. To enable ColdFusion MIB, you need to enable ColdFusion and ClusterCATS if installed. Failure to connect to url: http://pepes/cfide/mib/serverinfo.cfm. Failure to connect to

RE: cf 5 error - very odd!

2002-08-16 Thread Bryan F. Hogan
Nikki, try this to solve the c03b error. Your particular error is the 6th red paragraph down. http://support.microsoft.com/default.aspx?scid=kb;en-us;q297989 Failure to obtain ColdFusion server information via the url: serverinfo.cfm. To enable ColdFusion MIB, you need to enable ColdFusion

RE: CF Mail problem sending multiple times

2002-08-16 Thread Philip Arnold - ASP
Warning,1288,08/15/02,18:35:41,,Unable to move the spooled mail file, C:\CFusion\Mail\spool\BC91.cfmail. The process cannot access the file because it is being used by another process.. It is causing emails to be sent out over and over again because the file can't be removed from the spool

debugging

2002-08-16 Thread Turetsky, Seth
We use dynamic ip's here that constantly change, so we can't list them in the CF Admin debugging. I'd like to be able to see the queries that are being run on my submit page, I've tried using mode=debug, but doesn't seem to work with the javascript form submit I'm using. Is there a way to

Re: Writing Hit Tracking Software

2002-08-16 Thread Alex
SSI On Fri, 16 Aug 2002, Thane Sherrington wrote: I wrote some basic Hit Tracking Software in CF5 (more for the fun of it than anything else), but I was wondering if there is a way to use it on non-CF pages. I know that there must be a way to do it, because sites like Netstat allow you to

RE: Array question...

2002-08-16 Thread Ben Doom
I did something like this: cfscript for (x=1; x lt int(arraylen(MyArray)/2); x=x+1) { NewArray[x][1] = MyArray[(2 * x) - 1]; NewArray[x][2] = MyArray[2 * x]; } /cfscript --Ben Doom Programmer General Lackey Moonbow Software

RE: ANY Major Company using Cold Fusion

2002-08-16 Thread Smith, Matthew P -CONT(DYN)
NETPDTC uses it for all web development. Matthew P. Smith Web Developer, Object Oriented Naval Education Training Professional Development Technology Center (NETPDTC) (850)452-1001 ext. 1245 [EMAIL PROTECTED] -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent:

RE: Writing Hit Tracking Software

2002-08-16 Thread Pete Freitag
You can do something like this... img src=image.cfm?stats=... where the image.cfm processes the stats and then sends back an image. But you would probably have to use JavaScript to get all the information about the page like the HTTP Referrer, unless the page is written in another server side

Re: K2 Server Question

2002-08-16 Thread Jeff Garza
I'm not completely sure on this, but I beleive that when the service is created the command string is saved somewhere in the registry... I'd have to check on that. Regardless, it always starts properly for me when I reboot. And A_FF_Internal_Events_custom is unique compared to the orignal

RE: CF Mail problem sending multiple times

2002-08-16 Thread cameronc
I've seen this once or twice and could not figure out why it was doing it... But cycling CF made it stop. -Cameron - Cameron Childress Sumo Consulting Inc. --- cell: 678-637-5072 aim: cameroncf email: [EMAIL PROTECTED] -Original Message- From: Neil H.

RE: debugging

2002-08-16 Thread Philip Arnold - ASP
We use dynamic ip's here that constantly change, so we can't list them in the CF Admin debugging. I'd like to be able to see the queries that are being run on my submit page, I've tried using mode=debug, but doesn't seem to work with the javascript form submit I'm using. Is there a way to

Re: debugging

2002-08-16 Thread Paul Giesenhagen
To take your suggestion one step further, set a session variable or cookie on your machine and wrap it the cfsetting with a cfif checking for the cookie. cfparam name=cookie.authMyStuff value=0 cfif cookie.authMyStuff CFSETTING SHOWDEBUGOUTPUT=Yes /cfif That way if you want to see whats

A:Hover doesn't work with CFMX?

2002-08-16 Thread James Johnson
Hi, CF MX installed on my development (localhost:8500) system. I have a simple page with some styles declared; A.TOC, A.TOC:HOVER, A.TOC:VISITED. This is a prototype page, with no CFML in it. When viewing through CFMX (localhost:8500) the HOVER style doesn't work. When viewed through CF 5, the

Re: CF + Cyrillic?

2002-08-16 Thread Dimo Michailov
I have done this - absolutely doable. A couple of things to note: 1. You have to have the cyrrilic installed on your machine - I mean drivers + keyboard layouts. Windows has decent support for this out of the box. 2. In Studio - you will have to select a cyrillic font for the editor - in my

RE: Hover doesn't work with CFMX?

2002-08-16 Thread Ben Densmore
I think the correct way is TOC A:HOVER{ color : #CC9933; text-decoration : underline; font-family: Arial, Helvetica, sans-serif; font-size: 14px; } Ben -Original Message- From: James Johnson [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 11:59

RE: Hover doesn't work with CFMX?

2002-08-16 Thread Bryan F. Hogan
Works on mine, did you happen to use a differant browser to view the two versions? -Original Message- From: James Johnson [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 11:59 AM To: CF-Talk Subject: A:Hover doesn't work with CFMX? Hi, CF MX installed on my development

RE: Hover doesn't work with CFMX?

2002-08-16 Thread Matthew R. Small
What does the output HTML look like? Is CFMX having problems with the pound sign in the color attribute of the hover tag? Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 -Original Message- From: James

RE: debugging

2002-08-16 Thread Matthew R. Small
When you use a form, add ?mode=debug to your action url. Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002

Re: CF Mail problem sending multiple times

2002-08-16 Thread Neil H.
The problem eventually handles itself but sometimes it repeats emails 20 times other times 108 times :( Neil - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 16, 2002 11:50 AM Subject: RE: CF Mail problem sending multiple times I've seen

RE: Hover doesn't work with CFMX?

2002-08-16 Thread James Johnson
Changing to your code (TOC A:HOVER) didn't make a difference. Jim -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 9:07 AM To: CF-Talk Subject: RE: Hover doesn't work with CFMX? I think the correct way is TOC A:HOVER{ color :

RE: Hover doesn't work with CFMX?

2002-08-16 Thread James Johnson
Nope. IE 6.00 Jim -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 9:06 AM To: CF-Talk Subject: RE: Hover doesn't work with CFMX? Works on mine, did you happen to use a differant browser to view the two versions?

Re: debugging

2002-08-16 Thread Jeff Garza
You have to have debugging turned on in the administrator. Then you can manage the debug output using CFSETTING. Jeff - Original Message - From: Turetsky, Seth [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 16, 2002 9:02 AM Subject: RE: debugging Hrm, for some

cfcomponents and required complex values

2002-08-16 Thread Brook Davies
I have a cfc which has the following argument. The problem is that if I do not pass it an array it throws an error that the value is not an array. How do I make it optional to pass a value to this method? cfargument name=descriptlistArray type=array required=false default= Brook Davies

Payflow Pro Tag for MX on Linux

2002-08-16 Thread Ben Densmore
I'm currently doing some testing running CFMX on Linux and trying to move one of our apps over to that machine to see how it works versus a windows machine. We currently use the CFX_PaymentNet tag as the processor for Verisigns Payflow Pro. I found that Verisign offers CFX_Payflowpro which is a

RE: Hover doesn't work with CFMX?

2002-08-16 Thread James Johnson
The output is in my original post. This happens regardless whether I have the styles defined directly in the page or use an external CSS. style type=text/css !-- A.TOC:HOVER { color : #CC9933; text-decoration : underline; font-family: Arial, Helvetica, sans-serif;

RE: Hover doesn't work with CFMX?

2002-08-16 Thread Ryan Kime
No Ben, the way James is doing it is correct too. -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 11:07 AM To: CF-Talk Subject: RE: Hover doesn't work with CFMX? I think the correct way is TOC A:HOVER{ color : #CC9933;

Re: Type 3/4 Drivers Vs. ODBC Socket

2002-08-16 Thread Jochem van Dieten
Brook Davies wrote: This is a reply to thread by Dave Watts from the other day Are the type 3/4 drivers superior to using the ODBC socket connection. I've had a few issues with the ODBC socket connection, particularly with large client vars. I'm not sure if the other drivers will

RE: cfcomponents and required complex values

2002-08-16 Thread Everett, Al
Can you do this? cfargument name=descriptlistArray type=array required=false default=#ArrayNew(1)# cfif ArrayLen(arguments.descriptlistArray) NEQ .. /cfif -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 12:36 PM To: CF-Talk Subject:

Type 3/4 Drivers Vs. ODBC Socket

2002-08-16 Thread Brook Davies
This is a reply to thread by Dave Watts from the other day Are the type 3/4 drivers superior to using the ODBC socket connection. I've had a few issues with the ODBC socket connection, particularly with large client vars. I'm not sure if the other drivers will remedy the problem but I a

RE: Hover doesn't work with CFMX?

2002-08-16 Thread Andre Turrettini
I've noted that javascript behavior links(htc I think) didnt work either. DRE -Original Message- From: Ryan Kime [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 10:24 AM To: CF-Talk Subject: RE: Hover doesn't work with CFMX? No Ben, the way James is doing it is correct too.

rotating mail servers - cfmail...

2002-08-16 Thread Buddy
Hey everyone, I'm writing a mail app and looking for suggestions for a cool way to handle part of the app: I am sending a bunch of emails out with CFMAIL. I am looping over a list of the addresses, it could be from a query or a struct or an array, doesn't really matter to me or the app, anyway,

RE: Type 3/4 Drivers Vs. ODBC Socket

2002-08-16 Thread Dave Watts
Are the type 3/4 drivers superior to using the ODBC socket connection. Yes, generally the Type 3 and 4 drivers will work better than the ODBC Socket. I wouldn't recommend using ODBC Socket unless you have to. I've had a few issues with the ODBC socket connection, particularly with large

  1   2   3   >