Re: How well does CF run with mySQL?

2000-04-11 Thread pardeep
How well does CF run with mySQL? Is it better to go with SQL7 or Oracle 8i? I am doing a prototype app with Access but now need to port to a stronger database program. Any suggestions? I understand Cold Fusion 4.5 still does not have direct native support for mySQL, true or false? Thanks

Re: Oracle 8i and WebDB

2000-04-11 Thread pardeep
Does anyone know what WebDB is all about? Is it the visual equivalent of Cold Fusion Enterprise and the Cold Fusion Studio? Anyone have any good working experience with that tool, would appreciate any working experience feedback. Thanks in advance, Pardee.

Re: Can CF be run on a Cobalt RAQ 3?

2000-04-11 Thread pardeep
Can a Linux version of Cold Fusion be run on a Cobalt RAQ 3 (512 megs of RAM)? Is it advisable? Are there advantages going this route vs. an NT machine? Thanks for your help. -- Archives:

Re: javaScripts And ColdFusion

2000-04-11 Thread Jeff
shai pete, :~~ : From: Pete Freitag [EMAIL PROTECTED] : : You would have to use javascript to post the information : to another page, you could do this with a hidden frame, : or an iFrame so the use wouldn't notice it. : : script : hiddenfrm.document.location =

really slow website

2000-04-11 Thread Russ Michaels
I have just added another site to my server (running IIS4 on NT4) and for some strange reason this site takes ages to load. The site is just basic html pages, NO CF yet, not even large graphics. I have deleted it, re-made it, used different IP's, ports, swapped a working site with this ones

Re: Session Variables

