RE: Oh that's just great.

2001-04-23 Thread Matt Rodosky
Go to fortas site. He has cf_debug there last I checked. http://www.forta.com/cf/tags/ -Original Message- From: Bryan LaPlante [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 1:50 PM To: CF-Talk Subject: Re: Oh that's just great. dude, go and get cf_avartree, it rocks -

RE: It's not big and it's not clever...

2001-04-20 Thread Matt Rodosky
'macromedia' ;) -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED]] Sent: Friday, April 20, 2001 8:55 AM To: CF-Talk Subject: It's not big and it's not clever... I need a list of swear words to validate user input against. Anyone have such a beast? Saw CF_BadMouth but

Sorting an Array

2001-03-09 Thread Matt Rodosky
Been trying to sort a 2 dimensional array and am having trouble. The fisrt element is numeric, the 2nd is text. I'm trying to sort in numeric order on the 1st item and can't get it to work. Any help is appreciated. TIA Matt ~~ Structure your

Here you have, ;o)

2001-02-12 Thread Matt Rodosky
Hi: Check This! ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Virus:

2001-02-12 Thread Matt Rodosky
Hi, the 'Check This' email is a virus that slipped through our virus scan. Many apologies. -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 1:52 PM To: CF-Talk Subject: RE: Help: WDDX deserialize problem HTML Formatting the XML Packet

RE: Run a data driven site from a CD using CF?

2001-01-30 Thread Matt Rodosky
You can generate a static site from a dynamic site and burn the new site onto a cd. -Original Message- From: Steve Cohen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 1:22 PM To: CF-Talk Subject: OT: Run a data driven site from a CD using CF? I have a client who would like

RE: duplicating inserts

2001-01-17 Thread Matt Rodosky
One way is to add a hidden field which is a random number to the the form. Add this to the database table as well when doing the insert. Your action page should start with a check for the existance of the random number in the db, if it exists then you have a resubmit going on and you just

RE: phone stuff and cf

2001-01-15 Thread Matt Rodosky
Voxeo is really an ASP but the capabilities it offers are significant (at a pretty low price). Try coding a CTI app that integrates with CF apps (quickly, under budget, without going crazy). -Original Message- From: Cary Gordon [mailto:[EMAIL PROTECTED]] Sent: Monday, January 15,

RE: Does Studio have Built-in Scripting?

