client cookies - strategy question

2002-04-15 Thread Richard Meredith-Hardy
I have this site which is pointed at by several URL's ie www.aaa.com, www.bbb.com Etc. I want to have users log in only once in any of the sites and then be able to freely switch between sites in a logged-in state. The application name is the same for all. The client can have access to the

Upgrade to CF 5.0 - yes or no ??

2002-04-15 Thread Harmony Jones
Presently running CF 4.5 SP2 on W2K, IIS5 with SQL2000 database. Things generally seem OK, except for some users getting random errors about missing parameters - either form data or url parameters (a problem we still have not been able to resolve but heard it goes away with CF 5.0) We are

RE: Upgrade to CF 5.0 - yes or no ??

2002-04-15 Thread Craig Dudley
In a word, yes. As with any upgrade in a live production environment, it's never quite that cut and dried, but I've heard very few people complaining about problems upgrading to Cf5, it certainly went very smoothly for us. -Original Message- From: Harmony Jones [mailto:[EMAIL

RE: Upgrade to CF 5.0 - yes or no ??

2002-04-15 Thread Neil Clark - =TMM=
Yep, Failrly straighforward; there are a few bugs, but there are patches for most things. Neil Neil Clark Team Macromedia Spectra http://www.macromedia.com/go/team __ This list and all House of Fusion resources hosted by

RE: How do you call a cfscript udf function and pass a query to it?

2002-04-15 Thread Raymond Camden
Bare in mind that almost any UDF could be rewritten as a custom tag, or as a cfinclude. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the

RE: quotes

2002-04-15 Thread Adrian Lynch
I haven't checked too much to see if this is what you want, but this takes out left, right and straight(?) double quotes and inserts the entity name for double quotes in to the database instead value=#trim(replacelist(form.var, ,,, quot;,quot;,quot;))# But... a problem I came across comes

Re: Upgrade to CF 5.0 - yes or no ??

2002-04-15 Thread Valerie L. Criswell
Our upgrade went well with the exception of our cfgraph implementations. I'm trying to remember, but it was something about a different Java version being used in the newer version. That was a mess. 5.0 did seem to smooth out some problems, and run faster, but not so much in a way that I could

options for image resizing tags

2002-04-15 Thread Gyrus
I'm wanting to keep images uploaded within a certain size. I'm cursing CF a bit because I'm aware that PHP has image manipulation functions built-in (anyone know if there's similar stuff upcoming in CF Neo/MX?). Well, the only solutions I can find are CFX tags. Are there any recommendations for

RE: options for image resizing tags

2002-04-15 Thread Craig Thomas
http://www.cfdev.com/products/productdetail.cfm?id=6 I have never used this, but thought it may help. Craig -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 8:34 AM To: CF-Talk Subject: options for image resizing tags I'm wanting to keep images

Re: client cookies - strategy question

2002-04-15 Thread David Schmidt
I would just require that they have cookies on, and exclude putting cfid/cftoken in the url. I guess they could share the cfid/cftoken cookie, but you could do some ipaddress checking/monitoring to watch for people sharing cookies (not 100% accurate, of course). If too many different ip

Re: options for image resizing tags

2002-04-15 Thread Gyrus
- Original Message - From: Craig Thomas [EMAIL PROTECTED] http://www.cfdev.com/products/productdetail.cfm?id=6 Thanks, this is the one (free) tag I'd found already. 500KB seems a bit hefty - is this usual for this sort of tag? Still caught in whether to build site using a CFX tag,

survey trouble

2002-04-15 Thread Craig Thomas
I am having trouble creating a 'simple' survey with answers like the following: 'Strongly Agree' 'Agree' 'Neutral' 'Disagree' 'Strongly Disagree' I cannot conceptualize how to store and make sense of the answers without a huge amount of code. We do not care to record individual answers (but

RE: quotes

2002-04-15 Thread Adrian Lynch
should have pointed out that in the code below, ,, that is a left quote, right quote and an escaped double qoute, all surrounded in qoutes. Just read my email and it didn't show up as I intended, problems with the left and right qoutes come about through copying and pasting from Word

Re: client cookies - strategy question

2002-04-15 Thread Justin Scott
I have this site which is pointed at by several URL's ie www.aaa.com, www.bbb.com Etc. I want to have users log in only once in any of the sites and then be able to freely switch between sites in a logged-in state. The application name is the same for all. Here's how I would do this...

RE: survey trouble

2002-04-15 Thread Clint Tredway
Use radio buttons for the display and give each answer a number. That way you know how each question was answered. -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 8:04 AM To: CF-Talk Subject: survey trouble I am having trouble creating a

RE: survey trouble

2002-04-15 Thread James Maltby
What about giving each a letter value = e.g. Strong A = A Agree = B Neutral = C Etc. Then on landing page converting the val via a switch statement into a value and inserting it into the database. cfquery datasource= name= UPDATE table cfswitch expression=#form.val# cfcase value=A SET

Re: survey trouble

2002-04-15 Thread Gyrus
How about creating a table with these fields: answerID answer (contains the texts you specified) Make sure the IDs represent the answer's position in the scale (Strongly Agree = 5, Strongly Disagree = 1). Then have a linking table between the users, answers and questions: userID questionID

RE: survey trouble

2002-04-15 Thread James Maltby
Or, alternately - if you have 10 answers to collect, give each a number/letter value Q1. 1A, 1B, 1C, etc. Q2. 2A, 2B, 2c, etc. Then just insert them as usual query INSERT INTO tablename (col_Q1, col_Q2, col_Q3, etc.) VALUES (#form.Q1#, #form.Q2#, etc) /query Then you can read the table and

RE: survey trouble

2002-04-15 Thread Adrian Lynch
'Strongly Agree' 2 'Agree' 1 'Neutral' 0 'Disagree' -1 'Strongly Disagree' -2 Doing something like this makes it easier to know if they agree or disagree, or if you then decide you want specific answers, you still have the exact results. Positive number = agree, negative = disagree, 0 =

RE: options for image resizing tags

2002-04-15 Thread Brad Roberts
Do a search on google for cfx_image and hosting: http://www.google.com/search?sourceid=navclientquerytime=89bpDq=cfx%5Fimag e+hosting It turned up around 4 or 5 companies. I've been using the cfx_image tag from gafware.com:

RE: survey trouble

2002-04-15 Thread Craig Thomas
wouldn't this mandate a table to store totals for each question? -Original Message- From: James Maltby [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 9:17 AM To: CF-Talk Subject: RE: survey trouble What about giving each a letter value = e.g. Strong A = A Agree = B Neutral =

RE: survey trouble

2002-04-15 Thread David DiPietro
We do it this way Table for responses ID EventID ParticipantID EvaluationID EvalQuestionID Response Then we query total by EvaluationID and EvalQuestionID -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 9:47 AM To: CF-Talk Subject: RE:

Listing out departments (again)

2002-04-15 Thread Paul Giesenhagen
I have to ask this one again .. I asked this question late Friday and didn't get any answers that actually fit my situation. I will try to have this question make sense. I am trying to build an OUTPUT that would look like this: Fishing Fishing/Rods/Baitcast Fishing/Rods/Baitcast/Special Bait

RE: options for image resizing tags

2002-04-15 Thread Benjamin S. Rogers
For simple resizing, have a look at the cfx_Image tag mentioned in another response. If you need anything more than that, have a look at ImageMagick (http://www.imagemagick.org). It is free and extremely powerful. The downside is you have to invoke ImageMagick from the command line using the

RE: Listing out departments (again)

2002-04-15 Thread Carlisle, Eric
If you're using Oracle, look up the CONNECT BY SQL+ feature. You can easily draw out trees of parent/child categories. http://www.orafaq.com/faqsql.htm#TREE If not, look into sql self joins. That's a good way of denormalizing parent/child data in the same table. In fact, here's a good link

Re: options for image resizing tags

2002-04-15 Thread Richard Meredith-Hardy
CFX_IMAGE will do what you want, and a lot more. not sure where you get it at the moment (look in this list's archive, it will be there somewhere) but the latest version (1.4 I think) is thread safe. I have two very busy apps using it practically every page impression; fast with no problems.

RE: Listing out departments (again)

2002-04-15 Thread Dave Watts
I have to ask this one again .. I asked this question late Friday and didn't get any answers that actually fit my situation. I will try to have this question make sense. You might want to take a look at the Nested Tree Model. There's a good implementation, with details, here:

cferror weirdness

2002-04-15 Thread Tony_Petruzzi
i need someone to give me the loaddown on how cferror looks for the templates. here's the situation. i have a site the where i have a template called settings.cfm that i put all of the settings for the site in. this includes the cfapplication tag, a bunch of global variables, and the cferror

ntConsoleJava 98% of sys resources

2002-04-15 Thread Paul Ihrig
hey guys my laptop is crapping out running win2k is ntConsoleJava a part of cf 5 C:\CFUSION\jre\bin it is taking up way to much resources. if not what is it a part of? thanks -paul __ Your ad could be here. Monies from ads

RE: ntConsoleJava 98% of sys resources

2002-04-15 Thread Hays, Duncan
We ran into this a couple of weeks ago. We would restart the server, this thing would start up as a service and suck the life out of the machine. It even started up 2 instances, the first got to about 200mb of ram before we killed it. Then the second, which was at about 7mb, took off and started

RE: ntConsoleJava 98% of sys resources

2002-04-15 Thread Robert Everland
There are hotfixes for this. It's the management tools included in CF Enterprise. Get the hotfixes, you'll be all good. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Hays, Duncan [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 10:48

Re: survey trouble

2002-04-15 Thread Jeffry Houser
I saw a bunch of responses, and I don't think I have much else to add except that one of the chapters of the Instant ColdFusion book discusses this. ( Yes, I wrote it, so that is self-promotion ) .. I believe that it goes something like this: Answers (AnswerID, Answer) Questions

Re: client cookies - strategy question

2002-04-15 Thread Richard Meredith-Hardy
Justin Seems a bit complicated in that you seem to be effectively duplicating the built in functionality of client variables. I am not using session variables on this [shared] server because the *?xx! thing is constantly being restarted and you end up losing stuff. From what you seem to be

Re: Listing out departments (again)

2002-04-15 Thread Alex
you should have 3 tables an owner table (owner and ownerID) a sub object table (subobject and subobjectID) a relationship table (ownwerID and subobjectID are complex primary key ) On Mon, 15 Apr 2002, Paul Giesenhagen wrote: I have to ask this one again .. I asked this question late Friday

Re: cferror weirdness

2002-04-15 Thread Jeffry Houser
At 10:31 AM 4/15/2002 -0400, you wrote: i need someone to give me the loaddown on how cferror looks for the templates. here's the situation. i have a site the where i have a template called settings.cfm that i put all of the settings for the site in. this includes the cfapplication tag, a bunch

Re: cferror weirdness

2002-04-15 Thread Richard Meredith-Hardy
CFINCLUDE always looks from where the including template is, not where the base template is. Therefore if you have a call to your error.cfm from one of your child templates then likely the path in your CFINCLUDE will need to be ../error.cfm If you want to use paths always from your base

Re: options for image resizing tags

2002-04-15 Thread cftalk
I have to recommend our tag ImageCR... It's not free, but it is high quality. http://efflare.com/products/cfx_imagecr Also, a better than PHP image manipulation tag is in beta testing. -- Monday, April 15, 2002, 7:33:33 AM, you wrote: I'm wanting to keep images uploaded within a certain

Re: Listing out departments (again)

2002-04-15 Thread Paul Giesenhagen
Hmm.. here is what I have: department table id | title | description . (all departments go into here ..Fishing, Camping, Rods, Spinning ect..) And the table below from the original message Why would I use the sub object table .. So I would stick EVERY department id in the OWNER table

cfset vs using cfscript

2002-04-15 Thread Clint Tredway
I have a question... Lets say that I have about 10 variables being set locally on 20 or so cfm pages.. How much faster is using cfscript over using cfset to set the values of these local variables? Clint Tredway __ This list

Re: cfset vs using cfscript

2002-04-15 Thread Critz
oi Clint!! well you could always do some tests, but i've heard rule o thumb is more than 3 cfscript is more efficient.. -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion Monday, April 15, 2002,

Re: cfset vs using cfscript

2002-04-15 Thread Justin Scott
General rule of thumb is to set variables using cfscript if there are three or more in a row. I do not have exact statistics to back this up, but I have found cfscript code to execute significantly faster than regular CFML. It is also easier to read and follow, IMHO. -Justin Scott, Lead

Re: cfset vs using cfscript

2002-04-15 Thread Michael Dinowitz
a fraction of a second. How big a fraction is debatable. At 11:41 AM 4/15/02, you wrote: I have a question... Lets say that I have about 10 variables being set locally on 20 or so cfm pages.. How much faster is using cfscript over using cfset to set the values of these local variables? Clint

cfoutput - was RE: cfset vs using cfscript

2002-04-15 Thread Shawn McKee
While on this topic, how about efficiency with cfoutput? It makes sense to me that this: select name=fred cfloop query=fredQ option value=cfoutput#val#/cfouputcfoutput#valDesc#/cfouput /cfloop /select is faster than this: cfoutput select name=fred

automatically submit form

2002-04-15 Thread Diana Nichols
I am generating a form to submit to a remote applicationand I need to have the form submit automatically. Here's the tricky partthis will be run as a scheduled event, so there won't be a browser open to run JS. Is there another way to have the form submit itself? TIA! D

Re: cfoutput - was RE: cfset vs using cfscript

2002-04-15 Thread Jochem van Dieten
Shawn McKee wrote: While on this topic, how about efficiency with cfoutput? It makes sense to me that this: select name=fred cfloop query=fredQ option value=cfoutput#val#/cfouputcfoutput#valDesc#/cfouput /cfloop /select is faster than this: cfoutput

RE: ntConsoleJava 98% of sys resources

2002-04-15 Thread Craig Dudley
It's the cut down jrun that's used for a few things including cfgraph support, un-install cfgraph and see if it's still doing it. You can always try installing it again later if t is, sometimes works. -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15,

Re: cfset vs using cfscript

2002-04-15 Thread cf refactoring
I just optimized some templates which were written in cf tag syntax by rewriting as cfscript. In my experience, cfscript can be up to 2-3x as fast. But in my opinion, the performance isn't worth rewriting unless you're inside a loop. In my case, I rewrote all the cfset statements inside a cfquery

Re: automatically submit form

2002-04-15 Thread Douglas Brown
Boy I am dying to hear the replies on this. I would have to say impossible to send form vars with no browser open. But then again, I have been wrong before (several times ) :-D Success is a journey, not a destination!! Doug Brown - Original Message - From: Diana Nichols [EMAIL

RE: Listing out departments (again)

2002-04-15 Thread Phillip Broussard
Paul, I think you will want something like this. Dave Watts helped me with it a long time ago. http://www.mail-archive.com/cf-talk@houseoffusion.com/msg06749.html I can help you with it if you need but it is pretty sell spelled out. Phillip -Original Message- From: Paul

Re: Listing out departments (again)

2002-04-15 Thread Alex
OK. I did not read your entire email. I assume you are trying to recursively lookup items. As someone said oracle CONNECT BY can do this otherwise you might need to to some nested queries. On Mon, 15 Apr 2002, Paul Giesenhagen wrote: Hmm.. here is what I have: department table id | title

Re: cfset vs using cfscript

2002-04-15 Thread Alex
I have read that cfscript is faster when you have a large block. I assume you do not have access to CF right now otherwise you would have tested this yourself. Anyway, when I tested it I got the same execution time back. On Mon, 15 Apr 2002, Clint Tredway wrote: I have a question... Lets

RE: cfset vs using cfscript

2002-04-15 Thread Craig Thomas
it will be faster...how much? well, that would depend on your system. You could always set up some tests... -Original Message- From: Clint Tredway [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 11:42 AM To: CF-Talk Subject: cfset vs using cfscript I have a question... Lets

CF5 on XP Home

2002-04-15 Thread Yves Arsenault
Last wednesday there was a post on the list about CF5 on XP Home. Since then I've purchased a new PC and I'll be using for dev. purposes. I've tried to install CF5 with Apache 2.0, but I got some errors after I had followed the instructions from the macromedia site One part of these

Re: automatically submit form

2002-04-15 Thread Stephen Moretti
Diana, I am generating a form to submit to a remote applicationand I need to have the form submit automatically. Here's the tricky partthis will be run as a scheduled event, so there won't be a browser open to run JS. Is there another way to have the form submit itself? Have

RE: automatically submit form

2002-04-15 Thread Craig Thomas
have the scheduled event run a template with body onLoad= Craig -Original Message- From: Diana Nichols [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 11:59 AM To: CF-Talk Subject: automatically submit form I am generating a form to submit to a remote applicationand I need

Re: cfset vs using cfscript

2002-04-15 Thread Justin Scott
A fraction of a second on a major application that gets millions of hits a day can make or break a system. Remember that when you do the big jobs g. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com - Original Message - From: Michael Dinowitz

RE: automatically submit form

2002-04-15 Thread Matthew R. Small
Yep, I think you're wrong. You can use cfhttp to do exactly this. And no need for javascript either. - Matt Small -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 12:06 PM To: CF-Talk Subject: Re: automatically submit form Boy I am dying

Re: automatically submit form

2002-04-15 Thread Justin Scott
How about CFHTTP with a method=post? -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com - Original Message - From: Diana Nichols [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 15, 2002 11:58 AM Subject: automatically submit form

Re: automatically submit form

2002-04-15 Thread Jim McAtee
cfhttp url=http://www.somewhere.com/cgi-bin/whatever method=post cfhttpparam ... /cfhttp Jim - Original Message - From: Diana Nichols [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 15, 2002 9:58 AM Subject: automatically submit form I am generating a

Re: Listing out departments (again)

2002-04-15 Thread Paul Giesenhagen
Phillip, Thanks, interesting post, but the problem is I don't know how many levels there will be .. there could be 1 or there could be 20 sub levels (gawd I hope not, but it needs that flexibility). Your example is a set 1/2/3 . I may need to re-think the whole setup of the database since

RE: automatically submit form

2002-04-15 Thread Craig Thomas
boy...I feel stupid. -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 12:13 PM To: CF-Talk Subject: RE: automatically submit form have the scheduled event run a template with body onLoad= Craig -Original Message- From: Diana

Re: cfoutput - was RE: cfset vs using cfscript

2002-04-15 Thread Jeffry Houser
At 10:55 AM 4/15/2002 -0500, you wrote: While on this topic, how about efficiency with cfoutput? It makes sense to me that this: select name=fred cfloop query=fredQ option value=cfoutput#val#/cfouputcfoutput#valDesc#/cfouput /cfloop /select is faster than

Re: automatically submit form

2002-04-15 Thread Justin Scott
have the scheduled event run a template with body onLoad= You must have missed the part where he said... ...scheduled event, so there won't be a browser open to run JS -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com

RE: cfoutput - was RE: cfset vs using cfscript

2002-04-15 Thread Venn, Matthew
RecordSet contained 1000 results... Using Cfoutput to loop through query: 50 ms Using Cfloop contained with cfoutput tags: 50 ms Using Cfloop with cfoutput tag contained within the cfloop tags: 170 ms Matt -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent:

RE: CF5 on XP Home

2002-04-15 Thread Steve Green
re: XP (home) has issues with Apache 1.3 ? What 'issues' .. I've had none .. But i'd like to hear of some SteG. -Original Message- From: Yves Arsenault [mailto:[EMAIL PROTECTED]] Sent: 15 April 2002 17:10 To: CF-Talk Subject: CF5 on XP Home Last wednesday there was a post on the list

Re: automatically submit form

2002-04-15 Thread Ernie Pena
Dianna, I agree with Stephen, I have an application that submits to two different applications based on cfhttp and the cfhttppram, however I do not have it scheduled. However that should not be an issue creating schedule to kick off a cfm page is the easiest part of your problem. Ernie Pena

RE: ntConsoleJava 98% of sys resources

2002-04-15 Thread Paul Ihrig
that's just it. I NEED to be able to use cfgraph... i have tried every thing to get cfgraph to run on my local laptop win2k, cf5 ent, latest java... i really want to work on my laptop, before pushing it to the production server Robert There are hot fixes for this. It's the management tools

RE: automatically submit form - Sorry

2002-04-15 Thread Diana Nichols
Sorry...I forgot to mention that I can't use CFHTTP - we scrapped that idea so long ago I'd forgotten about it - but the client has challenge/response security on their serverso it doesn't work. D Diana Nichols Webmistress http://www.lavenderthreads.com

RE: cferror weirdness

2002-04-15 Thread Tony_Petruzzi
so if the error.cfm is in the root and the settings.cfm is in the root. Then that means that the CFERROR tag's template path should just be template=error.cfm, correct? Anthony Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED] http://www.sheriff.org -Original Message- From: Richard

RE: automatically submit form - Sorry

2002-04-15 Thread Matthew R. Small
Can you explain that a little bit more in detail? Does that mean that you aren't allowed to use cfhttp because of the client's security, that you use a server where it is not allowed, or because somebody said that you couldn't? - Matt Small -Original Message- From: Diana Nichols

RE: ntConsoleJava 98% of sys resources

2002-04-15 Thread Paul Ihrig
i have done this hot fix http://www.macromedia.com/v1/Handlers/index.cfm?ID=22280Method=Full but still no luck on getting cfgraph to work -paul -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 12:31 PM To: CF-Talk Subject: RE: ntConsoleJava

RE: automatically submit form - Sorry

2002-04-15 Thread Tony_Petruzzi
can the form accept a get method. if so then what you can do is just pass all the value through the url. without cfhttp, i don't think you can do a post method. Anthony Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED] http://www.sheriff.org -Original Message- From: Diana Nichols

RE: cfoutput - was RE: cfset vs using cfscript

2002-04-15 Thread Shawn McKee
My testing agrees with this. This flies in the face of what Chris Cortes says in his book Optimizing ColdFusion 5. Page 404. Or am I reading it wrong? Does anyone else have any beefs with this book? Jochem - thanks for pointing me at GetTickCount(). Shawn -Original Message- From:

Re: automatically submit form - Sorry

2002-04-15 Thread Justin Scott
Sorry...I forgot to mention that I can't use CFHTTP - we scrapped that idea so long ago I'd forgotten about it - but the client has challenge/response security on their serverso it doesn't work. It looks like you have two options in this case: 1. Get the client to change the app to use

RE: automatically submit form - Sorry

2002-04-15 Thread Diana Nichols
CFHTTP doesn't work with challenge/response security. (At least the ducumentation says it doesn't, and I haven't been able to figure out how to make it do so.) When posting as a form, this action works to satisfy the security: https://username:[EMAIL PROTECTED]/script.asp. Unfortunately, not so

RE: automatically submit form - Sorry

2002-04-15 Thread Diana Nichols
Good thought...unfortunately the form has about 300 fields, and could well exceed the url size limit. D Diana Nichols Webmistress http://www.lavenderthreads.com 770.434.7374 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: CF5 on XP Home

2002-04-15 Thread Yves Arsenault
I have tried to find the information that I had read up on, but I can't seem to find it. I'll keep looking a little, and if I find what I had read, I will post it. If it works fine for you, I'll try to install it tonight. 2.0 didn't seem to work for me, I've got 1.3 (I downloaded). Do you run

RE: cfoutput - was RE: cfset vs using cfscript

2002-04-15 Thread Jeffry Houser
At 11:46 AM 4/15/2002 -0500, you wrote: My testing agrees with this. This flies in the face of what Chris Cortes says in his book Optimizing ColdFusion 5. Page 404. Or am I reading it wrong? Does anyone else have any beefs with this book? That was the only thing I read in the book that

Re: cfoutput - was RE: cfset vs using cfscript

2002-04-15 Thread Justin Scott
My testing agrees with this. This flies in the face of what Chris Cortes says in his book Optimizing ColdFusion 5. Page 404. Or am I reading it wrong? Does anyone else have any beefs with this book? The book is referring to it being more efficient to wrap cfoutput tags around individual

RE: automatically submit form - Sorry

2002-04-15 Thread Tony_Petruzzi
i can't exactly remember where i heard it (could of been here) but i think as of iis4.0, there isn't a url character limit. this also could be the same for apache. can someone clarify this? Anthony Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED] http://www.sheriff.org -Original

Re: cferror weirdness

2002-04-15 Thread Richard Meredith-Hardy
if they are in the same directory, yes. [EMAIL PROTECTED] wrote: so if the error.cfm is in the root and the settings.cfm is in the root. Then that means that the CFERROR tag's template path should just be template=error.cfm, correct? Anthony Petruzzi Webmaster 954-321-4703 [EMAIL

RE: automatically submit form - Sorry

2002-04-15 Thread Craig Thomas
If there is no browser present, what determines the URL size limit? is there one? CT -Original Message- From: Diana Nichols [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 12:53 PM To: CF-Talk Subject: RE: automatically submit form - Sorry Good thought...unfortunately the form

RE: automatically submit form

2002-04-15 Thread Craig Thomas
She You must have missed the part where he said... -Original Message- From: Justin Scott [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 12:19 PM To: CF-Talk Subject: Re: automatically submit form have the scheduled event run a template with body onLoad= You must have

RE: automatically submit form - Sorry

2002-04-15 Thread Tony_Petruzzi
http://support.microsoft.com/default.aspx?scid=kb;EN-US;q260694 Found it! you can write a loop program real quick to see how many characters all the values and variables would take. then you could request them to increase their request buffer value to accomidate you. Good luck with that though

Re: automatically submit form

2002-04-15 Thread Alex
script onserver or something like that to get the javascript serverside On Mon, 15 Apr 2002, Diana Nichols wrote: I am generating a form to submit to a remote applicationand I need to have the form submit automatically. Here's the tricky partthis will be run as a scheduled event,

Re: automatically submit form

2002-04-15 Thread Alex
RUNAT=Server On Mon, 15 Apr 2002, Justin Scott wrote: How about CFHTTP with a method=post? -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com - Original Message - From: Diana Nichols [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Re: automatically submit form

2002-04-15 Thread Justin Scott
You must have missed the part where he said... She DOH! Sorry about that. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com __ Get the mailserver that powers this list at

Null Values in MSSQL

2002-04-15 Thread Graham Pearson
Group: This is the first time that I have to test for a NULL Value in MSSQL to retrieve a record set. However, at my present knowledge level, I am unable to retrieve this record set. Anyone have pointers on how I can do this?

Re: Null Values in MSSQL

2002-04-15 Thread Paul Giesenhagen
NULL is not check for NULL Hope this helps Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder Group: This is the first time that I have to test for a NULL Value in MSSQL to retrieve a record set. However, at my present knowledge level, I am

RE: ntConsoleJava 98% of sys resources

2002-04-15 Thread Craig Thomas
is the ColdFusion Graphing Server running? are the CF OEM versions of Jrun and Generator installed ? CT -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 12:42 PM To: CF-Talk Subject: RE: ntConsoleJava 98% of sys resources i have done this

Re: Null Values in MSSQL

2002-04-15 Thread Douglas Brown
Depends on what you want. If you are wanting all records where the value is not NULL Just do selectwhatever from table wherewhatever IS NOT NULL Success is a journey, not a destination!! Doug Brown - Original Message - From: Graham Pearson [EMAIL PROTECTED] To:

RE: Null Values in MSSQL

2002-04-15 Thread Rob Baxter
you weren't too specific but try something like: select ... where ColA is null /rob -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 1:41 PM To: CF-Talk Subject: Null Values in MSSQL Group: This is the first time that I have to test for

RE: automatically submit form

2002-04-15 Thread Diana Nichols
No problem...I just assumed a typo :) D Diana Nichols Webmistress http://www.lavenderthreads.com 770.434.7374 -Original Message- From: Justin Scott [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 1:33 PM To: CF-Talk Subject: Re: automatically submit

RE: automatically submit form

2002-04-15 Thread Diana Nichols
?? Diana Nichols Webmistress http://www.lavenderthreads.com 770.434.7374 -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 12:57 PM To: CF-Talk Subject: Re: automatically submit form RUNAT=Server On Mon, 15 Apr 2002,

RE: Null Values in MSSQL

2002-04-15 Thread Neil Clark - =TMM=
Are you checking for null re: a value? __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: automatically submit form - Sorry

2002-04-15 Thread Diana Nichols
ahathat has possibilitiesif I can get my client to agree. (They historically take 3-5 working days to make any decision above the level of correcting spelling.) Thanks, I'll look into this! D Diana Nichols Webmistress http://www.lavenderthreads.com 770.434.7374

Re: Null Values in MSSQL

2002-04-15 Thread Alex
where field IS NULL On Mon, 15 Apr 2002, Graham Pearson wrote: Group: This is the first time that I have to test for a NULL Value in MSSQL to retrieve a record set. However, at my present knowledge level, I am unable to retrieve this record set. Anyone have pointers on how I can do

RE: CF5 on XP Home

2002-04-15 Thread Yves Arsenault
Here is what I had found earlier about XP and Apache. http://www.apache.org/dist/httpd/binaries/win32/#xpbug Thanks, Yves -Original Message- From: Yves Arsenault [mailto:[EMAIL PROTECTED]] Sent: April 15, 2002 2:03 PM To: CF-Talk Subject: RE: CF5 on XP Home I have tried to find the

RE: ntConsoleJava 98% of sys resources

2002-04-15 Thread Dave Watts
There are hot fixes for this. It's the management tools included in CF Enterprise. Get the hot fixes, you'll be all good. where are these hot fixes? http://www.macromedia.com/v1/handlers/index.cfm?ID=20371Method=Full Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice:

RE: CF5 on XP Home

2002-04-15 Thread Dave Watts
Here is what I had found earlier about XP and Apache. http://www.apache.org/dist/httpd/binaries/win32/#xpbug That looks like a pretty rare problem, and if it happens to you, get the listed hotfix from MS. 2.0 didn't seem to work for me, I've got 1.3 (I downloaded). CF doesn't support

  1   2   >