Execution Speed...?

2002-09-27 Thread Brian Scandale
I'm needing to do lots of testing repeatedly and I was wondering if anyone knows off the top of their head... Which evaluates faster? cfif isDefined(Client.Variable)/cfif OR cfif SomeVariable/cfif Thanks, Brian __

Re: Why oh *WHY* is this *now* working?

2002-09-27 Thread Jeff Small
Well, no, not really. CF doesn't map DNS names to IP addresses; that's done by other components. So, unless you changed the mapping for localhost which is in your hosts file to something other than 127.0.0.1, localhost always pointed (and will point) to 127.0.0.1, no matter what you do in CF.

RE: Com ASP and CFMX hopefully MM are listing and fixing

2002-09-27 Thread Hugo Ahlenius
Mike, ArcIMS is not the best example -- a piece of software all in java, with (good) native interfaces to both com, java and coldfusion. I guess your shop made the decision to use COM/ASP for ArcIMS (the decision to use coldfusion/COM for ArcIMS would be incredible bad -- I hope you didn't go

RE: Uploading zero-length files

2002-09-27 Thread jgeorges
Nat, Thanks for the response. Sam --- On Thu 09/26, Nat Papovich wrote: From: Nat Papovich [mailto: [EMAIL PROTECTED]] To: [EMAIL PROTECTED] Date: Thu, 26 Sep 2002 10:26:17 -0700 Subject: RE: Uploading zero-length files If all you want to do is avoid errors caused by uploaded zero-length

Re: Execution Speed...?

2002-09-27 Thread Jochem van Dieten
Brian Scandale wrote: I'm needing to do lots of testing repeatedly and I was wondering if anyone knows off the top of their head... Which evaluates faster? Loop 10 times over each and you know the difference. There is some test code in the archives if you look hard. cfif

Re: Javascript Validation for Form Selects in CF ?

2002-09-27 Thread Ian Vaughan
I have made changes and the form validation works but not 100% yet, I have a CFFile field that will allow users to upload .pdf,.jpg,.gif files, and the validation that is included with the script does not seem to picking up the following... 1.) That there is an incorrect file format

RE: So many problems with CFC scopes...

2002-09-27 Thread Benoit Hediard
I think I forgot some other problems with CFCs linked to UDF lib functions. It took me sometime to understand why I was not able to include UDF lib in some cases. - CFC methods defined in an included file cannot really include UDF lib. Indeed, CF refuses to include twice the same UDF lib in one

RE: Regex for CF Studio

2002-09-27 Thread Everett, Al
Perhaps that was a bad example. I don't necessarily want to find a CF variable. Sometimes I want to find a tag. Sometimes just text. I just don't want to find it in between !--- and --- (CF comment tags). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent:

RE: Time calculation

2002-09-27 Thread Everett, Al
I think you want integer division: \ -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 8:26 PM To: CF-Talk Subject: RE: Time calculation Crap. Change all of the LTEs to GTEs and all of the MODs to / (divided by).

CS RCS Software

2002-09-27 Thread Shahzad.Butt
If someone has integrated CS RCS Software (for Version Control) with coldfusion Studio4.5, pls read following. I've downloaded the utility to integrate and made amendments in RCS.tbr. Issue I am having is that our central repository is in Server1 (Work group environment) and we are using CS

Error with a simple expression.

2002-09-27 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Can anyone tell me why this simple expression

RE: CS RCS Software

2002-09-27 Thread Hugo Ahlenius
Shahzad, Is it CS RCS Pro? The non-pro version doesn't allow a shared repository (I think). You should try their support too, I think this is a CS-RCS issue, not CFStudio (easy to test, can you checkin/out from explorer?) /Hugo

RE: CS RCS Software

2002-09-27 Thread Thomas Chiverton
as we are directly working on Workfolder which is in Server1 but not in Machine1 or Machine2 so in RCS.tbr file I've changed the path to \\Server1\. Why not just give each Machine it's own checkout folder for when your working on something ? Tom Chiverton You don't have to be a mad

RE: Error with a simple expression.

2002-09-27 Thread Mike Townend
What error are you getting? Try something like... CFQUERYPARAM VALUE=#FORM['displayName' UpdateLoopIdx]# CFSQLTYPE=CF_SQL_VARCHAR And see if you get the same error... HTH -Original Message- From: Adams, Stephen [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 11:55 To:

Re: Error with a simple expression.