2001-01-08 Thread Matt Rodosky
read up on and use snippets... -Original Message- From: Dru Whitledge [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 1:22 PM To: CF-Talk Subject: Re: Does Studio have Built-in Scripting? I just wish that Studio had an "on the fly" MACROS capability to capture and replay

RE: a cry out for help

2001-01-04 Thread Matt Rodosky
For a quick fix, use a combo of cffile and a database table. 1. Upload a file, log it to db 2. Check out a file (cffile copy) and log checkout (now unavailable to check out) 3. Check back in (cffile upload), log checkin, new filename (cffile rename?). 4. You can access a basic audit trail, with

RE: Just a stray thought

2000-12-13 Thread Matt Rodosky
1. Cluster 6-10 application servers running cf enterprise (on nt, # depends on expected users/transactions) 2. Use load balancing sw (cisco) 3. 2 Database servers (assume sql server)in an nt/sql cluster 4. App is pretty simple, take a tracking #, find it in the database, pull out the information.

Great Plains CF

2000-11-24 Thread Matt Rodosky
Does anybody have any experience, knowledge about interfacing a CF app with a Great Plains accounting system Any advice or feedback is greatly appreciated. Thanks, Matt ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Associative Arrays?

2000-11-24 Thread Matt Rodosky
Yes, structures are basically the same as associative arrays. The cool thing with CF structure though is you can refer to elements using names instead of numerics. Try: cfset Groups=structnew() cfset Groups.ID="x" cfset Groups.Website="xyz.com" To reference elements use:

RE: Certification Exam

2000-11-16 Thread Matt Rodosky
try www.cfcertification.com , it has sample questions and other resources for getting through the exam. -Original Message- From: Nick Betts [mailto:[EMAIL PROTECTED]] Sent: Friday, November 10, 2000 9:48 AM To: CF-Talk Subject: Certification Exam Hi, I may be going through Allaire

fyi: zdnet cf/jsp/php/asp

2000-11-01 Thread Matt Rodosky
http://www.zdnet.com/enterprise/stories/linux/0,12249,2646052,00.html Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

RE: Integrate Document Scanners with CF

2000-11-01 Thread Matt Rodosky
I am interested this too, if anyone has any info that would be great. If possible, this also implies an ability to interface with other inst. (i.e. dna sequencers, plate readers, etc.) mjr -Original Message- From: Joseph J. Sanger, M.D. [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: CFHTTP - continue on broken url

2000-10-23 Thread Matt Rodosky
Try wrapping the code in a cftry with a cfcatch to report any errors that happen. As long as the code is in the cftry block, the processing will continue. HTH, Matt cftry cfoutput query="q_Server" cfhttp method="Post" url="#Trim(ServerURL)#/UpdateDB.cfm" timeout="10"

RE: win 2000/sql with cf 4.5 PROBLEMS

2000-10-18 Thread Matt Rodosky
In your enterprise manager go to the user management menu and make sure the users have permissions to see those tables. Also, make sure all your authentications (NT,or sql sever) match up (on your sql server, database, and odbc datasource). I have had this happen when switching servers, or

cfx use question

2000-10-10 Thread Matt Rodosky
Is there a way to call a cfx tag without setting it up in the administrator (like use cfmodule or something to that effect)? TIA Matt -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe

RE: Airport Code Database

2000-08-17 Thread Matt Rodosky
http://www.faa.gov/passenger.htm links to a listing are here -Original Message- From: Scott J. Brader [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 17, 2000 10:12 AM To: Cf-Talk Subject: Airport Code Database I have an application that requires that I offer a listing of airports

RE: one more try re: oracle stored proc and session mgmt

2000-08-14 Thread Matt Rodosky
1. Call the stored procedure (pass the sessionid and valid hours to the sp): cfstoredproc procedure="db_app_std.chk_ses" datasource="yourDSN" cfprocparam type="in" dbvarname="sesid" value="#sessionid# cfsqltype"datatype" cfprocparam type="in"

RE: SAP and CF

2000-08-10 Thread Matt Rodosky
http://www.backsoft.com/products.cfm?CurrentPage=Products Backsoft has a cf based product used to interfac with erp systems like sap -Original Message- From: Stewart McGowan [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 10, 2000 6:11 AM To: '[EMAIL PROTECTED]' Subject: SAP and CF

RE: CFAPPLICATION - Need some advice

2000-08-10 Thread Matt Rodosky
Yes, setting the cookie without an expires attribute makes a cookie that will expire when the browser closes. All you are doing is replacing a persistent cookie with a session cookie. When the user closes their browser the cookie will die and they won't be logged in if they reopen the page. Your

RE: Building the right tables and pages?

2000-08-10 Thread Matt Rodosky
This is a multi-part message in MIME format. --=_NextPart_000_0003_01C002B3.AA8B20A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Jeremy: Here is a zipped package (its an open source deal from somewhere I don't remember) that will get you started.

RESEND: Building the right tables and pages?

2000-08-10 Thread Matt Rodosky
This is a multi-part message in MIME format. --=_NextPart_000_0006_01C002B8.65CFF760 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Jeremy: Here is a zipped package (its an open source deal from somewhere I don't remember) that will get you started.

RE: CFAPPLICATION - Need some advice

2000-08-10 Thread Matt Rodosky
at this!! -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: 09 August 2000 20:29 To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice Actually rewriting the cookies turns all cfid/tokens on the client into session cookies (no expires attribute

RE: CFAPPLICATION - Need some advice

2000-08-10 Thread Matt Rodosky
that it must be the browser but ow does it know to do it? Does it kill the cookie on closing the browser on when leaving the site?I assume it must be when the browser is closed. A happier but still perplexed Andy! -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: 09 August

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Matt Rodosky
Put this code in your application.cfm file. It will kill the session variables when the user closes the browser: !--- if the user closes their browser, make sure all sesion variables get killed --- cfif IsDefined("Cookie.CFID") AND IsDefined("Cookie.CFTOKEN") cfset cfid_local = Cookie.CFID

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Matt Rodosky
and then putting them back in there.am I completely off the mark here?? -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: 09 August 2000 16:27 To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice Put this code in your application.cfm file

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Matt Rodosky
Client variables will get deleted/reset? -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: 09 August 2000 17:41 To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice The code will keep session variables going as long as the browser stays open

RE: Session Management

2000-07-07 Thread Matt Rodosky
;CFID" value="#cfid_local#" cfcookie name="CFTOKEN" value="#cftoken_local#" /cfif - Original Message - From: "Matt Rodosky" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 06, 2000 4:07 PM Subject: Session Management Is it possible to

RE: wddx problem

2000-07-06 Thread Matt Rodosky
know if this would be the reason, but I got a similar error when my pages included accented characters. I had to convert them using char code=?? before making the recordset. Jennifer -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 06, 2000 12:28 AM

Session Management

2000-07-06 Thread Matt Rodosky
Is it possible to terminate a session when a user closes their browser?? Its easy when a user logs out, or the session times out, it would be nice if you could also do it when the browser is closed. TIA Matt --

RE: DB normalization rules and multi-select

2000-07-05 Thread Matt Rodosky
1. Create a list of current categories assigned to the locale 2. query all the categories 3. output the query, and select the category if its in the list cfoutput query="GetCategories" cfif CurrentCategories contains GetCategories.Category_ID option value="#Category_ID#"

wddx problem

2000-07-05 Thread Matt Rodosky
I've been using wddx to process backend pages from moreover.com, which has been working great. Today I am getting this message: XML parsing error: not well-formed (error code 4, line 70, column 16, buffer offset 4196) The error occurred while processing an element with a general identifier of

RE: Double Entries?? How to stop??

2000-05-10 Thread Matt Rodosky
Jeff: use a hidden form field with a good sized random number, this number is inserted into a field in your table (need to add a new field). Prior to doing an insert check for the existance of the hidden fields value in the database, if it exists you have a resubmittal and can abort the insert.