Re: fusebox stats

2000-09-08 Thread Graham Lewis
I had a similar problemwith an application I built last year. It wasn't entirely fusebox but it did always call the same index.cfm. What I did was log the variables in a table ie I recorded the state whenever index.cfm was called. So if we go index.cfm?action=redframes=yes and

Escaping commas in a query

2000-09-08 Thread Colin Robinson
Could someone please tell me how to esape a comma in SQL Thankyou Colin Robinson In-tuition.co.uk Tel: +44 (0) 1825 746400 ICQ: 74207528 -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

Re: Escaping commas in a query

2000-09-08 Thread JustinMacCarthy
look at the PerserveSingleQuotes function... - Original Message - From: "Colin Robinson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 07, 2000 3:24 PM Subject: Escaping commas in a query Could someone please tell me how to esape a comma in SQL Thankyou Colin

RE: Operation must use an updateable query

2000-09-08 Thread DeVoil, Nick
I have a very simple CF app that is using an MS Access 2000 file as the datasource. The app works fine on my system, but when it is uploaded to the hosting provider, I get an "Operation must use an updateable query" error on a page that inserts information from a form. Rob, You wouldn't

RE: Simple query question

2000-09-08 Thread DeVoil, Nick
I don't know how to select records between 100 to 200 records. Try this http://www.mail-archive.com/cf-talk@houseoffusion.com/msg15886.html ** Information in this email is confidential and may be privileged. It is intended

Re: fusebox stats

2000-09-08 Thread Chris Hayes
Never touched Fusebox yet but I believe the idea is to use variables appended to the URL like so: mypage.cfm/var_name1,value/var_name2,value/var_name3,value Then strip these variables from the server variable SCRIPT_NAME and plug then into your fusebox. Search engines and stats packages like

RE: fusebox stats

2000-09-08 Thread Ben Lowndes
I'd take it a step further and say it isn't efficent to a DB insert for every page hit. It would be better to load the fuseaction, CFID, CFToken whatever else you want into an application scoped structure. Then on a daily basis insert this structure into a DB and empty it.. Infact, I believe

Javascript question!...sorry

2000-09-08 Thread Andy Ewings
Again... I know I shouldn't ask this here but does anybody know if it is possible to have a mouseover on a form submit button (INPUT Type="image"). I have got my mouseovers working for hyperlinks ok but can't get ot to work for images acting as submit buttons on forms. My java script is

Re: OT: Java Script Question

2000-09-08 Thread JustinMacCarthy
your database beforehand and (using WDDX) make it available to your JS so that you can do the check right there on the client, without having to hit the problem with that is anyone can get a list of your usernames just by looking at the source ~Justin MacCarthy

Re: Javascript question!...sorry

2000-09-08 Thread JustinMacCarthy
not possible , but you can do a href="javascript:document.forms[0].submit();"img src="" onmouseover="changeImage();"/a to the same affect, or something like that ~Justin MacCarthy - Original Message - From: "Andy Ewings" [EMAIL PROTECTED] To: "CFTalk (E-mail)" [EMAIL PROTECTED]

RE: OT: Java Script Question

2000-09-08 Thread Courtney Payne
This is true. However, I wouldn't think usernames would be considered sensitive info. Courtney E. Payne, Developer Fig Leaf Software "We've got you covered" [EMAIL PROTECTED] www.figleaf.com -Original Message- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] Sent: Friday, September

Re: fusebox stats

2000-09-08 Thread Fred T. Sanders
What stat's program are you using? - Original Message - From: "Jason Egan" [EMAIL PROTECTED] To: "Cf-Talk" [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, September 07, 2000 4:28 PM Subject: fusebox stats I think fusebox is cool, but I've gotten myself in some hot water here... I

RE: Javascript question!...sorry