2002-09-27 Thread Stephen Moretti
Can anyone tell me why this simple expression '#PreserveSingleQuotes(Evaluate(FORM.displayName UpdateLoopIdx))#', it keeps failing, but I can't see why. Stephen What error message are you getting?? Regards Stephen __

RE: Error with a simple expression.

2002-09-27 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** I am trying to use it in a UPDATE query, the error I was getting was this:

RE: Error with a simple expression.

2002-09-27 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** The error I was getting was this: Error in custom ColdFusion module

RE: Error with a simple expression.

2002-09-27 Thread Mike Townend
Another thing to check for will be the commas... I assume that you are doing a loop and if all you are updating is the displaynames then check to ensure that your commas match... i.e. UPDATE Foo SET fooid = fooid CFLOOP FROM=1 TO=5 INDEX=idxFoo , DisplayName#idxFoo# = CFQUERYPARAM

RE: Uploading zero-length files

2002-09-27 Thread Greg Luce
Isaac, I noticed that the content_length variable wasn't exactly the size of the uploaded file, but close. I was thinking it must also included the rest of the form data. Could that be? I think if the form didn't have a lot of inputs the difference was less than 1K so it was good enough

RE: Error with a simple expression.

2002-09-27 Thread Greg Luce
What's the error? -Original Message- From: Adams, Stephen [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 6:55 AM To: CF-Talk Subject: Error with a simple expression. ** WESTMINSTER CITY COUNCIL Please

RE: Javascript Validation for Form Selects in CF ?

2002-09-27 Thread Pascal Peters
Here is some code that worked for me: function validate(myform){ var file_pattern = /\.(jpg|gif|pdf)$/i; if(!file_pattern.test(myform.File.value)){ alert(false); return false; } return true; } It only validated if I put a jpg, gif or pdf -Oorspronkelijk

Re: Uploading zero-length files

2002-09-27 Thread Jochem van Dieten
Greg Luce wrote: Isaac, I noticed that the content_length variable wasn't exactly the size of the uploaded file, but close. I was thinking it must also included the rest of the form data. Could that be? I think if the form didn't have a lot of inputs the difference was less than 1K so

Re: SOT How to set up win NT network to be recognized by OS X

2002-09-27 Thread Sean Daniels
On Thursday, September 26, 2002, at 09:38 PM, Dick Applebaum wrote: The tcip is installed. I get an error on startup saying that a service wasn't started -- event shows the adapter that uses TCP/IP didn't have a valid device -- I guess I have some digging to do -- Thanks to you and Sean,

RE: SOT How to set up win NT network to be recognized by OS X

2002-09-27 Thread Robertson-Ravo, Neil (REC)
are all the Mac services started? -Original Message- From: Sean Daniels [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 13:37 To: CF-Talk Subject: Re: SOT How to set up win NT network to be recognized by OS X On Thursday, September 26, 2002, at 09:38 PM, Dick Applebaum wrote: The

Slightly OT: Emulation software

2002-09-27 Thread Dowdell, Jason G
Hi all, I have a client that needs an extremely low cost solution to allowing users to access an access database from remote locations using the web. My thought is that they could use emulation software to connect to the web server and open the access db directly. Since there are only 2 or 3

Re: escaping ampersands in sql*plus

2002-09-27 Thread Deanna Schneider
Matthieu, Do this before your code: SET ESCAPE ON then this INSERT INTO DEPARTMENTS VALUES (1,2,3,'Mergers \ Acquisitions'); Deanna Schneider Interactive Media Developer [EMAIL PROTECTED] __ Structure your ColdFusion code

RE: Slightly OT: Emulation software

2002-09-27 Thread John Beynon
You mean like remote control? If you were using a win2k server you could just use the inbuilt terminal server. If not something like VNC which I think is free but be aware of the security risks.. John. -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: 27

RE: Slightly OT: Emulation software

2002-09-27 Thread Dowdell, Jason G
Yeah, they're not on a 2k box yet but I do remember using vnc a while back. I think I'll recommend they set up an account that only has access to certain areas through NT. I will also recommend that they put the site on an ssl. I think that will pretty much cover it. Thanks for the help,

RE: escaping ampersands in sql*plus

2002-09-27 Thread Cornillon, Matthieu
Deanna! You're a star! That did the trick. I knew the answer was a simple one that was just too hard for me. ;) Thanks, Matthieu -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 8:54 AM To: CF-Talk Subject: Re: escaping ampersands

Re: Uploading zero-length files

2002-09-27 Thread jgeorges
I have been using IE 5.5 SP2, same behavior with Netscape 4.79 Sam --- On Thu 09/26, S.Isaac Dealey wrote: From: S.Isaac Dealey [mailto: [EMAIL PROTECTED]] To: [EMAIL PROTECTED] Date: Thu, 26 Sep 2002 17:59:48 -0400 Subject: Re: Uploading zero-length files That's interresting... I wonder

Re: Error with a simple expression.

2002-09-27 Thread Deanna Schneider
Didn't someone just figure out that there's a bug with the preserve single quotes function such that you can't use other functions inside of it? So, you'd have to do something like this: cfset thisdisplay = Evaluate(FORM.displayName UpdateLoopIdx) Then use this in your query.

RE: Time calculation

2002-09-27 Thread Mosh Teitelbaum
Jeez... must I say it again? CRAP 8^) Thanks for the correction. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27,