2000-04-11 Thread David E. Crawford
Use an application.cfm file on both virtual sites, with the same name in the cfapplication tag and the variables will be visible to both. Maybe not the most elegant solution, but it works. DC - Original Message - From: Aaron Rouse [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: Stock ticker

2000-04-11 Thread jstiefel
if the owner of the content does not specifically allow syndication, then it's theft! -Original Message- From: Steve Reich [mailto:[EMAIL PROTECTED]] Sent: Monday, April 10, 2000 4:13 PM To: [EMAIL PROTECTED] Subject: RE: Stock ticker Also illegal if it grabs from yahoo or something.

RE: Stock ticker

2000-04-11 Thread jstiefel
Yahoo PAYED for their stock market feed. By stealing the content from their site, you're taking money from both their pockets, and whoever they get their feed from.. -Original Message- From: Steve Reich [mailto:[EMAIL PROTECTED]] Sent: Monday, April 10, 2000 4:30 PM To: [EMAIL PROTECTED]

RE: WDDX , prefilling forms

2000-04-11 Thread Dan G. Switzer, II
Justin, That's me. Here's the URL: http://www.oacfug.org/users/dswitzer/forms/ -Dan ++---+ | name | Dan G. Switzer, II| |company | PengoWorks.com| |www | http://www.pengoworks.com | | mailto | [EMAIL PROTECTED] |

RE: Oracle 8i and WebDB

2000-04-11 Thread Janssen Dolores Y (Contractor)
WebDB is an Oracle product. We are just starting to evaluate it here - so far it seems to be good for oracle table creation and rapid prototyping but we already know we won't be switching from coldfusion as my boss thought last month. it will probably have certain uses for us, but oracle also

Re: really slow website

2000-04-11 Thread Bud
On 4/11/00, Russ Michaels penned: Here is a temporary URL on the live serrver, see how slow it is. http://212.36.131.132:8080 here it is redirected to my development machine, and it loads fine: www.9to5cafe.com Any light that you can shed on this would be great. Dismal. I take it this is your

RE: really slow website

2000-04-11 Thread david
Check your graphic http://212.36.131.132:8080/shim.gif this image ends in error. Your server is having problems serving this image. Note: the background html code is different on each domain. try posting the www.9to5cafe.com html code on your live server david -Original

pre-selecting items in a multiple list box

2000-04-11 Thread Ricq Pattay
I'm using a CF template that attempts to pre-select several items in a list box based on values returned from 2 queries. If a match occurs, that entry in the list box should be selected. There will almost always be more than one match. Specifically, the list box should list all possible delivery

Re: About changing the oldest one

2000-04-11 Thread Francisco Montes
Supposing that there are no problems with the code itself... Why don't you use CreateODBCDateTime instead of CreateODBCDate in your code? At least in that way you will store date information with greater detail... if the DB is prepared to accept a date/time object for that field. Also... i had

RE: DISPLAY QUESTION

2000-04-11 Thread Sean Daniels
snip however, the looping seems to be more accurate. when i specify 400, for instance, the looping returns 399 words while the other way returns just 370. i'm not sure why that is (btw, i just took the resultant output and did a word count on them in word) but you should be aware of it.

RE: how well does CF run with mySQL

2000-04-11 Thread Roy Rim
How well does CF run with mySQL? Is it better to go with SQL7 or Oracle 8i? I use mySQL and SQL Server 7 with Cold Fusion 4 on NT and they both run fine. The thing you need to be aware about mySQL is that it does not enforce Foreign Keys. This means you cannot have the database itself enforce

Slightly OT: DHTML and z-index

2000-04-11 Thread Mark Jones
Can anyone tell me how I can make a div go ontop of a form element using z-indexs. I don't seem to be able to do this. Cheers Mark [EMAIL PROTECTED] -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

Date: Tue, 11 Apr 2000 09:46:39 -0400

2000-04-11 Thread Steve Bernard
WebDB is a framework of Oracle Packages written in PL/SQL which allows for the construction of web-based applications using your existing Oracle DB's and PL/SQL Packages that you create. It can supposedly leverage Java code stored in the Oracle DB and run via the internal JVM. As stated before,

Re: Determining Efficency.

2000-04-11 Thread Sharon DiOrio
A great way to determine the actual efficiency of a piece of code is to put it in a loop. Looping over the code multiple times makes the actual numbers more meaningful by ruling out time associated with connections and CF administrative overhead. Specific things to look for include using

RE: cfmail question (sorry about no subject before)

2000-04-11 Thread Roy Rim
is there any way for cfusion to detect failed email, and automatically remove that address from a database? from what I understand mail servers generally queue mails before sending them out, so they only error you can possible receive is a connection error if the mail server is down. We're

Re: pre-selecting items in a multiple list box

2000-04-11 Thread Francisco Montes
Hi Ricq Your code is comparing only the first value returned from the "get_user_del_locn" query with all the others from "get_del_locn" and thus... only one match can happen... if that. I didn't think much of a solution though but... how about building only one query that intersects user

Integer?

2000-04-11 Thread jstiefel
Hopefully someone can shed some light on this. I've got a field where I'm looking for an integer. I then need to verify that this field is in an increment of 100: cfif form.myField Mod 100 It's not an increment of 100! /cfif Alrighty, that works fine, unless I enter a non-integer in the

RE: REM out CF codes

2000-04-11 Thread Mike Murry
Use this: !--- cftag --- Notice the three dashes on each side (as opposed to the html comment tag which uses 2 dashes). Mike Murry Web Developer [EMAIL PROTECTED] 214.599.5290 -Original Message- From: Michel Gagnon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 8:43 AM

RE:CF/Javascript

2000-04-11 Thread Roy Rim
HI, I'm a cf newbie (about 3 months) and I was given the task of putting a link on the bottom of every page in a cf site to a) pull the url off the page they are on b) send the user and the url to a form to email that url to a friend. My first impulse was to use the onrequestend.cfm and use the

RE: Slightly OT: DHTML and z-index

2000-04-11 Thread Dan G. Switzer, II
Mark, The odds are you can't. Netscape doesn't like to display any layers on top of the form fields. IE will place a layer on top of everything but an IFRAME or TEXTAREA box (I believe that's all, there may be others.) Supposedly IE v5.5 will fix the layer over IFRAMEs and form fields issue.

Re: REM out CF codes

2000-04-11 Thread Todd Ashworth
!--- cf_tag --- That? Todd Ashworth Hi! Is there a way to temporarily REM out CF tags=20 so that the server doesn't execute them? -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

RE: REM out CF codes

2000-04-11 Thread jstiefel
Use the C/Java style "//" to comment a line in CFSCRIPT. -Original Message- From: David E. Crawford [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 9:53 AM To: [EMAIL PROTECTED] Subject: Re: REM out CF codes similar to HTML remarks, however, they are slightly different !---

Problem populating certain fields thru update template

2000-04-11 Thread Hubert Earl
This is a multi-part message in MIME format. --=_NextPart_000_0051_01BFA398.27FB4B80 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I've made an update template which needs to be populated with data = previously entered into the

RE: Integer?

2000-04-11 Thread mherbene
Well, "01234567890" _is_ an integer, unless the rules have changed. Maybe it's too big for the mod function, though; CF can't handle large numbers (I don't remember exactly what "large" is). How about either val(form.myField) MOD 100 or cfif len(form.myfield) LT 6 !---maybe not six,

AW: cfmail question (sorry about no subject before)

2000-04-11 Thread lorenz
If you use cfmail you can go to \cfusion\mail\Log\errors.log. Check it for "550" Or "User unknown". Between these two texts is the wrong email stored. Armin -Ursprüngliche Nachricht- Von: Roy Rim [mailto:[EMAIL PROTECTED]] Gesendet am: Dienstag, 11. April 2000 18:48 An: [EMAIL

RE: Slightly OT: DHTML and z-index

2000-04-11 Thread Tim Bahlke
The 'higher' the index, the 'closer' the element is to the users' eyes. If you are simply using on 'layer' to place on top of your document, a z-index of 1 should suffice. If you need another element to 'layer' on that, move up 2, 3, 4, ... Hope this helps/ Tim

Re: Integer?

2000-04-11 Thread Alexander Lamon
Use the IsNumeric function to test for a number value, then perform your MOD stuff Hopefully someone can shed some light on this. I've got a field where I'm looking for an integer. I then need to verify that this field is in an increment of 100: cfif form.myField Mod 100 It's not an

Custom DELL tag???

2000-04-11 Thread Steve Reich
I'm writing a custom tag to retrieve the status of open orders from DELL. Has anyone written something like this that they would like to share. My tag seems to be working OK and I still need to handle the errors, but I'd like to see what else is out there. Thanks, Steve

Re: Integer?

2000-04-11 Thread Chris Tazewell
Try this: CFIF IsNumeric(myformfield) CFSET newint = Int(myformfield) CFIF newint MOD 100 not an integer /CFIF /CFIF Taz - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 11, 2000 2:55 PM Subject: Integer? Hopefully someone can shed some

Starting the CF service on Solaris

2000-04-11 Thread Steve Robson
All A Collegue of mine is attempting to restart cold fusion after the machine crashed and is getting this error message, can anyone shed some light as to the cause of the problem or likely solutions: It's running CF4 on Solaris 2.6

RE: Slightly OT: DHTML and z-index

2000-04-11 Thread jstiefel
In IE form elements will ALWAYS appear above your other div, regardless of z-index... Everyone chant with me now: "It's a feature, not a bug." -Original Message- From: Mike Murry [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 8:53 AM To: '[EMAIL PROTECTED]' Subject: RE:

RE: CF/Javascript

2000-04-11 Thread sherry.zeiss
Is anyone familiar with a Javascript group? Sherry Zeiss Infrastructure Support Services -Original Message- From: Roy Rim [SMTP:[EMAIL PROTECTED]] You really should ask the question on a javascript group, but here's the

RE: Integer?

2000-04-11 Thread jstiefel
How could a number "01234567890" be an integer? It's not even a real number! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 10:28 AM To: [EMAIL PROTECTED] Subject: RE: Integer? Well, "01234567890" _is_ an integer, unless the rules

HTML Form Submit button troubles

2000-04-11 Thread SPENCER, Chris
Hi I'm new to ColdFusion and although I'm finding it generally easy going I'm having some troubles using CFINSERT to populate an Access database table. The trouble is that ColdFusion seems to be interpreting my Submit button as another form field in which it should be entering a value in the

RE: Starting the CF service on Solaris

2000-04-11 Thread mherbene
From other postings I've seen, the problem is exactly what the error message says. The "registry" file in which CF stores config info (basically everything you set through CF admin) has gotten corrupted. He could look in /opt/coldfusion/registry for a backup version of cf.registry that might

Re: CF/Javascript

2000-04-11 Thread B.Cravens
Is anyone familiar with a Javascript group js-jive.. by the same folks that run this list.. go to houseoffusion.com for info Billy Cravens [EMAIL PROTECTED] -- Archives: http://www.eGroups.com/list/cf-talk To

RE: Starting the CF service on Solaris

2000-04-11 Thread Chris Evans
Try running ./stop -force to kill the registry daemon first. Then running ./start should work. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Steve Robson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 10:45 AM To: House of Fusion (E-mail)

Is there a CFUG in SE Wisconsin?

2000-04-11 Thread Scott J. Brader
As a new developer in ColdFusion, I was wondering if there is a users group in Southeast Wisconsin? Thanks, Scott Scott Brader USAV Group 5485 South Westridge Drive PO Box 510620 New Berlin, WI 53151-0620 Phone: 262.814.2000 Fax: 262.814.2006 Amateurs Practice Until They Get It Right, Experts

RE: OT empty list items aren't counted?

2000-04-11 Thread jstiefel
One might ask why this is a problem? If you've got a need for null values, then use an array. A good developer knows when to use different datatypes. ;-) -Original Message- From: Douglas Blocker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 11:55 AM To: [EMAIL PROTECTED]

OT: Word document client-side

2000-04-11 Thread Tom Langer
This is a multi-part message in MIME format. --=_NextPart_000_00A6_01BFA3A3.74F281F0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I'm attempting to create a client-side only web-app to create proposals. I am going to use javascript

Debugger across multiple templates

2000-04-11 Thread Dan O'Keefe
Does anyone know if the debugger is capable of moving across multiple templates? For example I have form a that gathers user input and posts to form b. Form b is where I want to debug. I set my breakpoints there and start the debugging session from form a. When I post, template flow never stops

Re: Any good way to maintain server variables?

2000-04-11 Thread Reuben King
In 4EC96B864C1CD211BBC500805FE6FDBC02B48B9E@TCEXCH1, Thompson, Ryan K (James Tower) ([EMAIL PROTECTED]) in a fit of unbridled passion, wrote: We are implementing a clustering solution that can do sticky session but it needs a unique value it either a cookie variable or URL variable per

HELP!! How to force Word Document to download?

2000-04-11 Thread Scott Becker
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_01BFA3CF.381F7B50 Content-Type: text/plain; charset="iso-8859-1" Hi, Does anyone know how to force a Word document (or any office

Performance and CFEXIT

2000-04-11 Thread Dave Carabetta
I have been doing some testing with the performance time of CFEXIT in my applications and have found that it takes .25 seconds just to process the tag. While it doesn't look like much by itself, under load, this is a tremendous amount of time for a simple tag to execute. Can anybody give me

Re: Any good way to maintain server variables?

2000-04-11 Thread Al Musella, DPM
You could also just test in the application.cfm.. if the server variables are not defined, make one up! If you rely on a scheduled task, there will always be a chance that a page could execute before the variable is declared and trigger an error. Al he domain name will not change in

RE: CF/Javascript

2000-04-11 Thread Steve Reich
Yes... JS-Jive! Filled with lots of CFers too! Community email addresses: Post message: [EMAIL PROTECTED] Subscribe:[EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://www.onelist.com/community/JS-Jive HTH, Steve

RE: Integer?

2000-04-11 Thread mherbene
Huh? Do you mean because of the leading zero? Most of the time computers can ignore that. What else makes it not an integer? If I write it as 1,234,567,890 is it an integer? Not wanting to fight, but curious.. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]

Re: CFMAIL Question

2000-04-11 Thread Len Conrad
I have heard horror stories of CFMAIL overloading mail servers. The pb seems to be more that the CFMAIL SMTP client tends to pile up msgs in the CF send mail queue when there is a hiccup and has to be kicked to start sending again, or at least that seemed to be a frequently reported pb. It

search results produce everything in the table...

2000-04-11 Thread Richard Hart
Hi, I have a simple search form on which you can search on three criteria. However when I type nothing in the form and hit submit it gives me everything in the table. I have tried to over-ride this to no effect. Can anyone point me in the right direction? Thanks, Richard

Re: HTML Form Submit button troubles

2000-04-11 Thread David E. Crawford
You can specify the list of formfields to be processed by the CFINSERT tag, using the FORMFIELDS attribute. However, in my opinion, reliance on CFINSERT can have unintended consequences. I recommend that you use a CFQUERY with the appropriate SQL statements instead. This gives you more

RE: HTML Form Submit button troubles

2000-04-11 Thread Sean Daniels
When I create a column for the sumbit button the actionpage works just fine. Does anyone know what I'm doing wrong? Do you have a "name" attribute specified for the submit button? If so, so you need it? This might be the problem although I haven't tested it out. Other than that, you could

RE: CF/Javascript

2000-04-11 Thread Steve Reich
js-jive.. by the same folks that run this list.. go to houseoffusion.com for info Billy Cravens [EMAIL PROTECTED] Just to clarify, JS-Jive is not affiliated in any way to the House of Fusion or the CF-Talk list. It was started by one of the members of CF-Talk (me) and does have a large CF

Re: HTML Form Submit button troubles

2000-04-11 Thread Emily B. Kim
I'm new to ColdFusion and although I'm finding it generally easy going I'm having some troubles using CFINSERT to populate an Access database table. The trouble is that ColdFusion seems to be interpreting my Submit button as another form field in which it should be entering a value in the

Re: HTML Form Submit button troubles

2000-04-11 Thread Joy Bedell
Chris, Leave out "NAME="SubmitForm" in your INPUT TYPE="submit" tag. Or, better yet, don't use CFINSERT at all... write your own CFQUERY to add records to the database. Joy At 04:40 PM 4/11/00 +0100, you wrote: Hi I'm new to ColdFusion and although I'm finding it generally easy going I'm

RE: HTML Form Submit button troubles

2000-04-11 Thread Shawn Regan
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_01BFA3D5.099BFC60 Content-Type: text/plain; charset="iso-8859-1" Just don't use the attribute NAME in your INPUT submit tag.

Re: CF tags for SAS

2000-04-11 Thread Lisa Greenberg
--F87DB1634D05711533B0B307 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I am very interested in this topic! Randy Hogg wrote: Does anyone know of any custom tags to work with SAS datasets, call SAS routines realtime, or any other interaction? Many

sending and waiting for a file - COM object poss?

2000-04-11 Thread Ben Lowndes
Hi, I'm looking for a bit of advice here. I need to send a file across a that contains the contents of a CF query network and then wait for a return file and present the contents of this file to the users browser. No problem with writing the file, simply use CFFILE. The thing is how can I get

Re: Protecting email links on web pages from spam bots?

2000-04-11 Thread Larry C. Lyons
Simple instead of using [EMAIL PROTECTED], use the Character entity for it So in this case you'd use whatever#64;company#046;com HTH, larry -- Larry C. Lyons EBStor.com 8870 Rixlew Lane, Suite 201 Manassas, Virginia 20109-3795 tel: (703) 393-7930 x253 fax: (703) 393-2659 http://www.ebstor.com

RE: Integer?

2000-04-11 Thread Jim Vu
it appears that coldFusion can't handle very large integer. one work around solution is to check for the last two digits being "00". if they are, the integer is divisible (or increment of) by 100. here's the fix: cfif isNumeric(form.myField) cfset rightTwoDigits = right(form.myField, 2)

Re: Protecting email links on web pages from spam bots?

2000-04-11 Thread Reuben King
Will this work for the mailto: url inside an a href as well as the display? In [EMAIL PROTECTED], Larry C. Lyons ([EMAIL PROTECTED]) in a fit of unbridled passion, wrote: Simple instead of using [EMAIL PROTECTED], use the Character entity for it So in this case you'd use

RE: Integer?

2000-04-11 Thread Reuben King
In [EMAIL PROTECTED], [EMAIL PROTECTED] ([EMAIL PROTECTED]) in a fit of unbridled passion, wrote: Huh? Do you mean because of the leading zero? Most of the time computers can ignore that. What else makes it not an integer? If I write it as 1,234,567,890 is it an integer? Not wanting

No Subject

2000-04-11 Thread Tim Bahlke
I have a field with numbers ranging from 1-5 that I would like my users to be able to use as a search criteria. If the user wishes to search by 3, for example, I would like to return anything that was 3 or greater. Can this be done? Thanks, Tim

Re: Is 4.5.1 Solid

2000-04-11 Thread Jennifer
At 09:02 AM 4/10/00 -0700, you wrote: Hi Dick, We upgraded to 4.51 and it seemed to cure quite a few ills. So far no damage. We had previously installed the hot fixes for CFHTTP and CFMAIL and had switched some CFMAIL calls off to another machine so we didn't have many problems there. It now

RE: search results produce everything in the table...

2000-04-11 Thread Jeff Shepler
Since the search is only restricted to what you type in, if you leave it blank the search is not restricted. Hence the entire table is returned. What would you like to have happen instead? -Original Message- From: Richard Hart [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000

Re: Can CF be run on a Cobalt RAQ 3?

2000-04-11 Thread pardeep
Can a Linux version of Cold Fusion be run on a Cobalt RAQ 3 (512 megs of RAM)? Is it advisable? Are there advantages going this route vs. an NT machine? Thanks for your help. -- Archives:

Re: Oracle 8i and WebDB

2000-04-11 Thread pardeep
Does anyone know what WebDB is all about? Is it the visual equivalent of Cold Fusion Enterprise and the Cold Fusion Studio? Anyone have any good working experience with that tool, would appreciate any working experience feedback. Thanks in advance, Pardee.

CFmail and CRLF!!!

2000-04-11 Thread Brook Davies
I am using Que Mail and Cf 4.5 for linux. If I send a mail message with more than one line my mail server will not send it because it is sending bare LF. read: http://cr.yp.to/docs/smtplf.html After an attempt to send a message with a bare LF, Cfmail will no longer even try to send mail

RE: Protecting email links on web pages from spam bots?

2000-04-11 Thread Steve Reich
Will this work for the mailto: url inside an a href as well as the display? If you just try it, you'll see that it does. Great tip, Larry! -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

Re: Performance Question

2000-04-11 Thread Brook Davies
cfinclude At 10:29 AM 11/04/00 -0700, you wrote: Hi Folks, I was wondering about something when it comes to performance: Which is faster, a custom tag (CF_mytag not CFX_mytag) or using a CFINCLUDE to include the code that is being called? Thanks, Doug

RE: CF-hosting in New Zealand

2000-04-11 Thread Cabbage Tree Creative Ltd
Hi Try www.2day.com based in Auckland - automated online setups and good CF knowledge. We have had sites with them for around 18mths with few hiccups. cheers Lawrence Smith The Chief Cabbage See a profile of our work at: http://www.cabbagetree.co.nz/

Re: about updating with CFSCHEDULE

2000-04-11 Thread Scott M. Berry
I am not sure what the original message is about exactly, but it kicked my mind into a question: I output the result of the scheduled tasks to a file. Say I want to keep a log (either appending to that file or in a database preferred).. how would I go about that? Right now it simply overwrites

Re: Is 4.5.1 Solid

2000-04-11 Thread Scott M. Berry
Not only do they use cached proxy servers, but they severely filter content. Wise words: "bad bad bad" =) Scott M. Berry -- College of the Canyons Web Design 661.259.7800 x3630 http://www.coc.cc.ca.us - Original Message - From: "Jennifer" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

RE: CF RDS and WINDOWS 2000 Permissions

2000-04-11 Thread Steve Bernard
I can't speak for configuring FTP services using MS FTP under Win2k, I haven't tried it. As you say, all the FTP servers I have experience with allow for default directories to be stipulated on a per user or group basis. I am guessing that this is the same for Win2k otherwise no one will use the

Re:

2000-04-11 Thread Dave Hannum
In your SQL WHERE statement you handle that: WHERE someField = '#FORM.fieldNumber#' Dave = "Always Drink Upstream From The Herd!" David Hannum Web Analyst/Programmer Ohio University [EMAIL PROTECTED] (740) 597-2524 - Original Message - From: Tim

RE: Is 4.5.1 Solid

2000-04-11 Thread Jeff Shepler
-Original Message- From: Jennifer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 1:59 PM To: [EMAIL PROTECTED] Subject: Re: Is 4.5.1 Solid At 09:02 AM 4/10/00 -0700, you wrote: snip The really funny calls were the AOL users who said "What do you mean you don't do tech

RE: CF RDS and WINDOWS 2000 Permissions

2000-04-11 Thread Aaron Johnson
Sean, In NT 4.0, you didn't actually deal with User Manager for the FTP stuff you are talking about. I haven't tried this on 2000, but this is what you do on NT 4. 1) Create an FTP root. Set no access for all users to this folder. 2) Create a folder for each user that you want to have FTP

Re: search results produce everything in the table...

2000-04-11 Thread Dave Hannum
Try this: Check to see if your form fields are submitted: if not, then stop them and give an error message. CFIF NOT IsDefined("FORM.FieldNames") STOP AND GO BACK! CFABORT /CFIF = "Always Drink Upstream From The Herd!" David Hannum Web Analyst/Programmer Ohio

RE:

2000-04-11 Thread Jeff Shepler
[search.cfm] ... input type=text name=someField ... [/search.cfm] [results.cfm] ... cfquery bla bla bla select yada yada yada fromwhatever WHERE someField = #FORM.someField# /cfquery ... [/results.cfm] Something like that?? -Original Message- From: Tim

RE: Integer?

2000-04-11 Thread Grainne E. O'Neill
I'm going to lay out what numbers are what. For programming purposes these definitions vary. All Numbers Imaginary: Numbers that do not exist for practical purposes. They have real value in some engineering fields, and in mathematics. What number, when multiplied with itself gives you a

Re: Is 4.5.1 Solid

2000-04-11 Thread WBB
Hi Jennifer, At 09:02 AM 4/10/00 -0700, you wrote: Hi Dick, We upgraded to 4.51 and it seemed to cure quite a few ills. So far no damage. We had previously installed the hot fixes for CFHTTP and CFMAIL and had switched some CFMAIL calls off to another machine so we didn't have many

RE: How to do

2000-04-11 Thread Miriam Hirschman
I did this with java script: function chkData() { if((document.frmname.radiobuttonname.checked)(document.frmName.RadioButtonName.value.length = 0)) { alert("If you checked 'Other' for question 8, please describe."); return false; }

RE: CF Talk, calculating elapsed time

2000-04-11 Thread Jeff Shepler
Unfortunately, you cannot tell when a client leaves your site. This makes it hard to know when to stop timing. Unless you have them click a logoff button, of course, but you are not guaranteed that they will do so (we all know how users are). Couple of different ways you can try to do this. 1.

Re: CFmail and CRLF!!!

2000-04-11 Thread Jennifer
At 11:29 AM 4/11/00 -0700, you wrote: I am using Que Mail and Cf 4.5 for linux. If I send a mail message with more than one line my mail server will not send it because it is sending bare LF. read: http://cr.yp.to/docs/smtplf.html After an attempt to send a message with a bare LF, Cfmail will

RE: How to do

2000-04-11 Thread Jeff Shepler
Ok, let's assume that your radio button field is named FOO and your text box is named BAR. Instead of doing a cfinsert, you will have to do this one "by hand": cfquery name="doInsert" datasource="whatever" INSERT INTO someTable (Answer) VALUES ('#iif(FORM.FOO EQ "Other",

Re: CF tags for SAS

2000-04-11 Thread Gerard T. Pauline
Randy: You might also try posting to [EMAIL PROTECTED], the SAS programming list. The people at Trilogy Consulting have done some work with SAS CF. -Gerry Gerard T. Pauline Mgt, Internet/DB Applications Computer Systems, DoIT Pace University Randy Hogg wrote: Does anyone know of any

Re: Source Control

2000-04-11 Thread Reuben King
In 058501bfa3e4$872b8330$[EMAIL PROTECTED], Greg Czechowicz ([EMAIL PROTECTED]) in a fit of unbridled passion, wrote: We are currently using Visual Source Safe to implement source control on our site. Could someone please email me their prior experiences regarding source control. We currently

RE: Integer?

2000-04-11 Thread Reuben King
I have CF 4.5.1 and this statement simply isn't true. IsNumeric() returns a true no matter how many 0's prepend a number, as long as the number is a number. Maybe in earlier versions of CF it returned a false, but if it did I am not aware of it. In

File Archive Application

2000-04-11 Thread Jeffrey G. Brown
Our intranet needs a file archive application, where items such as PDF files, Excel spreadsheets, Powerpoint presentations, Word documents, and just about anything else imaginable can be stored and retrieved. In some cases, access to certain files and groups of files must be limited to

Re: Can CF be run on a Cobalt RAQ 3?

2000-04-11 Thread Adrian Cooper
- Original Message - From: "Mike Sheldon" [EMAIL PROTECTED] Sent: Tuesday, April 11, 2000 8:34 PM Given the choice right now, I'd prefer to run the Linux version of CF. I've tested CF Linux and have been very happy with its behavior. What database are you using? Anyone using

RE: Is there a CFUG in SE Wisconsin?

2000-04-11 Thread WorldNet
!-- From: [EMAIL PROTECTED] (Scott J. Brader) !-- Subject: Is there a CFUG in SE Wisconsin? Nothing has been formalized but myself and another individual working at WEPCO have met and discussed the issue and have remained in touch every now and then. I've offered to host the group's website

Re: How well does CF run with mySQL?

2000-04-11 Thread pardeep
How well does CF run with mySQL? Is it better to go with SQL7 or Oracle 8i? I am doing a prototype app with Access but now need to port to a stronger database program. Any suggestions? I understand Cold Fusion 4.5 still does not have direct native support for mySQL, true or false?

Re: Is 4.5.1 Solid

2000-04-11 Thread Reuben King
WBB, Your trashing of AOL rather bothers me. AOL is just an ISP like any other and if your application breaks when someone from AOL attempts to use it, then I would suggest the problem lies flatly on your end for your failure to support even the most basic of cross-browser compatibilities.

Does anyone have a CFMAIL problem where '=' are added to message

2000-04-11 Thread Steve Nelson
Hi everyone! We just applied the hot fix from allaire that addresses the CFMAIL problem. This was for the smtp.dll. With the hot fix, I see an '=' character added to the end of certain lines in the body of an email sent with cfmail. The equals sign only appears when there are spaces just

Missing primary key error message

2000-04-11 Thread Hubert Earl
This is a multi-part message in MIME format. --=_NextPart_000_0121_01BFA3D7.0EE44400 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I'm working on an application which should allow data to be added to a = database, and afterwards

Re: CFmail and CRLF!!!

2000-04-11 Thread Reuben King
In [EMAIL PROTECTED], Jennifer ([EMAIL PROTECTED]) in a fit of unbridled passion, wrote: At 11:29 AM 4/11/00 -0700, you wrote: I am using Que Mail and Cf 4.5 for linux. If I send a mail message with more than one line my mail server will not send it because it is sending bare LF. read:

  1   2   >