2000-09-08 Thread Courtney Payne
Hey Andy, It just worked on my end. Can you post your code? Courtney E. Payne, Developer Fig Leaf Software "We've got you covered" [EMAIL PROTECTED] www.figleaf.com -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 8:26 AM To: '[EMAIL

RE: Javascript question!...sorry

2000-09-08 Thread DeVoil, Nick
Yeh this works with hyperlinks but doesn't seem to work with images as submit buttons unless I'm doing something wring. Have you got it to work? Hi Andy, I think, as Justin implied, the secret is to have the image just be an IMG not an INPUT and get the submit behaviour by calling submit()

Re: OT: Java Script Question

2000-09-08 Thread Fred T. Sanders
Courtney, I hope your not suggesting they run a query of usernames and passwords, or even just the user names for that matter. They would be viewable in source. You might say "well its just usernames big deal". Okay I've now got a list of user names I know are on the system, I fire up my

RE: REGEX for a space

2000-09-08 Thread Olive, Christopher M Mr NMR
why don't you treat each line as a space delimited list? loop over it and stick the appropriate variables in. Chris Olive, DOEHRS Website Administrator -Original Message- From: Andrea Wasik(CancerSource) [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 07, 2000 3:46 PM To: [EMAIL

RE:

2000-09-08 Thread Olive, Christopher M Mr NMR
um...you do understand that client and session variables rely on cookies, right? specifically, CFID and CFTOKEN. Chris Olive, DOEHRS Website Administrator -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 07, 2000 4:43 PM To: '[EMAIL

RE: Javascript question!...sorry

2000-09-08 Thread Courtney Payne
Again, creating a mouseover on a form submit button (of type image) is very much doable. All you're doing is changing the object's (the submit button) .src attribute. Courtney E. Payne, Developer Fig Leaf Software "We've got you covered" [EMAIL PROTECTED] www.figleaf.com -Original

Re: OT: Java Script Question

2000-09-08 Thread JustinMacCarthy
Really, ask any email spammer!! If a have the memberlist of foo.com , I probably have the email address ie [EMAIL PROTECTED] etc.. Also having a username is half the battle of finding a username/password pair consider this cfloop list="#usernamelist#" index=i cfhttp url=loginform.cfm

RE: OT: Java Script Question

2000-09-08 Thread Courtney Payne
Fred, we weren't given any background info on the app. The implications would be different if you're logging in to your web-based email acct than it would be if you're logging in to your eTrade trading account, of course. All good points Fred. Anything is possible. (Sidenote, if I had the

Re: RE:

2000-09-08 Thread Howie Hamlin
But the session vars (CFID and CFToken) can be in the URL as well...thus avoiding cookies. Regards, Howie - Original Message - From: "Olive, Christopher M Mr NMR" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 08, 2000 8:50 AM Subject: RE: um...you do understand

ISP Recs

2000-09-08 Thread John Allred
I know this pops up all the time, but I wonder if I couldn't get some recommendations on a good Cold Fusion ISP. The time has come for me to move on, and I'd like to hear from any of you who feel positive enough about your ISP to recommend them. Please respond off list, thanks. Criteria:

Re: PROBLEM with ALLAIRE CUSTOMER SERVICE ?

2000-09-08 Thread Yanik Lupien
I don't want free support, I just want to know when the Custom tag I submited to the "Developers Exchange" will be online ? It's suppose to take 48 Hours to be online and now it's been 10 days (80 Hours of working Day (8 Hours by day)) I never received any answer! And I sent 2 messages to the

CF and PGP

2000-09-08 Thread Marla Jenkins
I'm hoping someone can help me...I am using CF 4.5.1 and need to find a way to have CF encrypt and decrypt files using PGP 6.5.8. I tried using CFEXECUTE to run pgp.bat and pgp.exe but it reacts in one of two ways - 1) kicks me out of the browser window or 2) error message that says it cannot

RE: Javascript question!...sorry