RE: Error with a simple expression.

2002-09-27 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Thanks Denna, I'll give it a go. -Original Message- From: Deanna

Verity

2002-09-27 Thread Adam Reynolds
Can anybody give me a link to the type of searches (with examples) that I can send to Verity And what the difference between explicit and simple searches are. If there is an online reference I would greatly appreciate this. Adam

Re: escaping ampersands in sql*plus

2002-09-27 Thread Deanna Schneider
You can also change the escape character using the set command in SQL Plus. The \ is the default, but if you do something like SET ESCAPE (your new symbol here) ON The escape character will be your new symbol. Not positive on the syntax on that, though. -d Deanna Schneider Interactive

RE: Verity

2002-09-27 Thread Gaulin, Mark
Look in the pdfs that come with CF5 (and maybe other versions). One of them (don't remember which) describes the verity query language in detail. Mark -Original Message- From: Adam Reynolds [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 9:20 AM To: CF-Talk Subject:

RE: escaping ampersands in sql*plus

2002-09-27 Thread Cornillon, Matthieu
Cool! I probably don't need to mess with it, but it's good to know anyway. Thanks again, Matthieu -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 9:20 AM To: CF-Talk Subject: Re: escaping ampersands in sql*plus You can also change

RE: Verity

2002-09-27 Thread Adam Reynolds
Found it... http://www.verity.com/pdf/white_papers/MK0348a_Discovery_WP.pdf Look at the appendix -Original Message- From: Gaulin, Mark [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 14:26 To: CF-Talk Subject: RE: Verity Look in the pdfs that come with CF5 (and maybe other

RE: Error with a simple expression.

2002-09-27 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Hi Denna, I tried your idea, and it still didn't work. I am trying to pass a

CFLOCATION to external sites - failure

2002-09-27 Thread Cornillon, Matthieu
Hi. I have a series of pages, each of which points to an offsite link. These external sites vary in location and nature. In order to track usage of these sites, I am passing users through an exit page. On this exit page, I pull the external URL from a database and stick it in a CFLOCATION

RE: Error with a simple expression.

2002-09-27 Thread Mike Townend
Try this cfset LoopDisplayName = #FormDisplayname[UpdateLoopIdx]# cfquery name=UpdateLinks datasource=CommonSpot-Wire UPDATE CouncilEmployeeLinks SET UserID = '#session.CORNTAccount#', link_type = '#FormLinkType[UpdateLoopIdx]#',

Retrieving Response Header info

2002-09-27 Thread Houk, Gary
All, I have the following in one page: cfheader name=firstname value=John cfheader name=lastname value=Smith There is also a form button to go to another page. On the action page, I am outputting cfdump var=#cfhttp# I can see the values for firstname and lastname in the ResponseHeader. I'm

RE: Why oh *WHY* is this *now* working?

2002-09-27 Thread Alex
What if I made the first hit from a proxy server or a NATed IP? Could I get to a CF page from different IPs as long as I go through the proxy or NAT. On Thu, 26 Sep 2002, Mosh Teitelbaum wrote: So I'm not completely up on my CF Developer License info but I seem to recall hearing that after a

RE: Error with a simple expression.

2002-09-27 Thread Jerry Johnson
In this particular case, I think you don't want to preserveSingleQuotes. You want Coldfusion to escape the single quote/apostraphe In the db set query, you want the string to look like What''s New (two single quotes) What does it do when you remove the preserveSingleQuote call? Jerry Johnson

Re: Error with a simple expression.

2002-09-27 Thread Jochem van Dieten
Adams, Stephen wrote: I tried your idea, and it still didn't work. I am trying to pass a link's (URL's) display name, which is What's New so I used your idea like this: cfset LoopDisplayName = #FormDisplayname[UpdateLoopIdx]# cfquery name=UpdateLinks

RE: Verity

2002-09-27 Thread Gaulin, Mark
Yeah, that's the same basic info that I'll seen before. -Original Message- From: Adam Reynolds [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 9:42 AM To: CF-Talk Subject: RE: Verity Found it... http://www.verity.com/pdf/white_papers/MK0348a_Discovery_WP.pdf Look at the

RE: CFCONTENT and file downloads

2002-09-27 Thread Ye Wang
I have a similar problem but mine was with Excel not PDF. Now I never had problem downloading CF-generated Excel files. Here is the code I always used: CFHEADER NAME=content-disposition VALUE=attachment; filename=something.xls CFCONTENT

RE: Error with a simple expression.

2002-09-27 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Yep, that's how my page is working. Using the cfqueryparam has fixed the

MM Broken Links

2002-09-27 Thread Stacy Young
http://www.macromedia.com/software/coldfusion/ seems anything pointing to CF is a 404 Stace AVIS IMPORTANT: --- Les informations contenues dans le present document et ses pieces jointes sont strictement confidentielles et reservees a l'usage de la (des)

RE: MM Broken Links

2002-09-27 Thread Robertson-Ravo, Neil (REC)
yep, there are a lot fo 404's recently...there must be an upgrade going on etc.. -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 15:21 To: CF-Talk Subject: MM Broken Links http://www.macromedia.com/software/coldfusion/ seems anything pointing to

RE: MM Broken Links

2002-09-27 Thread Stacy Young
Support is also busted from the front page flash portion -Original Message- From: Stacy Young Sent: Friday, September 27, 2002 10:21 AM To: '[EMAIL PROTECTED]' Subject: MM Broken Links http://www.macromedia.com/software/coldfusion/ seems anything pointing to CF is a 404 Stace

RE: MM Broken Links

2002-09-27 Thread Robertson-Ravo, Neil (REC)
yeah, I blame it on ASP :-p -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 15:27 To: CF-Talk Subject: RE: MM Broken Links Support is also busted from the front page flash portion -Original Message- From: Stacy Young Sent: Friday,

Re: Abnormal character display with CF5.0

2002-09-27 Thread CS
Never mind. It's the IE 6.0 (browse encoding is set to Auto-select) problem, once set to western european (ISO|windows), it never has a problem, IE issue. Don --- CS [EMAIL PROTECTED] wrote: Hi all, Has it ever occured to you that a string of characters including mostly letters to be

RE: CFLOCATION to external sites - failure

2002-09-27 Thread Dave Wilson
Maybe the server running ColdFusion has difficulty in resolving url's. Possibly due to incorrectly configured DNS. Check the links are obtainable when browsing direct to them from the server if you have access to it. Dave -Original Message- From: Cornillon, Matthieu [mailto:[EMAIL

OT: Starting PWS Automatically to Run Scheduled Tasks

2002-09-27 Thread Chris Montgomery
Howdy Cf-Talk, My ISP won't allow it's customers to use CFSchedule to run events[1] and so I need to execute an event on my remote site from my local dev box. I am running Personal Web Server on Win2k for development purposes. Can't remember how to make sure PWS starts automatically when my

Re: MX, IE6 and Client Vars

2002-09-27 Thread Chris Norloff
Sounds like you might be having cookie issues with IE6, with the new P3P privacy controls. Search the cf-talk archives for some earlier chat on that. The MM Knowledgebase and CF Discussion Forum probably have some info, too. Chris Norloff -- Original Message

Re: OT: Starting PWS Automatically to Run Scheduled Tasks

2002-09-27 Thread Patric Stumpe
Hi Chris, why don't you setup IIS5 on your machine which always runs as a service? (It even runs on Win2K-Pro) So you can be sure it's on boot-time. Patric CM Howdy Cf-Talk, CM My ISP won't allow it's customers to use CFSchedule to run events[1] and CM so I need to execute an event on my

RE: Slightly OT: Emulation software

2002-09-27 Thread Eric Dawson
there is a new release of VNC out there too, and a couple hybrids like tightvnc.com and esVNC. most recent VNC http://www.realvnc.com/download.html Eric From: John Beynon [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: Slightly OT: Emulation software

RE: CFLOCATION to external sites - failure

2002-09-27 Thread Turetsky, Seth
Would that really matter, doesn't cflocation just tell the browser to relocate to the specified url? -Original Message- From: Dave Wilson [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 10:37 AM To: CF-Talk Subject: RE: CFLOCATION to external sites - failure Maybe the

Re: OT: Starting PWS Automatically to Run Scheduled Tasks

2002-09-27 Thread Chris Montgomery
Howdy Patric, Friday, September 27, 2002, 9:49:31 AM, Patric Stumpe wrote: PS why don't you setup IIS5 on your machine which always runs as a PS service? (It even runs on Win2K-Pro) PS So you can be sure it's on boot-time. I actually did install IIS5 on my machine after I installed Win2k Pro.

RE: Uploading zero-length files

2002-09-27 Thread S . Isaac Dealey
That's what I would expect ... My cms only takes in one file at a time and there aren't any other inputs on that form, which would make restricting those file sizes fairly easy. :) On a form with a bunch of textareas would be a whole other ballgame... Textareas are great ... You specify on the

Help attaching a dynamic pdf to an email

2002-09-27 Thread Adam Sokolic
I'm attempting to generate a pdf through fields in a database (this part I have working fine) and then take that pdf file and attach it to an email. I'm using the Max Paperno tutorial to accomplish this, so the code reads: CFHEADER NAME=Content-Disposition VALUE=inline; filename=gift.fdf

Re: OT: Starting PWS Automatically to Run Scheduled Tasks

2002-09-27 Thread Jochem van Dieten
Chris Montgomery wrote: My ISP won't allow it's customers to use CFSchedule to run events[1] and so I need to execute an event on my remote site from my local dev box. I am running Personal Web Server on Win2k for development purposes. Can't remember how to make sure PWS starts

CFMX: perfmon error

2002-09-27 Thread Marcello Frutig
Any idea about this error? I'm running CFMX (updater installed) on Win2k Pro. Event ID: 1016 Description: The data buffer created for the ColdFusion MX Application Server service in the C:\WINNT\system32\cfperfmon_mx.dll library is not aligned on an 8-byte boundary. This may cause

RE: Slightly OT: Emulation software

2002-09-27 Thread Dave Wilson
Jason, I presume you mean you want the users to be able to open the access db using access on their local machines, as if they were all on the same network in an office and using a file server? If this is the case and you've got the db file residing on the web server and the web server is

RE: CFLOCATION to external sites - failure

2002-09-27 Thread Mike Townend
Are you includeing a http:// on the url so the browser knows not to pull a relative path ? As I have used code like.. CFLOCATION URL=../foo.htm ADDTOKEN=NO Plenty of times so that I can keep people out of directories... And if you arent includeing the http then it could be telling the browser

RE: Verity

2002-09-27 Thread Adam Reynolds
This doesn't give me information I need. Say I want to pass in the search criteria tree NOT oak To avoid getting any documents that mention oak. It is this type of clever stuff I am interested in. I need the context for doing this type of thing and lots of examples. -Original

RE: CFLOCATION to external sites - failure

2002-09-27 Thread Dave Wilson
I'm not sure exactly how cflocation works. Whether it (as you say) sends the redirect instruction to the client, leaving the dns resolution up to the client machine. Or. It is all handled on the server side. I think possibly the former of the two may be most likely after thinking about it. If

Re: OT: Starting PWS Automatically to Run Scheduled Tasks

2002-09-27 Thread Patric Stumpe
Hi Chris, you look in control-panel under services (should be named this way in english) and there you should find a WWW-service at the bottom of the list which has to be set to start: automatically. Hope this helps Patric CM Howdy Patric, CM Friday, September 27, 2002, 9:49:31 AM, Patric

Re: Verity

2002-09-27 Thread Stephen Moretti
Adam, C:\Program Files\Macromedia\ColdFusion Studio 5 Help\Developing_ColdFusion_Applications\indexSearch7.html Your example is sort of available in SIMPLE type searches. Your example is slightly flawed as CFSearch will assume, because you have no commas or logical operators, that it is a

RE: CFLOCATION to external sites - failure

2002-09-27 Thread Turetsky, Seth
yeah, not too sure either. might be along the lines of what mike is saying. you should be able to see what the url looks like after the exit page does the cflocation. if it looks like a legit url, and you copy and paste that and it works, cflocation must not be properly telling the browser to

Re: Uploading zero-length files

2002-09-27 Thread S . Isaac Dealey
Ahh... thanks Jochem, that's really informative... Greg Luce wrote: Isaac, I noticed that the content_length variable wasn't exactly the size of the uploaded file, but close. I was thinking it must also included the rest of the form data. Could that be? I think if the form

RE: Apache 2.0.42 - Stay away... stay w/ Apache 2.0.40

2002-09-27 Thread Matt Liotta
I have been running CFMX Enterprise with Apache 1.3.x in production for a while now with no issues related to Apache. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]]

