RE: Referencing an array item

2001-05-29 Thread Steve Vosloo
But I have 3 arrays, so it will really need to look like: Application.SM1[n][element] Application.SM2[n][element] Application.SM3[n][element] I can't see how else to work around this. -Original Message- From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]] Sent: Monday, May 28,

Re: SSL, IIS CF...

2001-05-29 Thread Brandon Wood
Jim, Right now, I have only 2 IP Addresses available to use. 1 for the machine, and 1 for the site. Right now, I am using the machine's IP and the site's for the regular http site. I haven't dedicated one of those for the SSL key, which I could. Right now, when I click advanced, I only see

Request vs application scope

2001-05-29 Thread Steve Vosloo
I am using the following line of code in my application.cfm cfset request.HomeDir = http://127.0.0.1/work/ACME/may2001/website; Then elsewhere in the site I refer all links and images to: cfoutput#request.HomeDir#/cfoutput Is this OK to do? I'm trying to avoid using the application scope. Are

Logon Attempts

2001-05-29 Thread Jerry Staple
Could anyone inform tell me what would be the best way to implement a logon page where the user gets 3 attempts to logon,after the 3 attempts the user is directed elsewhere.I have tried setting a variable on the application page then adding +1 when it goes to the Logon_Action.cfm but to no avail.

Re: Logon Attempts

2001-05-29 Thread Bryan LaPlante
To resolve the problem put this code into login.cfm cfif isDefined(client.counterVar) cfset client.counterVar = IncrementValue(client.counterVar) cfelse cfset client.counterVar = 1 /cfif You can use cfinclude or call the login.cfm as a custom tag, either way the client scope will persist

Curious about CFIF

2001-05-29 Thread Tony Hicks
When you have a CFIF with a CFELSE or CFELSE IF... does cold fusion only read the code inside the matching condition? For instance cfif name is 'bob' Name = Bob cfelseif name is 'joe' Name = Joe /cfif If the name is 'bob' does CF pay any attention to the content to be processed if the name is

RE: Spectra still going?

2001-05-29 Thread Thomas Chiverton
Its still being bug fixed, iirc, and will eventualy be rolled into the mainstream CF server, and/or community sourced. -Original Message- From: JoshMEagle [mailto:[EMAIL PROTECTED]] Sent: 25 May 2001 13:22 To: CF-Talk Subject: Spectra still going? I heard recently that Spectra

RE: rules for random phrase generators