2000-09-08 Thread Andy Ewings
Ok got it to work now - I have changed it to an Image tag rather than an Input tag and used the onclick event to submit the form. Thanks for all your help guys! One more question though - what if I've got two images like this that both submit the form?how do I test to see which one was

Re: RE:

2000-09-08 Thread Howie Hamlin
Cookies are no more secure than URL params if you're worried about "sniffing". Both are sent to the web server as plain text. The URL parameters are in the GET or POST clause while the cookies are in a COOKIE header. In both cases, though, you can create a server side var which includes the

Introduction + logging question...

2000-09-08 Thread Jaquet Digital Design
Hi there, My name is Erik-Jan Jaquet and I am a Dutch web developer. I recently started programming in ColdFusion and joined this list. This is my first posting. I am building a website with ColdFusion that requires people to log in before they can search a database with (links to) PDF files.

Re:

2000-09-08 Thread JustinMacCarthy
Except when your users turns them off. misused them. He also said using cookies was as good as using session variables. ~Justin -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

Re: CF and PGP

2000-09-08 Thread JustinMacCarthy
There is a cfx_pgp tag on allaires site in the tag gallery ~Justin - Original Message - From: "Marla Jenkins" [EMAIL PROTECTED] To: "'Cf-Talk" [EMAIL PROTECTED] Sent: Friday, September 08, 2000 10:00 AM Subject: CF and PGP I'm hoping someone can help me...I am using CF 4.5.1 and

RE: Web servers

2000-09-08 Thread Benjamin S. Rogers
We switched servers as well, but they were comparable. We had about 250 Web sites on a box running WebSite Pro. All the Web sites were running ColdFusion in some form or another; most had static content as well. 10 to 20 had SSL certs. We switched to a box running IIS and saw "tremendous"

RE: ISP Recs