A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Rick Faircloth
Hi, all. I'm really trying to figure out the Flash MX - CF paradigm, but am struggling. None of the training materials seem to be on target. I was wondering if there's a Flash MX - CF mailing list like this one for beginning ActionScript / Intermediate CF programmers? Perhaps I can pick more

Re: CFLOCATION to external sites - failure

2002-09-27 Thread Jochem van Dieten
Dave Wilson wrote: I'm not sure exactly how cflocation works. Whether it (as you say) sends the redirect instruction to the client, leaving the dns resolution up to the client machine. Or. It is all handled on the server side. cflocation sends an HTTP 302 Found statuscode to the browser

Encrypting cfquery

2002-09-27 Thread Michael Ross
I am looking into encrypting the data that goes from the application server to the db server. Does anyone have any experience in doing something like this. I am searching around the net to see whats out there, so anything else I could get here would be greatly appreciated. Thanks Mike

RE: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Robertson-Ravo, Neil (REC)
www.flashcfm.com -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 16:29 To: CF-Talk Subject: A Flash MX - Cold Fusion Mailing List? Hi, all. I'm really trying to figure out the Flash MX - CF paradigm, but am struggling. None of the training

RE: Apache 2.0.42 - Stay away... stay w/ Apache 2.0.40

2002-09-27 Thread Jesse Noller
Matt, I'm still trying to figure out what the devil is causing the problem. As we know, you're generally the exception to the rule with the linux stuff, k? Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy But I ned tacos! I need them or I will explode!

