RE: SQL SERVER and IIS on the same machine?

2001-04-22 Thread Kelly Matthews
It really depends I did it for a long time. Never had major problems. HOwever when I finally moved SQL to it's own server I did have performance improvements, used less memories and had fewer errors. Not that there was a major problem while SQL was on the same server it just performs better when

RE: Problem with Studio 4.5.2 help

2001-04-23 Thread Kelly Matthews
I was having the same problem, that did the trick. Thanks! Kelly -Original Message- From: Christopher Cortes [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 11:48 PM To: CF-Talk Subject: RE: Problem with Studio 4.5.2 help Hubert, Studio has its own Verity collection that

RE: Quick DB Design

2001-05-06 Thread Kelly Matthews
This is the way I would go too: -Kelly This is a classic many-to-many relationship, best represented by 3 tables: Table Users (userid, username, other user info) Table Groups (groupid, groupname, other group info) Table UsersGroups (userid, groupid) -David On Sunday, May 06, 2001 9:38 AM,

RE: Field required doesn't work

2001-05-06 Thread Kelly Matthews
it works for me i wasn't able to submit an empty form maybe it's your browser giving you problems -Original Message- From: Parker, Kevin [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 06, 2001 8:20 PM To: CF-Talk Subject: Field required doesn't work This is a real head scratcher so

RE: Hosting /Dedicated or else

2001-05-10 Thread Kelly Matthews
www.knrtech.com -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 3:25 PM To: CF-Talk Subject: RE: Hosting /Dedicated or else cfdynamics.com ROCKS!! ~Simon Simon Horwith Macromedia Certified Instructor Certified ColdFusion Developer Fig

RE: Using 'Between' sql for Times/Dates

2001-05-16 Thread Kelly Matthews
-Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 16, 2001 1:34 PM To: CF-Talk Subject: Using 'Between' sql for Times/Dates Hi, I have a list of dates and times, in a field called logDate, which are constantly updated. I need to pull the last 2 hours

RE: Article Discussion ready solution

2001-05-16 Thread Kelly Matthews
Just to give you an example. I built a real estate site for someone. After the main site was built he mentioned that for every neighborhood that an agent signs up for he wanted a discussion forum *sigh* so we already owned CF Forum 2000 open source. I simply modified the source to create a new

RE: CFHTTP??

2001-05-30 Thread Kelly Matthews
It can be tricky but Find, Mid, ReFind etc... are functions you should use to find the start and end point. -Original Message- From: Alii Design [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 10:23 AM To: CF-Talk Subject: CFHTTP?? How do I display a specific area of a CFHTTP

RE: CFHTTP??

2001-05-30 Thread Kelly Matthews
Here is a good example this get's a dilbert comic out of a CFHTTP string: CFHTTP URL=http://www.unitedmedia.com/comics/dilbert/; METHOD=GET RESOLVEURL=Yes cfset index = Find(http://www.unitedmedia.com/comics/dilbert/archive/images/dilbert,CFHT TP.FileContent) cfset MyURL =

RE: Brain isn't working yet...

2001-06-01 Thread Kelly Matthews
cfif #cgi.remote_addr# CONTAINS '192.168.5' Allow action /cfif -Original Message- From: Marcus [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 10:56 AM To: CF-Talk Subject: Brain isn't working yet... I'm trying to provide functionality to a select group of people on a

RE: Updating multiple rows!

2001-06-01 Thread Kelly Matthews
Why not do: CFQUERY NAME=engineeringinfo DATASOURCE=Biosreference DBTYPE=ODBC Update BiosPart SET VGA_Rom = 'PCI' WHERE Part_ID 751 /CFQUERY CFQUERY NAME=engineeringinfo DATASOURCE=Biosreference DBTYPE=ODBC Update BiosPart SET VGA_Rom = 'PCI' WHERE Part_ID BETWEEN 751 AND whatever /CFQUERY

RE: Can we limit the text in textarea

2001-06-04 Thread Kelly Matthews
Well there isn't a maxlength BUT after they hit submit, on the action page, before it processes anything else, you can have CF COUNT the characters in that string and if they exceed a certain number you can give them a message telling them so. There are also javascripts that will count

RE: Custom error pages

2001-06-05 Thread Kelly Matthews
There are a number of ways. The FIRST thing you want to do if you have access is go CF administrator and then go to Settings. Then scroll down and fill in the Exact Path to your Missing Template Handler (for 404) and your site-wide error handler (for errors). Then you create the 2 pages you just

RE: CF5 Docs

2001-06-06 Thread Kelly Matthews
As far as I know you will still get the BOXED version as always. Even when I bought 4.5 I could download it but the box came later. -Original Message- From: cassady [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 06, 2001 1:05 PM To: CF-Talk Subject: CF5 Docs I see that I can

RE: Image resizing question

2001-06-06 Thread Kelly Matthews
One suggestion is you are probably trying ot resize GIFS What I do is I do a search to see if the image is a GIF first if it is I have it resave as a JPG then i resize it and save it back to a gif then it wont distort. -Original Message- From: Eron Cohen [mailto:[EMAIL PROTECTED]] Sent:

RE: Image resizing question

2001-06-06 Thread Kelly Matthews
Also don't force 100x100 just force the WIDTH to be 100 then you wont have distortion from that either. a 300x200 image would ALWAYS distort when forced into a square if it was a rectangle to begin with :) Kelly -Original Message- From: Eron Cohen [mailto:[EMAIL PROTECTED]] Sent:

RE: CFForm only passing one of my variables

2001-06-08 Thread Kelly Matthews
why do you have a TITLE tag in 2 of your 3 radio buttons -Original Message- From: Larry Junker [mailto:[EMAIL PROTECTED]] Sent: Friday, June 08, 2001 1:45 PM To: CF-Talk Subject: CFForm only passing one of my variables Guru's; I have a CF Form on my login page that uses the following

RE: conference info

2000-10-31 Thread Kelly Matthews
on AirportNet. Subscribe to our Announcement list today: http://www.airportnet.org/email.htm --- Kelly Matthews Internet Development Coordinator AAAE 703.578.2509 [EMAIL PROTECTED] http://www.airportnet.org --- -Original

Help with Query

2000-11-02 Thread Kelly Matthews
e multiple records for the same people. So if i query the table and it finds 2 records for kelly matthews, along with multiple records for other people, I somehow need it to choose the most RECENT record and then do a check to see if its older than 2 years. So in essence on the report I would

RE: Help with Query

2000-11-02 Thread Kelly Matthews
--- Kelly Matthews Internet Development Coordinator AAAE 703.578.2509 [EMAIL PROTECTED] http://www.airportnet.org --- -Original Message- From: Jason Powers [SMTP:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 12:16 PM

Still need Help with Query

2000-11-02 Thread Kelly Matthews
maybe you can shed some light got it to work by doing this: (there could be an easier way) This query finds all the distinct ssn's. CFQUERY DATASOURCE="#DSN#" name="search" SELECT DISTINCT ssn FROM STUDENTS WHERE AIRPORT_CODE = 'AAE' AND testname = 'Driver

RE: Verity Search Engine

2000-11-13 Thread Kelly Matthews
97*" "*\\admin" Stay current with what's happening on AirportNet. Subscribe to our Announcement list today: http://www.airportnet.org/email.htm --- Kelly Matthews Internet Development Coordinator AAAE 703.578.2509 [EMAIL PROTECTED] http://www.airportne

RE: Studio - left panel missing

2000-11-15 Thread Kelly Matthews
yes happened to me a few times Go to View and make sure Resource Tab is checked. Kelly Stay current with what's happening on AirportNet. Subscribe to our Announcement list today: http://www.airportnet.org/email.htm --- Kelly Matthews Internet Development

RE: Certification Exam

2000-11-16 Thread Kelly Matthews
OH goodie got a 4.3 there is hope for me yet... -Original Message- From: Shane Witbeck [SMTP:[EMAIL PROTECTED]] Sent: Thursday, November 16, 2000 11:56 AM To: CF-Talk Subject: RE: Certification Exam There is a free 40 question CF 4.5 Certification exam available at

RE: Firewall Question

2000-12-01 Thread Kelly Matthews
we use checkpoint very happy with it they have a great VPN add on as well -Original Message- From: Philip Arnold - ASP [SMTP:[EMAIL PROTECTED]] Sent: Thursday, November 30, 2000 8:16 AM To: CF-Talk Subject: RE: Firewall Question companies like checkpoint (they might

Help with Median...

2000-12-06 Thread Kelly Matthews
quick question I have no problem getting the averages using this query: CFQUERY datasource="#DSN#" name="average" SELECT AVG(passengers_enplaned_domestic) as avg_passengers_enplaned_domestic,AVG(passengers_enplaned_international) as

RE: Help with Median...

2000-12-06 Thread Kelly Matthews
Actually i found a CF_Median tag on allaire it works fine problem solved... they have a CF_Standarddeviation tag too i am in heaven :) -Original Message- From: pan [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 1:09 PM To: CF-Talk Subject: Re: Help with Median...

Survey Software

2000-12-13 Thread Kelly Matthews
Can i get some suggestoins on survey software. I was considering this one: http://www.activefeedback.com/af/products/se2enterprise/ has anyone used it? If so do you like it? If not any other pre written survey software out there? I would like something for DUMB users where they can fill out a

CF Administrator not restarting itself????

2001-02-01 Thread Kelly Matthews
From what i have read and have been told if you set the setting for RESTART at (HOWEVER MANY) unresponsive requests, then Cold Fusion Administrator is SUPPOSED To restart itself, after that many requests. We have NEVER had CF restart itself. We always have to do it manually. Any reason why this

CF Administrator not restarting itself???? Sending again, can ANY ONE HELP?

2001-02-02 Thread Kelly Matthews
From what i have read and have been told if you set the setting for RESTART at (HOWEVER MANY) unresponsive requests, then Cold Fusion Administrator is SUPPOSED To restart itself, after that many requests. We have NEVER had CF restart itself. We always have to do it manually. Any reason why

RE: CF Administrator not restarting itself???? Sending again, can ANY ONE HELP?

2001-02-02 Thread Kelly Matthews
Yes to both. -Original Message- From: Dave Watts [SMTP:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 12:27 PM To: '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject: RE: CF Administrator not restarting itself Sending again, can ANY ONE HELP? From what i

RE: What does OT mean?

2001-03-01 Thread Kelly Matthews
OFF TOPIC! :) -Original Message- From: Paul Ihrig [SMTP:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 3:40 PM To: CF-Talk Subject: RE: What does OT mean? Off Track Betting. -paul Web Developer, NBBJ Work: [EMAIL PROTECTED] 614 241-3534 fax: 614

RE: Hostcentric concerns?

2001-03-14 Thread Kelly Matthews
YES YES YES! -Original Message- From: Jeff Epstein [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 2:04 PM To: CF-Talk Subject: Hostcentric concerns? We originally set up on Virtualscape, but ever since Hostcentric took over Virtualscape, I've noticed a decline

RE: Displaying yes/no field dynamically in checkboxes

2001-04-03 Thread Kelly Matthews
input type="checkbox" name="whatever" value="1" CFIF query.whatever EQ 1CHECKED/CFIFYes input type="checkbox" name="whatever" value="0" CFIF query.whatever EQ 0CHECKED/CFIFNo -Original Message- From: P@tty Ayers [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 10:45 AM To:

RE: 404 Page

2001-04-03 Thread Kelly Matthews
The referer is the page they came FROM. Meaning if they click a link and that is not found you will get the page they clicked the actualy link, not the missing page. I have a similar script set up. When the referer is blank I know they were going DIRECTLY to that page by typing in the URL, when

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread Kelly Matthews
are you using !-- test --or !--- test ---use 3 dashes the other is to comment out HTML code that you WANT people to see in the source. 3 dashes HIDES it. -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 2:35 PM To: CF-Talk Subject:

RE: How to Allow a Doesn't Matter Variable in a Search?

2001-04-04 Thread Kelly Matthews
Well if it doesn't matter just don't pass the parameter have it set with a value of "" and then when you run the query CFIF parameter IS "YES"where hottub = Yes/CFIFetc that way if they pass the parameter blank it won't include it in the search, hence pulling up records that do and/or don't

RE: Includes on HtML?

2001-04-04 Thread Kelly Matthews
You can always have .htm files process as CF files. I do it. So my whole site is .htm people don't even know it's in cold fusion. Just a minor tweak in IIS. Then if there are static html pages that you don't want CF to process (because they have no CF functionality or templates) you just use

RE: CFSETTING HTML Strings *URGENT*

2001-04-04 Thread Kelly Matthews
Or just get rid of the quotes. Believe it or not a href=blah.cfmwhatever/a will work. -Original Message- From: bfalloon [SMTP:[EMAIL PROTECTED]] Sent: Thursday, April 05, 2001 10:05 AM To: CF-Talk Subject: CFSETTING "HTML Strings" *URGENT* Hello, Can someone help me

RE: insert to two tables

2001-04-05 Thread Kelly Matthews
I do the same! -Original Message- From: Jason Green [SMTP:[EMAIL PROTECTED]] Sent: Thursday, April 05, 2001 5:40 PM To: CF-Talk Subject: Re: insert to two tables i have had this issue before and the only way i could come up with it is insert into the peopletable and then

CF SCHEDULER

2001-04-06 Thread Kelly Matthews
I have a page that if I run it in a browser it works fine. It processes the following code: CFHTTP method="get" url="http://www.blah.com/blah.cfm" CFSET newsindx = #CFHTTP.FILECONTENT# CFSET session.newsindxfilename = "#session.directory#\newsindx.htm" CFSET session.newsindxbody= "#newsindx#"

Question about CGI Variables Auth User Auth Password

2001-04-09 Thread Kelly Matthews
We are trying to get CF to pass the CGI Variables Auth User and Auth Password. It's supposed to pass your NT login info in those variables, but it's not. Is there something special I need to do?? Kelly ~~ Structure your ColdFusion code with

RE: How do you end a Session????

2000-04-13 Thread Kelly Matthews
Here is one way if you log off have it go to a page that has this statement: CFSET tmp = StructClear(SESSION) CFLOCATION URL="wherever.cfm" Works for me. Kelly -Original Message- From: Brian Ingram [SMTP:[EMAIL PROTECTED]] Sent: Thursday, April 13, 2000 1:19 PM To: CFTalk

RE: Hosting lag time

2000-04-13 Thread Kelly Matthews
I would suggest hosting at a FIRST Teir provider (someone with a direct connection to MAEEAST or MAEWEST anyone in the Tysons Herndon Area that connects straight into MAEEAST is going to be pretty quick and reliable assuming they have redundancy built in. CAIS, PSINET, UUNET etc but you will pay

Am I Missing Something?

2000-04-13 Thread Kelly Matthews
Ok I am somewhat new to CF but something doesn't seem to be right. I have a section of our site that is secure, for members only. I have written the app to write a cookie so they don't have to login in the future. That part works fine. Now I just wanted to see what happened if someone had

RE: Am I Missing Something?

2000-04-14 Thread Kelly Matthews
: Kelly Matthews [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: "'[EMAIL PROTECTED] '" [EMAIL PROTECTED] Subject: Am I Missing Something? Date: Thu, 13 Apr 2000 21:26:31 -0400 Ok I am somewhat new to CF but something doesn't seem to be right. I have a section of our site that

RE: CF Classes

2000-04-18 Thread Kelly Matthews
Its good but I had already read the CF Construction Kit book so the class covered about 80% of what I already knew, it was a good refresher. However, the Advanced class, which I just took was extremely good. It used to be 2 days but they have stretched it out to 3, i learned quite a bit. Kelly

RE: CF Classes

2000-04-19 Thread Kelly Matthews
... Forta's book seems to cover these items in a measly 5 pages :) Marco - Original Message - From: "Kelly Matthews" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 19, 2000 12:36 AM Subject: RE: CF Classes Its good but I had already read the CF Constructio

RE: CF Classes

2000-04-19 Thread Kelly Matthews
register now, you wont get in for 2 months so that would give you plenty of time to get up to speed. If you are a person that learns and picks stuff up relatively easy then you should be ok in the advanced class, in my opinion. :) -Original Message- From: Kelly Matthews [SMTP:[EMAIL

RE: CFCOOKIES and CFLOCATION

2000-04-19 Thread Kelly Matthews
Yep there is all kinds of documentation on allaires site about that. If you go to their knowledge base and search on cookies you will see some suggestions. What I do is set a session throw them to the front page (after log in) and then set the cookie there. -Original Message- From:

Question about Starting Stopping Cold Fusion Service

2000-04-20 Thread Kelly Matthews
Is there a way to set up an automatic way to start and stop the Cold Fusion Service? I want to stop and start it a specific time each day. Kelly -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

Cycle Bat problem/question....

2000-04-24 Thread Kelly Matthews
Quick question. IN the help files it CLAIMS that when cycle bat shuts CF off, if someone attempts to hit a CF file before it has started again, then it will automatically start cold fusion. I have NOT found this to be the case, I receive errors until CF is restarted at the SCHEDULED time a minute

RE: What's the best way

2000-04-25 Thread Kelly Matthews
well in the database if there is no image that field SHOULD then be empty. So why not something like CFIF IMG_FIELD IS NOT "" Display ImageCFELSEDisplay other image/CFIF or something. We have a member database with images for some people and thats how I do it. Kelly -Original Message-

RE: Forcing a query refresh

2000-05-03 Thread Kelly Matthews
If you dont set a cache within the query it shouldnt be cached. But also go to the admin part of Cold Fusion find the Datasource for that database and UNCHECK maintain database connection in the cfsettings but trusted cache has nothing to do with it. As long as you dont put a CACHEDWITHIN or

RE: ILOVEYOU

2000-05-04 Thread Kelly Matthews
Every one this is a VISUAL BASIC VIRUS dont run it delete it Immediately. Frank WHY did you send this?? Kelly -Original Message- From: Frank Kowalewicz [SMTP:[EMAIL PROTECTED]] Sent: Thursday, May 04, 2000 9:24 AM To: Cold Fusion Subject: ILOVEYOU This is a multi-part

RE: WOW what a day

2000-05-04 Thread Kelly Matthews
yeah we were hit big time! :( -Original Message- From: Tim Bahlke [SMTP:[EMAIL PROTECTED]] Sent: Thursday, May 04, 2000 5:19 PM To: CFTalk Subject: WOW what a day It seems like everyone has been hit by the LoveBug. It's like warfare keeping it away. I hope everyone

Media3

2000-05-08 Thread Kelly Matthews
I know this discussion has occurred before but I missed most of it. I have a friend considering using media3 as a dedicated server (host) any bad things about them I should know about? Pros? Cons? Any advice would be appreciated. Kelly

cooooookies

2000-05-09 Thread Kelly Matthews
Ok I have a question. I wanted to password protect a section of our website using cookies with Cold Fusion. It works fine except for this. If someone links to a PDF file (instead of an .htm file) it doesnt even seem to read or care about the application.cfm file therefore never throws them to

RE: cooooookies

2000-05-09 Thread Kelly Matthews
then working its way up to the main directory. - Original Message - From: "Kelly Matthews" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 09, 2000 10:27 AM Subject: cookies Ok I have a question. I wanted to password protect a section of our

Question about SQL and the IMAGE datatype

2001-09-08 Thread Kelly Matthews
Has anyone every used the IMAGE datatype? Is there any advantage to this, as opposed to just putting an image name in a text field and then linking to it in the output via an img src tag? I just haven't used it so not sure why it would be a good thing. Also how exactly do you get the image in

RE: Cold Fusion Studio 5.0 beta

2001-09-13 Thread Kelly Matthews
Yes but right now when you login NO BETA SOFTWARE is listed, maybe they removed it for the time being? -Original Message- From: William Swain [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 1:16 PM To: CF-Talk Subject: RE: Cold Fusion Studio 5.0 beta email [EMAIL

RE: Capitalize first characters

2001-09-13 Thread Kelly Matthews
there are custom tags on allaire's website that can do this go check out the developers section. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 1:21 PM To: CF-Talk Subject: Capitalize first characters Hi all, I'm just starting

RE: BETA.ALLAIRE.COM

2001-09-13 Thread Kelly Matthews
possibly or just a good artist using photoshop or illustrator it isnt that intricate -Original Message- From: BT [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 2:17 PM To: CF-Talk Subject: BETA.ALLAIRE.COM Does anyone know what graphic program would be used to create the

Cold Fusion and Rightfax

2001-09-14 Thread Kelly Matthews
Ok wrote a while ago about this. Can't use Protofax since we already own Right Fax. Looking for some assistance (willing to PAY) from anyone who might have used Cold Fusion to send a Fax to Right fax either thru the web or email. I can see how to do via email but it's not sending it properly

RE: Cold Fusion and Rightfax

2001-09-14 Thread Kelly Matthews
Nope, not a thing. But thanks for the suggestion -Original Message- From: Neil Clark [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 11:17 AM To: CF-Talk Subject: RE: Cold Fusion and Rightfax Try and see if www.cfcomet.com has anything

RE: Need help with error message.

2001-09-18 Thread Kelly Matthews
would probably help if you include the code that's throwing the error... -Original Message- From: Chris Bohill [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 18, 2001 11:23 AM To: CF-Talk Subject: Need help with error message. Can anyone explain why I am getting this error

RE: Code Red backdoor triggered?

2001-09-18 Thread Kelly Matthews
I use black ice on my server. THe code red used to come in as IIS system32 command course since i was patched it did nothing, well today i have a PLETHORA of attacks all labeled EITHER HTTP UTF8 backlick and HTTP URL with double-encoded .. My guess is it's a new worm we are getting SLAMMED but

RE: Code Red backdoor triggered?

2001-09-18 Thread Kelly Matthews
yep that's the one... -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 18, 2001 12:01 PM To: CF-Talk Subject: RE: Code Red backdoor triggered? This may or may not be relevant but i've just deleted an email from someone i dont know which I'm

RE: cardservice experience?

2001-09-20 Thread Kelly Matthews
They offer a lot of services what are you using them for? I use them for my merchant account and have had no problems. -Original Message- From: Don Kiggins [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 10:53 AM To: CF-Talk Subject: cardservice experience? Has anyone had

FW: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Kelly Matthews
Remove the /td from td width=4nbsp;/td table width=616 Should be td width=4nbsp; table width=616 You close it later down the page... -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Monday,

FW: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Kelly Matthews
Didn't work in 4.7 for me, only a partial table showed... found the problem already though... He had an extram /td tag closed too early. -Original Message- From: Steven Dworman [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 2:16 PM To: CF-Talk Subject: RE: A

RE: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Kelly Matthews
Acutally he juts had an extra /td -Original Message- From: Alex Santantonio [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 2:18 PM To: CF-Talk Subject: RE: A Netscape HTML Question You are missing a TD COLSPAN=2 on line 31 just before you are opening your 3rd

CF and Exchange AGAIN

2001-10-01 Thread Kelly Matthews
I sent this out last week but then I had computer problems, missed a bunch of messages, so don't know if anyone responded (will check archives) so sending it out again: Have a question has anyone done anything with CF and exchange? There may be an even better way to do this. But somehow we want

CFGRAPH???

2001-10-30 Thread Kelly Matthews
Ok has anyone had problems with CFGRAPH? Here is what's happening. We have a DEV and production server. CFGRAPH works like a charm on DEV, yet on production it just hangs and eventually times out. The service is running on both servers. Has anyone run into this? If so any suggestions?

RE: CFGRAPH???

2001-10-30 Thread Kelly Matthews
Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server Find out how iMS Stacks up to the competition: http://www.coolfusion.com/imssecomparison.cfm - Original Message - From: Kelly Matthews [EMAIL

RE: CFGRAPH???

2001-10-30 Thread Kelly Matthews
my 2 bits tim -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 10:35 AM To: CF-Talk Subject: RE: CFGRAPH??? IIS just like our Dev server. -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30

UDF's are GREAT

2001-10-30 Thread Kelly Matthews
Ok first time I used a UDF... I had written a program a while back for the company I work for. We survey airports to get their yearly rates charges, over 200 questions all Numerical figures. Anyway in the report I built last year a page spit out the Standard Deviation, median and mean of all the

RE: UDF's are GREAT

2001-10-30 Thread Kelly Matthews
Of course I did :) -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 2:51 PM To: CF-Talk Subject: RE: UDF's are GREAT CF_ShamelessPlug I assume you have visited www.cflib.org?? /CF_ShamelessPlug -Raymond Camden Ok first time I used

RE: Frames and variable scoping

2001-11-01 Thread Kelly Matthews
Check out this: http://www.cfugorama.com/cfugorama/DevCon.cfm Download the Ninja Javascript Presentation. Steve went through something like this although using a hidden frame but it's still passing variables through a frame. Kelly -Original Message- From: Lon Lentz [mailto:[EMAIL

RE: Frames and variable scoping

2001-11-02 Thread Kelly Matthews
reading. Thanks. -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 01, 2001 5:25 PM To: CF-Talk Subject: RE: Frames and variable scoping Check out this: http://www.cfugorama.com/cfugorama/DevCon.cfm Unsubscribe: http://www.houseoffusion.com

RE: Newbie question

2001-11-02 Thread Kelly Matthews
If someone searched multiple key words like Baseball football soccer And you are searching on 'Baseball football soccer%' The whole string 'baseball football soccer' would Have to appear the % only implies that any records with Baseball football soccer AND THEN SOME, would appear. Take Dougs

RE: Newbie question

2001-11-02 Thread Kelly Matthews
Well the CF Help files themselves have quite a bit of info on how to use that tag. Also check Allaires Knowledge base and support forums for more info. Kelly www.webdiva.org -Original Message- From: Steven Lancaster [mailto:[EMAIL PROTECTED]] Sent: Friday, November 02, 2001 11:50 AM

RE: Where to download IIS for win98

2001-11-14 Thread Kelly Matthews
Uh last I checked IIS was only available for NT? You have to download the NT options pack for Windows 98 it would be personal web server, you would still download NT Options pack but the one for Windows 9* instead of NT. Unless I'm missing something? Anyway option pack can be downloaded here:

RE: Event Logs Win2000

2001-11-19 Thread Kelly Matthews
This program does it but isn't free of course :) http://www.logviewer.com -Original Message- From: Tim Stadinski [mailto:[EMAIL PROTECTED]] Sent: Monday, November 19, 2001 2:33 PM To: CF-Talk Subject: Event Logs Win2000 Does anyone know where I can look for reference on how to

RE: Event Logs Win2000

2001-11-19 Thread Kelly Matthews
was hoping for a free reference to a discussion resource on which COM object I need to play with to tie into the eventLog anyone else? tim -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Monday, November 19, 2001 2:37 PM To: CF-Talk Subject: RE: Event Logs

RE: Fusebox - opinions?

2001-11-19 Thread Kelly Matthews
Personally I use fusebox and like it but it's a scaled down version of fusebox, I kinda modified it to my liking... Haven't run into problems yet but I don't have any SUPER high traffic cf sites. Kelly ~~ Your ad could be here. Monies from ads go to

RE: How do I prevent a user from backing up to a previous page.

2001-11-19 Thread Kelly Matthews
There are a couple things you can do. You can clear the struct out automatically after you do whatever you are doing with it on the next page so if they do hit back it's cleared out. OR if it's being put into some database you can always double check upon entering that they aren't submitting

RE: Deleting DB Records Automatically ???

2001-11-21 Thread Kelly Matthews
Sure you could set up a scheduled task in CF (say once a day at midnight) that runs a page that then runs a query deleting all records whose itemexpires date is less than NOW(). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 2:47

RE: Why aren't there more CF programmers out there?

2001-11-27 Thread Kelly Matthews
well if he thinks Front page is the way to go then he also wouldn't have a clue as to how many CF programmers are truly out there... Frontpage is the DEVIL! -Original Message- From: Justin Hansen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 27, 2001 17:40 To: CF-Talk Subject: Why

RE: OT- Hosting recommendations

2001-11-29 Thread Kelly Matthews
Yes I use them too (advances.com) and LOVE them, their prices are great and I have had NO CF or SQL problems, they even let me install custom dll tags etc... Very helpful support. Kelly -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: Quotes?

2001-11-29 Thread Kelly Matthews
Double quotes is already the preferred method. I would use cfparam name=myOtherVar default=The car made a loud bang! sound. Just my personal preference. -Original Message- From: Christian Abad [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 29, 2001 4:42 PM To: CF-Talk Subject:

RE: CF Hosting Company...

2001-12-05 Thread Kelly Matthews
I concur I use advances.com too have had no problems! -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 9:43 AM To: CF-Talk Subject: RE: CF Hosting Company... www.advances.com Brian Yager President - North AL Cold

Question about SQL binary files

2001-12-05 Thread Kelly Matthews
Ok I just haven't had to do this before so I am not sure if it's really simple or what. But we have a database, one field will be a BINARY field where we want to store a FILE. This is a file we will receive and will be on the harddrive itself. When inserting the other data I also want to insert

RE: Random passwords

2001-12-06 Thread Kelly Matthews
uh what code would that be? :) seems to have gotten cut off -Original Message- From: Joseph DeVore [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 1:52 PM To: CF-Talk Subject: RE: Random passwords This code will generate mixed case passwords: !

Question about Inserting into SQL via CF... Binary file or Image File

2001-12-06 Thread Kelly Matthews
As most of you know SQL has a datatype of Binary that can hold an actual binary file and has a datatype of image that can hold an image file. I sent this question yesterday but go no response figured I would try once more. Obviously I know how to insert DATA via CF into SQL. But w/ in that

RE: No cfquery output within cfquery output - but I need to

2001-12-07 Thread Kelly Matthews
Don't embed it... if it's just a form then there is just one record for the one query so why embed? meaning do this. I have done a ton of forms with query filled select boxes this way. never have a problem. === START CODE SAMPLE === cfquery name=outsideQuery datasource=dsn select * from tblA

Anyone else get solicited? FW: CFX ImageCR

2001-12-10 Thread Kelly Matthews
Did anyone else get solicited by these people? They snatched my email address off CF-Talk... not appreciated... really hate it when people do that! -Original Message- From: Efflare Systems [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 09, 2001 11:47 AM To: [EMAIL PROTECTED] Subject:

RE: Slightly OT: Lighten things up a little

2000-05-15 Thread Kelly Matthews
yes they are mine is WEBDIVA :) -Original Message- From: Stephanie Cunningham [SMTP:[EMAIL PROTECTED]] Sent: Thursday, May 11, 2000 3:40 PM To: [EMAIL PROTECTED] Subject: RE: Slightly OT: Lighten things up a little i think that's the point -- license plates are unique. :)

RE: OT: School Days - (was: Lighten things up a little)

2000-05-15 Thread Kelly Matthews
I have a 2 degree in music business, go figure. Havent had a single problem getting a technical job since i have the years of experience (instead of the degree) to back it up. Gotta love that. -Original Message- From: Sharon DiOrio [SMTP:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000

RE: OT: School Days - (was: Lighten things up a little)

2000-05-15 Thread Kelly Matthews
i worked government contracts for 4 years my 2 year music degree was enough never had a problem getting a job where a Bachelors was required, however I did have to back up my qualifications with proof and experience which was easy enough. I think with Gov. Contracts your PAY may suffer a little

  1   2   3   >