2000-09-08 Thread Randy Adkins
www.Shanje.com -Original Message- From: John Allred [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 9:42 AM To: [EMAIL PROTECTED] Subject: ISP Recs I know this pops up all the time, but I wonder if I couldn't get some recommendations on a good Cold Fusion ISP. The time has

Re: Introduction + logging question...

2000-09-08 Thread JustinMacCarthy
You could parse this out of the weblogs but I think you would be better writing you own logging tags. I use a custom, something like cf_userlog action="successfullogin" userid="#session.userID#" details="username:#form.username#" logdns="mydns" or cf_userlog action="fileDownload"

CF with Microsoft Cluster

2000-09-08 Thread Christian Labrecque
Hi, I have already some answers about this topic, but anybody on the list got experience or thoughts on this Thanks -- FILAMENT COMMUNICATIONS Bright ideas for a new economy Christian Labrecque Web Developer http://www.filamentinc.com 126

Re: CFLDAP and SSL connections to LDAP server?

2000-09-08 Thread Michael Ross
You are very correct the documentation on how to use LDAP with CF is not there. ITs a joke. I am curious though, how did you get people to authenticate using the cfldap tag and not having set up a user directory, security context then us cfauthenticate??? I am working on doing this for my

CFStudio RegEx Question

2000-09-08 Thread jeff tapper
Hey all - I'm looking for a quick RegEx to check some of my developers code. I'm trying to find any instances of CFIF inside of a CFQUERY tag. I'm running cfquery .*.*CFIF .*/cfquery as a REGEX search, although, its not doing what i want, as it is returning records which look like cfquery

RE: CF and PGP

2000-09-08 Thread Marla Jenkins
Thanks for the quick response! I'll take a look at it although I should have mentionned that I've been told that I'm not allowed to use any custom tags on the servers :-( Know any way to do it without the cfx_pgp tag? -Marla -Original Message- From: JustinMacCarthy [mailto:[EMAIL

RE: CF with Microsoft Cluster

2000-09-08 Thread Aaron Johnson
We're using CF behind Coyotepoint MSCS to cluster the database servers. MSCS is an expensive webserver clustering solution. You're better off getting a hardware solution (ie: Coyotepoint, F5, Cisco..) Aaron -Original Message- From: Christian Labrecque [mailto:[EMAIL PROTECTED]] Sent:

Access Field Names with Blanks in them

2000-09-08 Thread Mary_Baotic
I am re-writing a scheduling program that was written in ASP/VB to work in Cold Fusion. The scheduling program uses an Access Database as its backend. This is just a small program and we are trying to keep the backend the same and just re-write the front end. However, the person that wrote

RE: CFStudio RegEx Question

2000-09-08 Thread Caulfield, Michael
CF regex will return the longest matching string that meets your conditions (or, more precisely, the first longest string). You may need to write some ridiculous looking code that uses the not operator (^) instead of .*, or more probably write a short routine that makes a double pass through the

Daslweb - How do I get off of the mailing list?

2000-09-08 Thread Daslweb - Greg
This is a multi-part message in MIME format. --=_NextPart_000_00C1_01C0198C.1BCCDB20 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable I do not have time to read 200 messages a day anymore, because I have = started school and work part

Re: CF/Solaris on Intel

2000-09-08 Thread Larry W. Virden
From: Dave Watts [EMAIL PROTECTED] Your best bet is to bite the bullet, and go get a Sparc box. Fortunately, you don't have to get a good Sparc box. You can get one of the Ultra 5 workstations, which run about $4,000 or so. And that price is including a monitor. If you just want to use

Re: Access Field Names with Blanks in them

2000-09-08 Thread JustinMacCarthy
Use "[ ]" around the table names ~JustinMacCarthy - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 08, 2000 4:46 PM Subject: Access Field Names with Blanks in them I am re-writing a scheduling program that was written in ASP/VB to work in

Re: CF and PGP

2000-09-08 Thread JustinMacCarthy
It is very odd that you are allow to run cfexecute (you chould do format c:\ , or use | dev/null etc...) but not use a custom tag You chould pipe the file to pgp under *nix but I think the cfexecute tag is a little dodgy... and I haven't tried it under *nix... I would argue the case for

Re: Access Field Names with Blanks in them

2000-09-08 Thread Janty.com Administration
Since you are redoing the front end, what would it hurt to go into access and just rename the database field to something without spaces? I'm not that familiar with Access, so I don't know if it will let you do it, but I've done this on more than one occasion with Sybase with no problems. Todd

Re: CF/Solaris on Intel

2000-09-08 Thread Steve Ray
This is a multi-part message in MIME format. --99CC7CE2EBD545C6DABCF674 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Larry - Thanks, and I love the star trek tag line. Goes right along with your comments. Does Sun (or someone else) make a converter for

RE: Access Field Names with Blanks in them

2000-09-08 Thread Hoffman, Joe (CIT)
In your SQL Select statement reference by using the back ticks and give it a new name with the AS. SELECT `6 AM` AS 6AM, As for variables CFOUTPUT#6AM#/CFOUTPUT ... if I remember correctly is invalid ... CF vars can't begin with a numeric value. Joe Hoffman mailto:[EMAIL PROTECTED]

RE: Daslweb - How do I get off of the mailing list?

2000-09-08 Thread Hoffman, Joe (CIT)
To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body. If that does not work ... ask for Mike Dinowitz's email address so you could ask him directly. Joe Hoffman mailto:[EMAIL PROTECTED]

Re: Daslweb - How do I get off of the mailing list?

2000-09-08 Thread Janty.com Administration
Just like it says at the bottom of all 200 of those E-mails ;) -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Trouble with CFLOOP output

2000-09-08 Thread Jon Tillman
Anyone care to help figure out why the a href line just after the start of the cfloop isnot getting parsed? cfquery name="categories" datasource="#application.dsn#" SELECT * FROMtblCategory WHERE categoryTopcategoryID=2 /cfquery cfloop

RE: CFfile E rror??