RE: Verity

2002-09-27 Thread S V
From what I have seen the documentation on Verity is poor and wanting. Using verity is not as simple from a users perpescptive. The examples for explicit searches are poor and sometimes do not work on CFMX. Posting for help on the Macromedia site does have givem me very little help. The way I

RE: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Greg Luce
Do you have Ben Forta's Book, Reality ColdFusionMX MM Flash Integration? I just got it yesterday. It looks like what you might want. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 11:29 AM To: CF-Talk Subject: A Flash MX - Cold Fusion

RE: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Vernon Viehe
I don't know of a mailing list (if there is one, lemme know!), but there is a discussion area in the Macromedia forums for this: http://webforums.macromedia.com/flash/categories.cfm?catid=250 -Vern -Original Message- From: Rick Faircloth To: CF-Talk Sent: 9/27/2002 8:28 AM Subject: A

Re: Encrypting cfquery

2002-09-27 Thread Jochem van Dieten
Michael Ross wrote: I am looking into encrypting the data that goes from the application server to the db server. Does anyone have any experience in doing something like this. I am searching around the net to see whats out there, so anything else I could get here would be greatly

RE: CFLOCATION to external sites - failure

2002-09-27 Thread Dave Wilson
Ahhh, cheers Jochem. Then the problem is the client resolving the url's. Well I'd taken it for granted that the url's in the db were all fully qualified, i.e. including http:// etc as Mike had suggested, but it's starting to sound like Mike is correct, unless the client machine is having

