Re: WYSIWYG html editor applet?

2002-08-15 Thread Joel Firestone
Chris: I like soEditor Lite. Check it out here: http://www.siteobjects.com/pages/soeditoroverview.cfm You can download an encrypted free trial. HTH! Joel - Original Message - From: Chris Edwards [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 15, 2002 10:08 AM

Re: SSL on form submission

2002-07-30 Thread Joel Firestone
I always do it for the form. The submission would then be protected. HTH - Original Message - From: Chad Gray [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 30, 2002 10:55 AM Subject: SSL on form submission Im wondering if when a form is submitted at what point

Re: SSL on form submission

2002-07-30 Thread Joel Firestone
- From: Chad Gray [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 30, 2002 11:05 AM Subject: RE: SSL on form submission That is the safe way I would assume.. but is it necessary? -Original Message- From: Joel Firestone [mailto:[EMAIL PROTECTED]] Sent: Tuesday

Re: SSL on form submission

2002-07-30 Thread Joel Firestone
Sorry for the previous message. I stand corrected. It appears I didn't understand it correctly. Thanks. - Original Message - From: Jesse Houwing [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 30, 2002 11:32 AM Subject: Re: SSL on form submission Joel Firestone

Re: Random Record

2002-04-17 Thread Joel Firestone
One way: cfset variables.rannum = randrange(1, qryName.recordcount) cfset variables.ranrecord = qryName.columnName[variables.rannum] HTH J - Original Message - From: Eric J Hoffman [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 08, 2002 5:19 PM Subject: Random

Re: application.cfm

2002-04-10 Thread Joel Firestone
Darren: We had a machine that was using (by default) the registry to store the client variables. Then it started crashing like every few hours. We looked at the registry, and it was like 120 mb. The machine crawled. So we cleaned it out, and set the storage to cookies, and it hasn't gone down

Re: CF DTS Packages

2002-04-02 Thread Joel Firestone
Dave: I just did this. I simply scheduled the SQL server to run it. Then there's one less player in the game (CF server). My $.02. Joel - Original Message - From: Bosky, Dave [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 11:47 AM Subject: CF DTS

Re: session variable renewal

2002-03-26 Thread Joel Firestone
Matthieu: It expires after inactivity of 20 minutes. So at 19:59 a link is clicked, the clock startes over. Joel - Original Message - From: Cornillon, Matthieu [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 26, 2002 9:58 AM Subject: session variable renewal

Re: session variable renewal

2002-03-26 Thread Joel Firestone
Exactly. You usually just check for it's existence. If it doesn't exist, set it (which is usually false, since it doesn't exist). It'll stay until it either 1) it times out (after 20 minutes), or 2) is deleted by you intentionally. HTH. Joel - Original Message - From: Ricq Pattay

Re: special characters

2002-03-26 Thread Joel Firestone
Thanks for the code. I just went in and did a replace for the time being, see the ñ and Ñ were only gonna be the ones used. But thanks anyway. I still wanna check out Dave's post, tho. Joel - Original Message - From: Park, Simon [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

special characters

2002-03-25 Thread Joel Firestone
CFDJ'ers: When trying to add characters like ñ and Ñ, my SQL 7 server tells me I have not enclosed my strings properly. I'm assuming the tilde is breaking it. Any way around that, other than looking for that character and replacing it, with say the HTML equivalent that works? Or will I just have

Re: JS back?

2002-03-20 Thread Joel Firestone
How about: .. cfelse script language=JavaScript alert(Your file is too big!); history.back(); /script cfabort /cfif HTH Joel - Original Message - From: Greg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 20, 2002 11:06 AM Subject: JS back?

cgi.path_info

2002-03-05 Thread Joel Firestone
Everyone: Is there a setting in apache that would turn on/off the ability to read the cgipath_info variable in Cold Fusion? The server is Linux Red Hat running CF 45 When I try to read the path info, I just get an empty string Another server with the same setup returns the variable fine

session timeouts

2001-05-16 Thread Joel Firestone
Everyone: We have an application that uses session vars to track if the user is logged in. Yesterday, the sessions started timing out after 10 - 15 seconds, even tho Application.cfm sets it at 20 minutes. Is it a memory issue? Or should I look elsewhere? Just recently we set the default Client

Re: session timeouts

2001-05-16 Thread Joel Firestone
Thanks. My guess was memory, tho the Linux box says the resources are fine. Oh well. J Joel Firestone [EMAIL PROTECTED] wrote in message 3b028d3f$[EMAIL PROTECTED]">news:3b028d3f$[EMAIL PROTECTED]... Everyone: We have an application that uses session vars to track if the user is

JavaScript VTM

2000-12-26 Thread Joel Firestone
All: Does anyone know of any .vtm file written for JavaScript functions? I've found ones for ASP, PHP, etc. I was just curious if there was one for JS. And also if anyone has a toolbar set for studio 4.5x. Thanks. = Joel Firestone - Lead Developer Delmarva Online Web

Re: COM and CFOBJECT - beginner problem

2000-12-21 Thread Joel Firestone
Mike: Thanks. They're actually weren't anything. So after running, I simply set cfset ErrNumber = AuthCtl1.ErrNumber and so on, and it worked. Thanks for the guidance. That's what I get for trying to copy paste from another code snippet. : ) Joel : Looks to me like the .Fields is not a

COM and CFOBJECT - beginner problem

2000-12-20 Thread Joel Firestone
tl1.Secure = FALSE AuthCtl1.KeepSocketOpen = TRUE AuthCtl1.Merchant = "xx" AuthCtl1.Account = Request("card_number") AuthCtl1.ExpDate = Request("card_exp") AuthCtl1.Amount = Request("amount") AuthCtl1.AVSAddress = Request(&

Re: IsNumeric Function

2000-12-15 Thread Joel Firestone
One way I found useful was to use JavaScript on the client-side to test if they were numbers or not. Then you know only numbers are being submitted. J : I am trying to do some server side validation for a phone number, but I am running into an odd problem. I split the phone number entry form

Sticky variables

2000-07-19 Thread Joel Firestone
Everyone: I've seen a few posts here and there discussing session variables in a clustered environment. Are there any pages or resources I can look at that would help explain them, or how to implement them? A cluster is in my not-so-distant future, so I want to be prepared. Many thanks. Joel

Re: limiting upload file size - solution

2000-07-03 Thread Joel Firestone
I just had to do this recently. I found the tutorial here. Check it out: http://www.teamallaire.com/tutorials/limitFileUploadSize.cfm Joel : To do this use you can use the : CGI.CONTENT_LENGTH variable : : Justin MacCarthy

Re: row numbers

2000-06-28 Thread Joel Firestone
Doug: Does queryname.currentrow help? Joel "Douglas Jordon" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... : Is there a way to find out which row number any given record is? : : TIA, : : Doug Jordon :

Selecting one number from a list

2000-06-27 Thread Joel Firestone
Everyone: I'm having a complete brain fart, so hopefully you guys can help. I have a table with a varchar field named catid. When a url variable named catid is passed, the page grabs all the data for that specific catid. Simple stuff. My problem lies in now I need for the catid to be a list

Re: Selecting one number from a list

2000-06-27 Thread Joel Firestone
Personal URL: http://www.warrick.net Business Email: [EMAIL PROTECTED] Business URL: http://www.fusioneers.com ICQ: 346566 -- -Original Message- From: Joel Firestone [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 27, 2000 6:04 AM To

Re: Selecting one number from a list

2000-06-27 Thread Joel Firestone
Thanks. That's exactly what I'm looking to do, and will test. Much appreciated! And I guess I better learn to explain myself better. : ) Joel "Philip Arnold - ASP" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... : I have a table with a varchar field named catid.

Re: Selecting one number from a list

2000-06-27 Thread Joel Firestone
I guess I better beef up on my database design skills. Thanks to everyone. Joel "Dave Watts" [EMAIL PROTECTED] wrote in message 000601bfe055$9cc19ec0$[EMAIL PROTECTED]">news:000601bfe055$9cc19ec0$[EMAIL PROTECTED]... : This is not the right approach. You'll want to use an intersection table,

Re: Textarea

2000-06-27 Thread Joel Firestone
Try textarea cols=50 rows=10 name="body" wrap="virtual" font="arial"#body#/textarea Joel "Gregg Kachel" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... : Hi, I'm sort of a newbie with Cold fusion, so I'm probably doing some : simple mistake. I can't get my text

Re: ASP

2000-06-15 Thread Joel Firestone
Or try www.learnasp.com. Good tutorials there, as well. Joel [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... : hi there! I know this is a CF list, but my boss asked me to create a template : in ASP and I've never worked with it. : I have a few easy questions: : :

Re: HTML Text Editor

2000-06-07 Thread Joel Firestone
Bridget: Try 1st Page 2000. It's decent, and free. http://www.evrsoft.com/1stpage2.zip Joel : Hello, : I am looking for a free downloadable html text editor. I thought had : bookmarked one that was mentioned in this forum, but I guess I didn't. : If anyone had any good suggestions, please

Re: Update Query

2000-06-03 Thread Joel Firestone
Miriam: If they can change everything, then you really have nothing to tie the fields together, so the db doesn't know which to change. In these instances, a unique identifier should be used. Hope this helps. Joel "Miriam Hirschman" [EMAIL PROTECTED] wrote in message

Re: Automatically transferring data from one table to another

2000-05-30 Thread Joel Firestone
Hubert: I've found just setting an extra Yes/No column (called "Pending" in this example) in your main table. When a joke is submitted, it automatically sets "Pending" to Yes. Then, build a page that shows all of the items with Pending checked "Yes", and build it so all chosen id's get changed

Re: Why won't this cfif work?

2000-05-25 Thread Joel Firestone
: cfoutput : There are #Get.RecordCount# Dealers in Your State. : /CFOUTPUT : CFIF #Get.RecordCount# is 0 : BRBPlease contact Us/B : /CFIF Jeff: Try: cfoutput There are #Get.RecordCount# Dealers in Your State. /CFOUTPUT CFIF Get.RecordCount is 0 BRBPlease contact Us/B /CFIF You ended the

Re: Form Updates, newbie question

2000-05-25 Thread Joel Firestone
: Hi there, : : I have a form with a number of drop down boxes, i'd like to populate fields : further down the form from my db as the choices are made in the drop down : boxes, do i have to use JavaScript to do this or can i keep it in CF : context? Thanks for any help. : : Stewart There's a tag

Re: adding RDS Server in studio

2000-05-25 Thread Joel Firestone
Doh! I meant to say setup an ODBC datasource on your Cold Fsuion server in the admin to point to your Oracle db. After I read it, I was confused. : ) : Setup your RDS to point to your Cold Fusion server. The setup an ODBC : connection to your Oracle server. Then when you connect to the RDS,

Re: adding RDS Server in studio

2000-05-25 Thread Joel Firestone
Andrew: Setup your RDS to point to your Cold Fusion server. The setup an ODBC connection to your Oracle server. Then when you connect to the RDS, you'll be able to browse the datasources on that machine. The datasource is what connects directly to the database. Hope this helps. Joel "Andrew

Re: CF Studio 4.5

2000-05-24 Thread Joel Firestone
: Is anyone selling a copy of the latest studio? I see that it's listed as : $495, but I was hoping to find it a bit lower (this comes oout of my : pocket). Go to http://www.pricegrabber.com/ and do a search on it. We bought a copy from thebigstore.com for like $249 - full retail licensed 1 user

OT: Training

2000-05-22 Thread Joel Firestone
to be put on hold. Thanks. === Joel Firestone - Lead Developer Delmarva Online http://www.dmv.com/ -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com

Re: Sum

2000-05-22 Thread Joel Firestone
This is a multi-part message in MIME format. --=_NextPart_000_002F_01BFC40C.895D2DA0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Miriam: If it's numerical, you can do: cfquery name=3D"myquery" datasource=3D"yourdsn" select

Comparison sites in CF

2000-05-16 Thread Joel Firestone
components to go out and get the prices "on-the-fly"? What would the best scenario? I figured the first would be alot faster, but the second would be alot more current. Any input would be appreciated. Thanks. === Joel Firestone - Developer Delmarva Online http://w

Re: Macs, PC's, and Cold Fusion

2000-05-11 Thread Joel Firestone
Everyone: I found the solution to this problem. IE cannot handle the enctype="multipart/form-date" in the form tag. It just completely stops. If you take that line out, the form works fine. Netscape has no problem with it. Just an FYI. === Joel Firestone - Develope

Re: Macs, PC's, and Cold Fusion

2000-05-10 Thread Joel Firestone
cells. It's IE 4.5, if that helps. I don't wanna bash Macs, but... Thanks. === Joel Firestone - Developer Delmarva Online http://www.dmv.com/ -- Archives: http://www.eGroups.com/list/cf-talk

Macs, PC's, and Cold Fusion

2000-05-10 Thread Joel Firestone
, when the form is submitted, it just prints a blank html page. It never writes the data, or redirects. It does nothing. Can anyone help me figure this out? I'm losing more and more hair and brain cells. It's IE 4.5, if that helps. I don't wanna bash Macs, but... Thanks. === Joel

Re: CFHTTP - for the love of god!

2000-05-10 Thread Joel Firestone
write to another db. It would always say "Query = not found".=20 And I did use all of the correct attributes. How did you get around it. Thanks. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Joel Firestone - Developer Delmarva Online http://www.dmv.com/ --=_NextP

Dynamic query without page refresh - possible?

2000-05-05 Thread Joel Firestone
to be refreshed or a form posted. Is it possible? And if so, any pointers or references would be greatly appreciated. Thanks. === Joel Firestone - Developer Delmarva Online http://www.dmv.com

Re: Dynamic query without page refresh - possible?

2000-05-05 Thread Joel Firestone
Thanks everyone. Guess I better learn some JavaScript now. : ) The eternal slacker... === Joel Firestone - Developer Delmarva Online http://www.dmv.com/ -- Archives: http://www.eGroups.com/list/cf-talk

Re: Sorry! CF Variables

2000-05-04 Thread Joel Firestone
If you're using studio, right-click and choose "Insert Expression". Then click on "Variables". They're listed there, as well. Just another way. === Joel Firestone - Developer Delmarva Online http://www.dmv.com/ I might be looking in all the wrong places, but

Re: CF and Search Engines Again.... =)

2000-05-03 Thread Joel Firestone
't comment if it actually works because the site is still in progress. But as I've read in the forums, that's the way to index your dynamic content. My $.02. === Joel Firestone - Developer Delmarva Online http://www.dmv.com/ This question pop's up from time to time. I have a new slant on

Re: CONVERT() for money datatype

2000-05-01 Thread Joel Firestone
Thanks. Dumb ol' me never looked to see that convert() wasn't a CF command. Worked like a charm. Thanks. === Joel Firestone - Developer Delmarva Online http://www.dmv.com/ "Philip Arnold - ASP" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">new

CONVERT() for money datatype

2000-04-28 Thread Joel Firestone
. This problem is very likely due to the fact that either: 1. You have misspelled the parameter name, or 2. You have not specified a QUERY attribute for a CFOUTPUT, CFMAIL, or CFTABLE tag. What do I need to do in order to update a money field? Any help would be GREATLY appreciated. === Joel

Perl script results

2000-04-24 Thread Joel Firestone
it? Or is my only solution to use cfhttp passing it the text to run on, and then use the results to save as my variable? Thanks. === Joel Firestone - Developer Delmarva Online http://www.dmv.com/ -- Archives: http

Re: Cost to attend CF Developer conference

2000-04-24 Thread Joel Firestone
This is a multi-part message in MIME format. --=_NextPart_000_00B8_01BFADEC.AF6E6D00 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable I "believe" it was $895 per person. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

Re: To and from Perl scripts

2000-04-20 Thread Joel Firestone
Thanks, guys. I also in my travels found CF_Perl, in case anyone ever needs a fix like we did in the future. === Joel Firestone - Developer Delmarva Online http://www.dmv.com/ "Joel Firestone" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

Re: newbie wants to pull tag list from allaire

2000-04-18 Thread Joel Firestone
Geo: I would "assume" they used CFHTTP to read the content in the table on the Developer's page showing the last 10 submissions. You would read the data, strip out the excess code, and display the info on your page. But this is my guess. === Joel Firestone - Develope

Re: - CFStudio saves snippets where?

2000-04-05 Thread Joel Firestone
They're should be in UserData\Snippets in your Studio directory. And what I do is zip the folder up. Or simply copy it. It can't be the big unless you you have a gazillion snippets. === Joel Firestone - Developer Delmarva Online http://www.dmv.com/ "Dave Wilson" [EMAIL

Arrays or db storage?

2000-03-31 Thread Joel Firestone
to know what everyone seems to think. Personally I'm thinking of using arrays. I think it'll be faster and take a load off of the db. But I'm open to input. Thanks. === Joel Firestone - Developer Delmarva Online http://www.dmv.com