2000-09-08 Thread Jon Bell
Sebastian Are you using a personal web server? If so this function does not work on that platform. You would need to upgrade to IIS or a different server. J -Original Message- From: sebastian palmigiani [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 31, 2000 9:59 PM To: [EMAIL

RE: Architecture

2000-09-08 Thread Jon Bell
If the version of CF is enterprise the answer is yes, You would have to make sure the OS' are compatible. j -Original Message- From: Joseph J. Sanger, M.D. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 05, 2000 4:23 PM To: [EMAIL PROTECTED] Subject: Architecture Does CF 4.5.1

Re: Daslweb - How do I get off of the mailing list?

2000-09-08 Thread Jon Tillman
On Fri, 08 Sep 2000, Daslweb - Greg spake thusly: This is a multi-part message in MIME format. --=_NextPart_000_00C1_01C0198C.1BCCDB20 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable I do not have time to read 200 messages a day

RE: Access Field Names with Blanks in them

2000-09-08 Thread Olive, Christopher M Mr NMR
you also need to alias the table name to use with CF SELECT [6 AM] as toodamnearly ... and you would ref it in CFOUTPUT as #toodamnearly# -Original Message- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 12:03 PM To: [EMAIL PROTECTED]

Re: fusebox stats (talking aloud)

2000-09-08 Thread Eric Dawson
Well the good thing, and the bad thing is, it makes sense to do your own logging. Good thing is ... you can more definitely specify what you want to track. Bad news (the same as the good news). A classic double edged sword. I get a little excited when I think about what you can do. I think

Re: Access Field Names with Blanks in them

2000-09-08 Thread Dick Applebaum
SELECT `BAD Name` AS Good_Name the ` is a backtick character HTH Dick At 11:46 AM -0400 9/8/00, [EMAIL PROTECTED] wrote: I am re-writing a scheduling program that was written in ASP/VB to work in Cold Fusion. The scheduling program uses an Access Database as its backend. This is just a

RE: CF/Solaris on Intel

2000-09-08 Thread Dave Watts
Does Sun (or someone else) make a converter for the monitor connection? Yes they do, and in fact the monitor that Sun ships with the Ultra 5 has a PC-standard 15-pin connection. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

Re: Daslweb - How do I get off of the mailing list?

2000-09-08 Thread Eric Dawson
filter everyone on the list except: dave watt. and stay subscribed. From: [EMAIL PROTECTED] (Daslweb - Greg) Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Daslweb - How do I get off of the mailing list? Date: Fri, 8 Sep 2000 11:58:31 -0700 This is a multi-part message in MIME

RE: CF and PGP

2000-09-08 Thread Marla Jenkins
Because I'm pretty much a newbie at ColdFusion I'm not sure I totally understood their reasoning but part of what I was told is that they don't want to touch or load any additional COM objects. I don't think the client never actually told my boss that cfexecute was ok to use...I just told my

Deleting Duplicate Records in MS access 200

2000-09-08 Thread AustralianAccommodation.com Pty. Ltd.
I have 5500 records in my suburbs table and many of those suburbs have identical names therefore I am wanting to delete all duplicates of suburb names so that I only have one occurrence of each name in the suburb list I am not sure how to go about this in access 2000 can anyone please assist me

RE: Trouble with CFLOOP output

2000-09-08 Thread Dana Larose
cfloop query="categories" a href="aroma_prod_all.cfm?categoryId=#categoryID#"#categoryCategory#/a You need a cfoutput/cfoutput around your href. Stuff inside a cfloop won't automatically be parsed as though they were ColdFusion. Dana Larose ColdFusion Monkey Canadian Web Design

Re: Access Field Names with Blanks in them

2000-09-08 Thread Mary_Baotic
I was just trying to avoid having to explain why I had to rename them when "it was working just fine using ASP." Thanks Mary |+--- || "Janty.com | || Administratio| || n" | ||

OT: SQL7 DB to DB

2000-09-08 Thread Adrian Cesana
I have a need to only keep 3 mos of data in a production DB (SQL7) but all the previous data needs to go into a separate "history" DB. Every month I will need to push the oldest month of data from the production DB to the history DB. Initially I guess I could just duplicate the DB and purge

RE: Trouble with CFLOOP output

2000-09-08 Thread Dana Larose
cfloop query="categories" a href="aroma_prod_all.cfm?categoryId=#categoryID#"#categoryCategory#/a You need a cfoutput/cfoutput around your href. Stuff inside a cfloop won't automatically be parsed as though they were ColdFusion. Dana Larose ColdFusion Monkey Canadian Web Design

cf 4.0 Win2K

2000-09-08 Thread Tim Bahlke
I am guessing that CF4.0 Enterprise cannot run on Win2K. Is this correct? Thanks, Tim Bahlke _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own

An extremely need (semi-OT)

2000-09-08 Thread Alex Puritche
cf-talk, I have a need to run a stored procedure which will insert multiple rows in the database. Biggest problem that I don't know from the begging how much inserts I need to do. I need to pass in the stored procedure an array of variables and loop over it. How I can pass complex datasets like

RE: Trouble with CFLOOP output

2000-09-08 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Maybe because it's not in CFOUTPUT's? -Original Message- From: Jon Tillman [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 12:20 PM To: [EMAIL PROTECTED] Subject: Trouble with CFLOOP output Anyone care to help figure

Re: Architecture

2000-09-08 Thread JustinMacCarthy
Look into cfdist.exe ~Justin - Original Message - From: "Jon Bell" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 08, 2000 5:19 PM Subject: RE: Architecture If the version of CF is enterprise the answer is yes, You would have to make sure the OS' are compatible.

MS SQL Eval

2000-09-08 Thread Stas Newdel
Hello, Does anybody have a link to the SQL 7 Evaluation? The link on MS doesn't work :( Thanks! -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

OT: VBScript and WSH

2000-09-08 Thread Robert Everland
Alright I know this is off topic, though it could be a little on topic showing how verbose VBScript can be. I want to make a VBS up so that it will check to see what version of virus scanner software I have an execute the appropiate updates once it has it. Does anyone know how to access

Numeric Field

2000-09-08 Thread Jeremy Toevs
Is there a way to write a query that will add 1 to a numberic field in a database? Meaning everytime the query is ran, it adds 1 to the current number that is in the database. (example: if the database says 3 and I run the query it will then say 4). This may be a dumb question but it doesn't

Re: Daslweb - How do I get off of the mailing list?

2000-09-08 Thread Ken Wilson
filter everyone on the list except: dave watt. and stay subscribed. If the old message stats I once saw still hold true, that'll net him only a slight reduction in volume. :) Of course, the volume/quality ratio will improve somewhat. Ken

RE: cf 4.0 Win2K

2000-09-08 Thread Dave Watts
I am guessing that CF4.0 Enterprise cannot run on Win2K. It may run (I had 4.0.1 working on Win2K RC2), but it will break MDAC, and is not supported by Allaire. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

RE: fusebox stats

2000-09-08 Thread Scott Cavanaugh
I would look at writing a custom tag that keeps track of statistical data (ie hits on a page). Include that custom tag in the pages you wish statistical data to be gathered on and save those results in a database. You could even use the data you collect to produce your own reports. Just of the

RE: cf 4.0 Win2K

2000-09-08 Thread Gregory Gooden (Annex)
It sure does for us. :) Gregory --- annex.com, Inc. - http://www.annex.com/ --- - If you EcoBuild it, they will come. - - http://www.ecobuilder.com/ - ---

RE: Access Field Names with Blanks in them

2000-09-08 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At least with the example you gave, you've got two issues to deal with -- the embedded space the leading digit in the field name. Neither of those are kosher in CF. Try something like: Cfquery ... SELECT '6 AM' as SixAm FROM

RE: fusebox stats

2000-09-08 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Umm Inserts shouldn't cause DB locking issues unless there were updates or selects going on at the same time. If the table is just used for logging, then locks should only be an issue when someone's actually generating a report from the tables.

RE: cf 4.0 Win2K

2000-09-08 Thread Pete Freitag
I believe it will run, but it is not supported by Allaire (I think CF 4.5.1 is the first version which they support for Win2k). Back when Win2k was still in beta I installed CF 4.0.x on it, and the CF installer didn't install CF as a service. I manually installed the services, and it seamed to

Re: An extremely need (semi-OT)

2000-09-08 Thread J.Milks
Quite sure you can't pass arrays. What about passing a delimited CHAR field and looping on that? I have done that on several occasions. I.E: 2,5,7,23 JM - Original Message - From: "Alex Puritche" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 08, 2000 1:16 PM Subject:

RE: Numeric Field

2000-09-08 Thread Robert Hinojosa
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_01C019CC.8AAEC54A Content-Type: text/plain; charset="iso-8859-1" Try This UPDATE Products

Re: Help with NT authentication

2000-09-08 Thread Howie Hamlin
Have a look at the Intranet Hosting Toolkit. http://www.intrafoundation.com/intranethostingtoolkit.html This package includes a freeware CFX (CFX_GetUserGroups) that allows you to: 1) list all users in the NT security database all local/global groups that exist in a domain/workstation

RE: Help with NT authentication

2000-09-08 Thread Dave Watts
Each user will have different levels of access (for billing and shipping purposes) to the store and they will use each employees' NT login for authentication. Ideally, they don't log into the Store, but I could have them enter their NT username/password. What the client doesn't want is

OT: Bids Needed

2000-09-08 Thread Jeffrey A. Zubeck
Our firm is in need of bids on an upcoming project. The project will be for a travel agency to book flights through their website. The application will interact with a large third party database via an SDS scenario, be manipulated appropriately and passed back to the database to actually make

Re: cf 4.0 Win2K

2000-09-08 Thread Adrian Cooper
- Original Message - From: "Tim Bahlke" [EMAIL PROTECTED] Sent: Friday, September 08, 2000 6:08 PM on Win2K. Is this correct? From my own experience I can say that CF 4.00 does not run - it appears to install OK - but in my case did not register the CF services. CF 4.01 does run

Replacing a value in the list form.fieldnames

2000-09-08 Thread Ian
I have a list of variables sent by a form. I need to make sure that none of the variable values are incompatible with each other. This isn't the problem. The problem is changing the Form.whatever = value to a compatible value (Form.field2 = 2. Form.field3 = 3 but 3 is not compatible with 2 so I

RE: Importing a text file

2000-09-08 Thread Robert Hinojosa
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_01C019D6.3AD9C07E Content-Type: text/plain; charset="iso-8859-1" use single quotes. #Replace('#f1_element#','"','','ALL')# HTH

Re[2]: An extremely need (semi-OT)

2000-09-08 Thread Alex Puritche
J.Milks, Yes. You are right. Only this way. Related URL http://www.sqlteam.com/item.asp?ItemID=256 Friday, September 08, 2000, 10:13:23 PM, you wrote: J.Milks Quite sure you can't pass arrays. What about passing a delimited CHAR field J.Milks and

Re: Cfusers

2000-09-08 Thread Jim Taylor
http://www.mydollarmachine.com/cfusers new look and feel I thinks it would help if we have a place to go for a fully udated site to send our ckients to see some of the sites that use coldfusion. so if you will add your site. the More the Better. - Original Message - From: "Jim Taylor"

RE: cf 4.0 Win2K

2000-09-08 Thread Jesse Noller
CF 4.0 is not supported on win2k, only CF 4.5.1 -Jesse -Original Message- From: Adrian Cooper [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 4:32 PM To: [EMAIL PROTECTED] Subject: Re: cf 4.0 Win2K - Original Message - From: "Tim Bahlke" [EMAIL PROTECTED] Sent:

Setting structure values

2000-09-08 Thread Jon Tillman
Hey, I have a new problem. I have need to change a value in a structure based on the following: cfif StructFindNoCase(session.basket, #FORM.productID#) How do I go about changing the returned value and updating the structure? -- *** Jon Tillman

RE: Importing a text file

2000-09-08 Thread Chapman, Katrina
Like this #Replace("#f1_element#","Chr(34)"," ","ALL")# --K -Original Message- From: Ray, James A [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 12:05 PM To: [EMAIL PROTECTED] Subject: Importing a text file I have a file that I need to import that looks something like

RE: VBScript and WSH

2000-09-08 Thread Dave Watts
Alright I know this is off topic, though it could be a little on topic showing how verbose VBScript can be. I want to make a VBS up so that it will check to see what version of virus scanner software I have an execute the appropiate updates once it has it. Does anyone know how to access

RE: Replacing a value in the list form.fieldnames

2000-09-08 Thread Robert Hinojosa
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_01C019DD.E44CBCB8 Content-Type: text/plain; charset="iso-8859-1" cfset formField = Listgetat(Form.fieldnames, count) CFSET

Re: Setting structure values

2000-09-08 Thread Chris Cortes
cfif StructFindNoCase(session.basket, FORM.productID) cfset myStructure.key = "#MyNewValue#" /cfif All you need to do is set the structure key to the new value. Chris Cortes Consultant [EMAIL PROTECTED] Direct 713-985-6244 Cell 832-723-6485 Stonebridge Technologies ...The Fast Track to

Regular expressions . . . a good tutorial somewhere?

2000-09-08 Thread Dan Haley
Anyone have a link to a decent tutorial for regex? Can I look at Perl tutorials for this and not be too far off on what to expect from CF? Thanks, Dan -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

Novell User Management

2000-09-08 Thread Norman Elton
Previous Message: Have a look at the Intranet Hosting Toolkit UserManager. http://www.intrafoundation.com/intranethostingtoolkit.html Has anybody a user management package like this for Novell NDS? Norman Elton Information Technology College of William Mary

RE: Regular expressions . . . a good tutorial somewhere?

2000-09-08 Thread Jeremy Allen
Yes there are just a few pitfalls you have to watch out for some parts of regular expressions do not work in CF. -Original Message- From: Dan Haley [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 6:38 PM To: '[EMAIL PROTECTED]' Subject: Regular expressions . . . a good

Re: Regular expressions . . . a good tutorial somewhere?

2000-09-08 Thread Marc Garrett
Danny Goodman's Javascript Bible has a chapter on regular expressions. Also, the October issue of Web Techniques has a three page article. I haven't played with regular expression and CF, so I can't answer your second question. Regards, Marc Garrett - Original Message - From: "Dan

RE: Uploading and emailing a file

2000-09-08 Thread Dave Watts
The file is being saved on the server with the ORIGINAL filename..not a different name. So, from my understanding of how this works comes a different questionwhat if two different users on the site happen to hit the "SUBMIT" button on the form at the same time? Is it possible for

CFAdmin mapping works for INCLUDE but not for CFFILE

2000-09-08 Thread Peter Theobald
html font size=3I set up a mapping in the CF Administrator so I can INCLUDE files in the project and not worry about what the actual directory is. ie: lt;cfinclude template=quot;/lib/myfile.cfmquot;gt;br br I want to do the same thing with CFFILE, but it seems to ignore CF Mappings... Is there a

RE: CFAdmin mapping works for INCLUDE but not for CFFILE

2000-09-08 Thread Justin Kidman
CFFILE uses absolute paths on the server. CFINCLUDE uses relative paths. You can only use the mappings for relative paths. Justin Kidman -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 5:06 PM To: [EMAIL PROTECTED] Subject: CFAdmin

  1   2   >