Re: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Michael Dinowitz
Figleaf has one. I had one set up but the traffic was so low and figleaf had the flash lists covered that I just let it drop. http://chattyfig.figleaf.com/ Hi, all. I'm really trying to figure out the Flash MX - CF paradigm, but am struggling. None of the training materials seem to be on

RE: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Turetsky, Seth
for learning more just about actionscripting, flashkit.com really helped me out. not sure if they have a mailing list though, but the message boards are really good. once you get past learning the quirks of flash and actionscripting, you should make out better. -Original Message- From:

Re: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Critter
oi Rick!! http://chattyfig.figleaf.com/ -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion Blog=http://blog.ctzc.com; Friday, September 27, 2002, 11:28:54 AM, you wrote: RF Hi, all. RF

Re: Verity

2002-09-27 Thread Jeff Garza
Verity has a bit of a funky syntax and can do some smart parsing of your query string. To get the NOT operator to work, enclose it in angle brackets NOT tree NOT oak That should work. Cheers, Jeff Garza - Original Message - From: Stephen Moretti [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: Encrypting cfquery

2002-09-27 Thread Thomas Chiverton
I am looking into encrypting the data that goes from the application server to the db server. Does anyone have any experience in doing something like this. I am searching around the net to see whats out there, so anything else I could get here would be greatly appreciated. You could use

RE: Apache 2.0.42 - Stay away... stay w/ Apache 2.0.40

2002-09-27 Thread Matt Liotta
I'd be curious what the typical setup is of the people having problems. The following questions come to mind. What version of Apache 1.3.x has problems? Just 1.3.24 or others? Is the Apache installation from source or RPM? Does the CFMX updater have anything to do with it? I should note that I

Re: Verity

2002-09-27 Thread Jeff Garza
You can find a ton of documentation in the CF5.0 Studio help files. For Example: /Help/Developing_ColdFusion_Applications/indexSearch7.html has a listing the operators and syntax to use for simple and explicit queries. This information is also listed on the ColdFusion MX Livedocs site

Re: OT: Starting PWS Automatically to Run Scheduled Tasks

2002-09-27 Thread Chris Montgomery
Howdy Patric, Friday, September 27, 2002, 10:11:09 AM, Patric Stumpe wrote: PS you look in control-panel under services (should be named this way in PS english) and there you should find a WWW-service at the bottom of the PS list which has to be set to start: automatically. Yep, that's the way

RE: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Rick Faircloth
I'll check that out at Barnes Nobles store in Savannah. They have a lot of books on the shelf. Maybe that one will be there. Thanks for the tip! Rick -Original Message- From: Greg Luce [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 11:29 AM To: CF-Talk Subject: RE: A

RE: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Robertson-Ravo, Neil (REC)
They have a lot of books on the shelf handy...being a bookstore :-) sorry couldnt resist; its Friday and its time to hit the bar. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 17:04 To: CF-Talk Subject: RE: A Flash MX - Cold Fusion Mailing