2001-05-29 Thread Daniel Kemp
-Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED]] Has anyone developed (in CF or otherwise) a random phrase or sentence generator? I did a simple hack, which proved fun (but v.slow) for a while. (look at http://www.sincity.com/penn-n-teller/pcc/shaney.html, and do a

RE: Paste Screen Capture into a browser and submit it

2001-05-29 Thread Mark Warrick
The web is a stateless environment. While a person browses the web with a standard web browser, connections to a website are only opened long enough to process a client request to or from a server. It is therefore impossible to use standard HTML to maintain a connection between the client and

RE: Logon Attempts

2001-05-29 Thread Mark Warrick
Try putting this in the top of your template. Make sure your session variables are turned on in the application.cfm file. cfparam name=session.login_attempts default=0 cfset session.login_attempts=session.login_attempts+1 cfif session.login_attempts gt 3 cflocation url = whatever.cfm

RE: Spectra still going?

2001-05-29 Thread Andrew Scott
The reports that I have read and some are officially from Macromedia, is that they have indicated that Spectra will no longer be maintained in its current format... But that doesn't mean Spectra is gone, I think Macromedia have realised that the overheads Spectra have introduced will be

RE: Curious about CFIF

2001-05-29 Thread Mark Warrick
The conditional statement is evaluated in order. In this case, if the value of the var name was bob, then Name = Bob would be displayed. If the value of the var name was bob's content, then neither of these conditions would be true, therefore, nothing would display. ---mark

RE: Spectra still going?

2001-05-29 Thread Neil Clark
Agreed - I think it should have been in CF from the beginning (well as part of the server anyhow!) ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Logon Attempts

2001-05-29 Thread Jerry Staple
Cheers Jerry Staple -Original Message- From: Mark Warrick [mailto:[EMAIL PROTECTED]] Sent: 29 May 2001 10:39 To: CF-Talk Subject: RE: Logon Attempts Try putting this in the top of your template. Make sure your session variables are turned on in the application.cfm file. cfparam

cfhttp still has bugs?

2001-05-29 Thread Michael Lugassy
I installed SP2 on my cf 4.5.1 and I'm still experincing problems with cfhttp very slow, very unstable, cause my server to hung etc. doesn't the SP2 fixed that? is there a good CFX replacement? I need it to be fast and reliable enough for extensive use (just for fetching html from remote servers

RE: Curious about CFIF

2001-05-29 Thread Daniel Lancelot
What I have heard, is that when using CFIF, the code within the CFIF is parsed, even if the condition is not met. However, when using cfswitch, only the section matching the criteria is parsed. (this is second hand from some notes from a presentation given by Ben Forta - I am only 95% certain

Re: Curious about CFIF

2001-05-29 Thread Bud
On 5/29/01, Tony Hicks penned: When you have a CFIF with a CFELSE or CFELSE IF... does cold fusion only read the code inside the matching condition? For instance cfif name is 'bob' Name = Bob cfelseif name is 'joe' Name = Joe /cfif If the name is 'bob' does CF pay any attention to the content

Night mare on Elm.. domain? lol (cfif thread)

2001-05-29 Thread Tony Hicks
I am the chief webmaster for a static html website and no matter how hard I try, cannot convince the boss to use CF.. but anyway.. index.htm was 102k of code and I couldn't figure out why... there are many webmasters on the site, I just happen to take care of most of the site.. well someone else

Re: IE4.5 Mac form problem issue! Help.

2001-05-29 Thread Bud
On 5/28/01, Jeff Fongemie penned: Hello cf-talk, A mac user (HTTP_USER_AGENT = Mozilla/4.0 (compatible; MSIE 4.5; Mac_PowerPC)) This error message is caused by the second line of a page called authenticate.cfm! An error occurred while evaluating the expression: #button# is L O G I N I'm

CF 5 is out..

2001-05-29 Thread Erki Esken
yep.. it's out, download the eval: http://www.macromedia.com/software/coldfusion/ -erki ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Request vs application scope

2001-05-29 Thread Daniel Lancelot
Absolutely no problem... I do it regularly... -Original Message- From: Steve Vosloo [mailto:[EMAIL PROTECTED]] Sent: 29 May 2001 08:34 To: CF-Talk Subject: Request vs application scope I am using the following line of code in my application.cfm cfset request.HomeDir =

RE: Request vs application scope

2001-05-29 Thread Steve Vosloo
Thanks. Can I put any data in there that I want to use across the site? And I don't have to apply CFLOCKs do I? -Original Message- From: Daniel Lancelot [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 2:32 PM To: CF-Talk Subject: RE: Request vs application scope

RE: Request vs application scope

2001-05-29 Thread Daniel Lancelot
Yes thats right. -Original Message- From: Steve Vosloo [mailto:[EMAIL PROTECTED]] Sent: 29 May 2001 13:51 To: CF-Talk Subject: RE: Request vs application scope Thanks. Can I put any data in there that I want to use across the site? And I don't have to apply CFLOCKs do I?

Form Caching

2001-05-29 Thread Greg Luce
I'm having problems with people's browsers caching form-pages. I'm using CF 4.5/sybase/apache and of course Fusebox. If I change the way a form page works, users start getting errors which I see are caused by submitting older versions of that form which don't work now. Is there a way to

Jeff replying to message: 'IE4.5 Mac form problem issue! Help.', dated Tuesday, May 29, 2001, at 7:16 AM

2001-05-29 Thread Jeff Fongemie
Hi Bud, On Tue, 29 May 2001, at 07:16:13 [GMT -0400] you carefully wrote: B I'm not sure about with IE 4.5, but using NN (Mac and Windows), if B you submit a form by hitting Enter, the button form variable doesn't B get passed. If you have 2 buttons the form doesn't submit, and if you B

Re: Excluding Time in Date/Time db Query

2001-05-29 Thread Dave f
Have you tried DateFormat() - Original Message - From: Mark Leder [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 29, 2001 2:12 AM Subject: Excluding Time in Date/Time db Query I'm doing a query where I want to get values from a date/time field (Access). I want the

Correctly using CFOUTPUT

2001-05-29 Thread J Winter
Hi, I've always been curious about this. What is the correct way? Does it matter? Listing 1: CFOUTPUT TABLE TR TD#var1#/TD /TR TR TD#var2#/TD /TR /TABLE /CFOUTPUT Listing 2: TABLE TR

Re: Paste Screen Capture into a browser and submit it

2001-05-29 Thread Bryan LaPlante
If you are on an intranet and you just need to get to the users screen, you may want to look at this kind of solution. http://www.uk.research.att.com/vnc/ - Original Message - From: Don VanMeter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 29, 2001 1:00 AM Subject:

RE: Request vs application scope

2001-05-29 Thread Steve Vosloo
Brilliant! So what's the downside? The variables are not persistent across pages are they? -Original Message- From: Daniel Lancelot [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 2:56 PM To: CF-Talk Subject: RE: Request vs application scope Yes thats right.

Re: whitespace

2001-05-29 Thread stas
Nate Weiss's CF_StripWhiteSpace can compact all of the code on one line, more dramatically than Bjork's tag... or it can left-adjust everything. With proper using of cfinclude you could eliminate all white space, but I've noticed it slows down pages quite a bit.

RE: Correctly using CFOUTPUT

2001-05-29 Thread Scott Wolf
I personally have a tendency to use Listing 1's format more often than I use the one in Listing 2. The only difference is that I put in my table tags BEFORE my CFOUTPUT tags, that way if I'm looping through a query's results, I don't have a new table being created for each record. :) Scott

retrieving files using cfhttp

2001-05-29 Thread Chris Rice
Does anybody know if there is a way to output a binary image file retrieved using CFHTTP without first saving it to disk? I am attempting to serialize the image into WDDX, and have managed to do it by using the file and path attributes of CFHTTP (then using CFFILE), but would prefer not to

RE: Curious about CFIF

2001-05-29 Thread Ken Beard
Take this with a grain of salt.. i could be wrong: CF server first passes over the entire template(s) to be processed, not evaluating the logic. This is when it finds blatant syntax errors, i believe this is also when it compiles the pcode from the cf code you have written. Then the server

RE: Correctly using CFOUTPUT

2001-05-29 Thread Katherine Maltby
It depends how you want the results to be displayed, but I'd recommend putting the cfoutput tags inside the table before the tr as otherwise you'll open a new table for each line of results, which isn't good if you're pulling rows and rows back from a database. Kath Web Production Director

RE: Request vs application scope

2001-05-29 Thread Dave Watts
I am using the following line of code in my application.cfm cfset request.HomeDir = http://127.0.0.1/work/ACME/may2001/website; Then elsewhere in the site I refer all links and images to: cfoutput#request.HomeDir#/cfoutput Is this OK to do? I'm trying to avoid using the application

RE: Excluding Time in Date/Time db Query

2001-05-29 Thread Mark Leder
I'm using date format in the CFOUTPUT area. However, I need to filter the query select statement so that it does not return the time - then I can group by date, regardless of time on a particular date. Thanks, Mark -Original Message- From: Dave f [mailto:[EMAIL PROTECTED]] Sent:

RE: Request vs application scope

2001-05-29 Thread alistair . davidson
That's the downside! Also, they are unique to each request, so memory processor usage will increase by a set amount for each page request. e.g. APPLICATION scope cflock scope=APPLICATION . cfif NOT IsDefined( APPLICATION.TestVar ) !--- Set up

Re: retrieving files using cfhttp

2001-05-29 Thread Michael Lugassy
Chris Hi, are u using CF's built in tag = CFHTTP? don't you have problems with it? It keeps on eating ram on my server and hunging it frequently, although I installed the latest SP2 for my CF 4.5.1 are u using a diffrent com/cfx? Thanks, Michael Lugassy - Original Message - From:

WhoIs tag that returns a variable

2001-05-29 Thread Russel Madere
Hey all, I need a free WhoIs tag that will return the results as a variable, not as part of the HTML page. I looked at Lewis Sellars CFX_TCPIPClient tag and thought it was too complicated for what I need. The existing CFX_WhoIs by Distributed Data System is perfect, except it doesn't return the

RE: IP lookup

2001-05-29 Thread Dave Livingston
*This message was transferred with a trial version of CommuniGate(tm) Pro* www.arin.net for North America www.ripe.net for Europe www.apnic.net for Asia-Pacific www.nic.mil for Military Hope that helps. Dave Livingston 512-694-1669 [EMAIL PROTECTED] -Original Message- From: Guy

RE: Request vs application scope

2001-05-29 Thread Daniel Lancelot
But using request vars means the memory is released immediately the request has finished... I would agree if you are planning to store large/complex data (esp query result sets etc) then its probably best to use app scope... But would you consider it best if there are just a few simple vars

RE: WhoIs tag that returns a variable

2001-05-29 Thread Dylan Bromby
try one of these? http://devex.allaire.com/developer/gallery/SearchResults.cfm?keywords=whois -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 7:22 AM To: CF-Talk Subject: WhoIs tag that returns a variable Hey all, I need a free WhoIs tag

VeRy tricky evaluate()

2001-05-29 Thread Michael Lugassy
I'm in a complex situation here which gives NO ERRORS but doesn't seem to work right. please help. My project has several unique sections (where the key=grid) Every user can upload several images to each group. everytime he uploads at least 1 file to a new group, I'm assigning him a session

Re: WhoIs tag that returns a variable

2001-05-29 Thread savan . thongvanh
usage question: Can you assign the output of a cfexecute to a variable? (i.e., whois, nslookup, ping, etc) Russel Madere [EMAIL PROTECTED] on 05/29/2001 09:22:05 AM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: WhoIs tag that returns a variable Hey

URL Decrypt and Encrypt

2001-05-29 Thread Gordon Burns
Passing values in the URL and would like to hide the true values. Can someone give me an example of using encrypt and decrypt and any tips, problems with this method. Thanks Gordon ~~ Structure your ColdFusion code with Fusebox. Get the

Re: WhoIs tag that returns a variable

2001-05-29 Thread Howie Hamlin
We have one that may suit your needs: www.coolfusion.com/downloads.cfm HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server - Original Message - From: Russel Madere

RE: Paste Screen Capture into a browser and submit it

2001-05-29 Thread Dave Watts
I am stumped. Are there any CF Gods out there? No, there aren't any CF gods. The whole point of CF, to me, is that you don't have to be a god to be a good CF programmer. I need to add the capability of a user to paste a screen capture (alt - print screen) of a windows application error, into

Re: WhoIs tag that returns a variable

2001-05-29 Thread Tony Schreiber
Not the perfect solution, but in the meantime, you could right the resulting output of CFX_Whois to a file and then read it in with CFFILE as a variable... Hey all, I need a free WhoIs tag that will return the results as a variable, not as part of the HTML page. I looked at Lewis Sellars

new Logo

2001-05-29 Thread Neil Clark
Is is me or does anyone like the new CF logo? I know it is an xtension of the old but come on at least before it looked good with the hand et al. did Neville B have a hand in this re-jig? you look at how cool and dynamic the other logos are and CF seriously, seriously lets the stable down.

RE: WhoIs tag that returns a variable

2001-05-29 Thread Russel Madere
It doesn't look like you can. You can redirect the output to a file and use CFFILE to read it in as a variable though. For reasons I would rather not discuss, we want to use a CFX or a DCOM for this. What I might do for now is put the CFX_WhoIs call in another template and use CFHTTP to catch

RE: WhoIs tag that returns a variable

2001-05-29 Thread Russel Madere
I did. It seems all these tags do is return the results into the HTML stream. If any of the authors of these are here and are willing to share the source, I can modify the CFX to meet our needs. Russel Madere, Jr. Senior

RE: Executing a CF page

2001-05-29 Thread Rich Boekweg
I've heard about being able to decode/decrypt encrypted pages, but never seen it done. Where can I find more info? Rich Boekweg -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Monday, May 28, 2001 11:15 PM To: CF-Talk Subject: Re: Executing a CF page Just

RE: Correctly using CFOUTPUT

2001-05-29 Thread J Winter
Hi, let's assume that there is no query for the CFOUTPUT tag. Which would be better coding style? I've seen it done both ways: CFOUTPUTing each variable and CFOUTPUTing/encapsulating the entire template. Sometimes when I run into things I think what do the pros do?. What would the pros do in

RE: Referencing an array item

2001-05-29 Thread Christopher Olive, CIO
well, you collapse the three arrays into an uber array, called SM. so your original statement might be.. CFSET Application.SM = ArrayNew() cfset Application.SM[1] = SM1 cfset Application.SM[2] = SM2 cfset Application.SM[3] = SM3 then use your number as an index into your outer array. chris

RE: WhoIs tag that returns a variable

2001-05-29 Thread Dylan Bromby
there's a version of CFX_ShellExec or something similar that lets you return the output in a var. let me hunt around and see if i can find which tag it was. -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 8:39 AM To: CF-Talk Subject: RE:

RE: WhoIs tag that returns a variable

2001-05-29 Thread mherbene
You could use wrap one of these text-emitting tags inside a module and use the generatedcontent attribute to catch the emitted text and put it in a variable. -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 11:39 AM To: CF-Talk Subject: RE:

request scope confusion

2001-05-29 Thread sebastian palmigiani
I am trying to understand the request scope. What is the difference between putting cfset DSN = 'foo' vs. cfset request.DSN = 'foo' in the application.cfm template or in any template? Thanks, Sebastian ~~ Structure your ColdFusion code with

RE: WhoIs tag that returns a variable

2001-05-29 Thread Rich Wild
I did. It seems all these tags do is return the results into the HTML stream. If any of the authors of these are here and are willing to share the source, I can modify the CFX to meet our needs. You don't get much more low-level than Lewis' TCPIP *COM* object (new and improved - even

RE: WhoIs tag that returns a variable

2001-05-29 Thread Russel Madere
Thank You Howie. That looks like exactly what we need. I'm going to set it up and test it. Thanks again. Russel Russel Madere, Jr. Senior Web Developer ICQ: 5446158 http://www.TurboSquid.com

RE: Form Caching

2001-05-29 Thread Mark Warrick
Greg, First of all, Fusebox has absolutely nothing to do with this problem. How often are you changing this form? The simplest thing you can do to make sure that a user cannot cache that form is to append a random number to the URL or form path to the fuseaction. That way the browser will

RE: Correctly using CFOUTPUT

2001-05-29 Thread Mark Warrick
You should never add extraeneous code into your templates, therefore Listing 1 would be the better candidate. ---mark Mark Warrick - Fusioneers.com Email: [EMAIL PROTECTED] Phone: 714-547-5386 http://www.fusioneers.com http://www.warrick.net

RE: WhoIs tag that returns a variable

2001-05-29 Thread Russel Madere
That's an idea I'll have to keep stashed away. I forgot about that attribute. Thanks Russel Madere, Jr. Senior Web Developer ICQ: 5446158 http://www.TurboSquid.com Some days you eat the bear; some days the

RE: CF 5 is out..

2001-05-29 Thread Janssen Dolores Y (Contractor)
are there plans for a new version of studio or a new sp to 4.5? i didn't see anything in the cf5 announcement on macromedia's site... -- Dee Janssen Web Developer LESCO/LOGSA 256-955-9579 [EMAIL PROTECTED]

RE: request scope confusion

2001-05-29 Thread Andrew Tyrone
-Original Message- From: sebastian palmigiani [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 12:01 PM To: CF-Talk Subject: request scope confusion I am trying to understand the request scope. What is the difference between putting cfset DSN = 'foo' vs.

RE: WhoIs tag that returns a variable

2001-05-29 Thread Russel Madere
I'm having some problems installing the DLL (my box, not the tag) and I have a quick question. Will the tag accept an IP address in the Domain attribute? Russel Madere, Jr. Senior Web Developer ICQ: 5446158

Re: WhoIs tag that returns a variable

2001-05-29 Thread Howie Hamlin
No problem. I could probably get you the source code as well if you need it (no promises, though). Regards, Howie - Original Message - From: Russel Madere [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 29, 2001 12:11 PM Subject: RE: WhoIs tag that returns a

RE: Request vs application scope

2001-05-29 Thread Dave Watts
Brilliant! So what's the downside? The variables are not persistent across pages are they? Request variables aren't persistent across pages, as Session, Application and Server variables are. However, you're using them in Application.cfm, so they'll be available on every page. They'll simply

RE: CF 5 is out..

2001-05-29 Thread Andrew Tyrone
-Original Message- From: Janssen Dolores Y (Contractor) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 12:28 PM To: CF-Talk Subject: RE: CF 5 is out.. are there plans for a new version of studio or a new sp to 4.5? i didn't see anything in the cf5 announcement on

RE: Request vs application scope

2001-05-29 Thread alistair . davidson
Depends on a lot of things - complexity of variables, how often they're going to change, how many users you're expecting, how performance-critical the app is, how long it takes to obtain the values that you're going to store (e.g. if you're storing, say, a five-value array, but populating that

RE: CF 5 is out..

2001-05-29 Thread Garza, Jeff
I think that currently the only thing available is the new set of VTM's and TagDefs for CF5.0. You can find them at the Macromedia site as well. Kinda nice to have an interface for all those CFGRAPH parameters!!! Jeff Garza Web Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL

RE: CF 5 is out..

2001-05-29 Thread Mike Sprague
Get the tag update here: http://www.macromedia.com/software/coldfusion/resources/cf_tag_update/ *** REPLY SEPARATOR *** On 5/29/2001 at 11:28 AM Janssen Dolores Y (Contractor) wrote: |are there plans for a new version of studio or a new sp to 4.5? i didn't |see |anything in

RE: CF 5 is out..

2001-05-29 Thread John Wilker
From what I've heard Studio 5 is due out a ways from now. It'll be Studio Ultra Dev I think, but several months or more out I think was the projection I heard. J. John Wilker Web Applications Consultant Macromedia Certified ColdFusion Developer www.red-omega.com http://www.red-omega.com

RE: Using IE5 HTTP com object

2001-05-29 Thread Howarth, Craig (IBK-NY)
I use this all the time for intranet development. It is really useful for client-side validation and dynamic page building. For validation, use the object to post values to a page and then wait for the results. In one application, I use this to validate state/country/postal code

RE: CF 5 is out..

2001-05-29 Thread Matthew Fusfield
Macromedia's site lists the ColdFusion Studio Tag Infusion Pack/Studio Update which has the new tag definitions. (http://www.macromedia.com/software/coldfusion/downloads/) Matt -Original Message- From: Janssen Dolores Y (Contractor) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001

RE: CF 5 is out..

2001-05-29 Thread Raymond Camden
There will be a new version of Studio. For now, however, you can download a Studio update that will enable your Studio editor to recognize CF5 tags. It is in the CF5 Server installer and I'm pretty sure you can download it separately as well. Ah, here we go:

RE: CF 5 is out..

2001-05-29 Thread pcosta
There is a free update to ColdFusion Studio that adds VTML and help for the CF5 tags. You can download it at http://www.macromedia.com/software/coldfusion/resources/cf_tag_update/conten ts.html and it's on the CD if you purchase it. CF Studio 5 is in the works. See the FAQ for more info

Re: URL Decrypt and Encrypt

2001-05-29 Thread Joseph Thompson
!---Page1.cfm--- cfset YourID=13 !---Set an encryption key--- cfset thekey = AnyKey001 !---Encrypt the value--- cfset EncryptedID=#URLEncodedFormat(Encrypt(YourID, thekey))# cfoutput a href=Page2.cfm?ID=#EncryptedID#Link/a /cfoutput !---Page2.cfm--- !---Use Same Key--- cfset thekey =

Re: WhoIs tag that returns a variable

2001-05-29 Thread Tony Schreiber
Actually, there's a CF_EXECUTE tag that wraps CFEXECUTE so that it returns the output as a variable. Genius. Forgot about that! usage question: Can you assign the output of a cfexecute to a variable? (i.e., whois, nslookup, ping, etc) Russel Madere [EMAIL PROTECTED] on 05/29/2001

RE: CF 5 is out..

2001-05-29 Thread Jeffry Houser
I've heard that development hasn't started yet, but Studio 5.0 should be out around December. The VTM for CF 5.0 will be included on the CF 5 and be available for download via the web. None of this constitutes an official word from Allaire, it's just information that I've heard. At

Re: CF 5 is out..

2001-05-29 Thread Erki Esken
Btw, I just noticed something. The CF5 Feature Comparison Matrix says that Merant Wire Protocol Database Drivers are available to all versions of CF5 (Pro and Ent) but ColdFusion 5 General Information FAQ states that Wire Protocol Database Drivers are available only with ColdFusion Server

RE: Request vs application scope

2001-05-29 Thread Patricia Lee
no they aren't. If you set a request variable in the application.cfm it's pretty much the same as setting a local variable in terms of persistence... every page will recreate the variable anew. Request variables are different, though, from local variables in that they can be seen inside of

Re: SSL, IIS CF...

2001-05-29 Thread Brandon Wood
Yes, it is definitely the code calling Web Trends Live that is messing up the SSL page. I am trying to trap for the existence of https: in a page request but cannot seem to find any CGI or request variable that will return whether or not a page request is requesting http or https. Has anyone

FieldNames from a CFQUERY

2001-05-29 Thread David Sterling
I have seen this before, I have even used it before, but right now I just cant recal the code to cfoutput the fieldnames from a Cfquery can anybody help? David Sterling ~~ Structure your ColdFusion code with Fusebox. Get the official book at

CFMAIL HTML Images

2001-05-29 Thread David Adams
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C0E86E.EC4A41F0 Content-Type: text/plain; charset=iso-8859-1 Hello. I'm trying to create html mail using cfmail.

serving jsp

2001-05-29 Thread Adrian Cesana
I am running WebsitePro and CF 4.01 and need to serve some JSP pages. What do I need to do this. I have the JSP being served thru Tomcat currently but need to integrate it into out production website (SSL) which uses the above configuration. Is there some method that I can pull the page from

SLightly OT: Certification

2001-05-29 Thread Scott Mulholland
What was the deadline for taking the exam and having it cover 5.0 certification? Thanks, Scott ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: CF 5 is out..

2001-05-29 Thread Janssen Dolores Y (Contractor)
thanks, i got down to the fine print area and found that the solaris version isn't due out until august - wish they would clarify it a bit more on the initial announcement page, not everybody uses nt for a server ;P some of us get to play on the big servers

Need Help with CF/W2K/Access2000 Memory Leak Problem

2001-05-29 Thread Gary Robertson
html Thanks for listening:br br A recent development: It appears that after each page load memory gets allocated and never de-allocated.nbsp; When I run the CYCLE.BAT sequence of programs all gets better (for 5 to 8 minutes) and then system starts to run out of RAM again.nbsp; Using the Windows

RealAudio and ColdFusion

2001-05-29 Thread David Grabbe
Howdy folks, I'm running CF 4.5.1. The organization I work for has a weekly program which we stream via RealAudio. The RealAudio aspect is working just fine, but I'm wondering if there is a way for CF to detect whether or not the RealAudio stream is active or not (i.e. check for the existence

Re: Request vs application scope

2001-05-29 Thread stas
Isn't it a bit illogical to use request scope for storing constants if they can be overwritten? I understand that there is no sense in doing cfif isdefined(request.myvar) as the variable will be destroyed no matter what, so you have to always re-initialize it. Does that carry more or less

RE: OT DBMS select distinct

2001-05-29 Thread Sima Lee
Hi John, where r.name in (select distinct name from resources) Is this working? If there are 30 records in all , the select distinct clause may return 20 but when execute the where r.name in.. , the statement still return 30 records, because the other 10 name is also meet the criteria : where

Re: SSL, IIS CF...

2001-05-29 Thread Brandon Wood
Jim, Yes, I got it to work... Here is the code I used to keep the Web Trends code from showing. I sure hope this helps people out who might be going through these problems themselves. cfparam name=CGI.HTTPS default=off cfif #CGI.HTTPS# IS off cfinclude

Advices on dynamic SQL, please

2001-05-29 Thread Julia Phu
Hi, guru, I'm seeking your advices for a better solution on dynamic SQL (I guess). Users want to select ABC from a form to view anything under ABC. What is your advices on how to handle it? Table A: col1 col2 col3 col4 aaABC XYdescription1 abABC XYdescription2 acABC

SQL Question...

2001-05-29 Thread coldfusion
ok, this is probably a simple question, but i'm hoping somebody out there can help me. i have a database of articles and i am trying to join the article table with the author table, but i also have a table that has all the individual pages of an article (articles can be mulitple pages long). i

Re: FieldNames from a CFQUERY

2001-05-29 Thread Christopher Porter
cfoutput#queryname.columnlist#/cfoutput -chris On Tue, 29 May 2001, David Sterling wrote: I have seen this before, I have even used it before, but right now I just cant recal the code to cfoutput the fieldnames from a Cfquery can anybody help? David Sterling

RE: SSL, IIS CF...

2001-05-29 Thread Bill Holloway
Two solutions: If you don't care about tracking the secure pages, you can take advantage of the cgi.server_port_secure variable and include or exclude the web trends code accordingly. Also, I know you can generate a https:// version of the web trends tag from the webtrendslive.com site under

RE: CF 5 is out..

2001-05-29 Thread Lee Fuller
The Enterprise version is the only one with the Merant drivers. Lee Fuller Chief Technical Officer PrimeDNA Corporation / AAA Web Hosting Corporation We ARE the net. http://www.aaawebhosting.com -Original Message- From: Erki Esken [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29,

problem with CFFTP on hosted server

2001-05-29 Thread Marc Garrett
Hi, I am having problems getting CFFTP to work on a shared server hosted at Intermedia. The following code works on localhost (I have already established the connection): CFFTP ACTION=GetFile STOPONERROR=Yes NAME=GetBR_Res DIRECTORY=Database/ CONNECTION=my_query

Re: SSL, IIS CF...

2001-05-29 Thread Kevin Miller
IIS 4.0 sets a CGI variable called HTTPS that is set to either On or Off. I haven't done any testing with IIS 5.0 yet. Kevin [EMAIL PROTECTED] 05/29/01 11:23AM Yes, it is definitely the code calling Web Trends Live that is messing up the SSL page. I am trying to trap for the existence of

RE: serving jsp

2001-05-29 Thread Lee Fuller
Hello Adrian, Take a look at Macromedia's JRun. http://allaire11.allaire.com/download/showfamily.cfm?DownloadType=Evaluation FamilyID=1953B5EC-7AC0-11D4-849E0010B547F60A Lee Fuller Chief Technical Officer PrimeDNA Corporation / AAA Web Hosting Corporation We ARE the net.

  1   2   >