Re: OT: Starting PWS Automatically to Run Scheduled Tasks

2002-09-27 Thread Chris Montgomery
Howdy Jochem, Friday, September 27, 2002, 9:57:45 AM, Jochem van Dieten wrote: JvD Why would you need PWS for that? You want to make a page request to your JvD host, not serve pages yourself, right? Yeah, after thinking about it, you're correct. Makes sense now. JvD I would recommend looking

Re: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Howie Hamlin
If you can wait for a shipment you can get it at www.bookpool.com for $24.95. Regards, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 *** Please vote for iMS here:

RE: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Rick Faircloth
Hi, Seth. Saw a lot of Flash 4 and 5 on Flashkit.com, but nothing on MX. I know some of it will be applicable, but would it be better just to stick with working through MX tutorials? I assume a lot has changed with the new Flash Remoting, etc. Rick -Original Message- From: Turetsky,

RE: Verity

2002-09-27 Thread Angel Stewart
I totally agree. And actually I have another Verity problem. Trying to index about 71,000 records in an Access database, and it continuously fails. How would I go about this, indexing say 10,000 records which works at a time and then adding new records to the collection by adjusting the

cfhtmlhead

2002-09-27 Thread Critter
oi CF-Talk,!! I've got a tag that says this: cfhtmlhead text='SCRIPT LANGUAGE=JavaScript TYPE=text/javascriptwindow.open(../index.cfm,mainApp,width=+parseInt(screen.availWidth * .90)+,height=+parseInt(screen.availHeight * .90)+,status=yes,top=0,left=0,resizable);/SCRIPT' but when the

RE: Verity

2002-09-27 Thread Robertson-Ravo, Neil (REC)
there is a limit on a Verity collection, I think its even smaller if you have a restricted IP version [demo] -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 17:04 To: CF-Talk Subject: RE: Verity I totally agree. And actually I have another

RE: A Flash MX - Cold Fusion Mailing List?

2002-09-27 Thread Rick Faircloth
Yuck, yuck... It's handy to have a real bookshelf to browse, instead of virtual ones only... Yes, it's Frday! Rick -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 11:59 AM To: CF-Talk Subject: RE: A Flash

  1   2   3   >