RE: IN condition... help?

2001-12-18 Thread Pascal Peters
Actually, There is a function that is intended for this kind of situations: ListQualify(listVar,') Pascal -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: maandag 17 december 2001 23:23 To: CF-Talk Subject: RE: IN condition... help? no need to initiate a loop.

Re: fusebox ?

2001-12-18 Thread Stephen Moretti
Douglas, Just edit the returnfuseaction tag. Remove the /#caller.fusetoken# from the end of the URLs in the CFLOCATION tags on lines 19 and 23. As I remember fusetoken was some kind of personal addition to fusebox that Steve Nelson and his company used and was never strictly a part of Fusebox,

Re: Listing MP3 files and alowing either Download or Run

2001-12-18 Thread Stephen Moretti
Mike, I am trying to enable listing of MP3 files in two directory structures (with sub directories for different genres) on two different hard drives on the same server. IIS and ColdFusion are running on the same server as the MP3 directory structures. What I want to do is allow either

CFMAIL and server

2001-12-18 Thread loic jegouzo
hello, i use CF 4.5, and set the mail server localhost (for tests). i use Apache HTTP Server. do you know if i can add an SMTP server or configure apache to use cfmail. am i obliged to configure a IIS server to use CFMAIL ?? lje

Footer

2001-12-18 Thread Shahzad Butt
Hi I want to include footer at end of each page. Basically it is link to Feedback for that page. Can someone suggest how to do that. Application is developed using Fusebox 3 methodology with nested circuits. I am told that like application.cfm (which is executed before parsing page), there is

RE: Footer

2001-12-18 Thread Will Swain
OnRequestEnd.cfm -Original Message- From: Shahzad Butt [mailto:[EMAIL PROTECTED]] Sent: 18 December 2001 11:25 To: CF-Talk Subject: Footer Hi I want to include footer at end of each page. Basically it is link to Feedback for that page. Can someone suggest how to do that. Application

RE: Footer

2001-12-18 Thread Leon Greeff
Onrequest.cfm -Original Message- From: Shahzad Butt [mailto:[EMAIL PROTECTED]] Sent: 18 December 2001 01:25 To: CF-Talk Subject: Footer Hi I want to include footer at end of each page. Basically it is link to Feedback for that page. Can someone suggest how to do that. Application is

RE: Footer

2001-12-18 Thread James Maltby
use OnRequestEnd.cfm - it's like the Application.cfm in that it is the last page always looked for, while the Application.cfm is the first page always looked for. HTH J -Original Message- From: Shahzad Butt [mailto:[EMAIL PROTECTED]] Sent: 18 December 2001 11:25 To: CF-Talk Subject:

RE: Footer

2001-12-18 Thread Leon Greeff
Sorry, OnrequestEnd.cfm.:-) Last page to be executed. Like application.cfm is the first. HTH Leon -Original Message- From: Leon Greeff [mailto:[EMAIL PROTECTED]] Sent: 18 December 2001 01:35 To: CF-Talk Subject: RE: Footer Onrequest.cfm -Original Message- From: Shahzad Butt

RE: Footer

2001-12-18 Thread Pascal Peters
If You are using FB3, just create a layoutfile for your root circuit and include the footer there Pascal -Original Message- From: Shahzad Butt [mailto:[EMAIL PROTECTED]] Sent: dinsdag 18 december 2001 12:25 To: CF-Talk Subject: Footer Hi I want to include footer at end of each page.

RE: Footer

2001-12-18 Thread Shahzad Butt
Thx all -Original Message- From: Leon Greeff [mailto:[EMAIL PROTECTED]] Sent: 18 December 2001 11:39 To: CF-Talk Subject: RE: Footer Sorry, OnrequestEnd.cfm.:-) Last page to be executed. Like application.cfm is the first. HTH Leon -Original Message- From: Leon Greeff

RE: Footer

2001-12-18 Thread Shahzad Butt
Should I stick it in root index.cfm? Or app_global.cfm? -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED]] Sent: 18 December 2001 11:46 To: CF-Talk Subject: RE: Footer If You are using FB3, just create a layoutfile for your root circuit and include the footer there

CF_recommendation

2001-12-18 Thread Christopher Dawes
Hello CF-Talk, This is basic javascript so should work in all browsers. Enjoy. FORM ACTION=none METHOD=post NAME=This_FormName ID=This_FormName INPUT TYPE=text NAME=Figure1 SIZE=5 INPUT TYPE=text NAME=Figure2 SIZE=5 INPUT TYPE=text NAME=Figure3 SIZE=5

How to do events calendar?

2001-12-18 Thread Mike Kear
I am embarking on a sub-project to allow suitably authorised users to input events to my web site, to be displayed a month before the event happens, and automatically deleted after the event is over. I want the users to be able to put in an event as being held on a specific date, weekly, every

RE: Footer

2001-12-18 Thread Pascal Peters
if you have an app_global, you are using FB2, not FB3 in FB3 you create a layout file (mylayoutfile.cfm) like cfinclude template=generalheader.cfm cfoutput#fusebox.layout#/cfoutput cfinclude template=generalfooter.cfm and in the root circuit you have a fbx_layouts.cfm cfset fusebox.layoutdir =

CF_recommendation

2001-12-18 Thread Christopher Dawes
Hello CF-Talk, This is basic javascript so should work in all browsers. Enjoy. FORM ACTION=none METHOD=post NAME=This_FormName ID=This_FormName INPUT TYPE=text NAME=Figure1 SIZE=5 INPUT TYPE=text NAME=Figure2 SIZE=5 INPUT TYPE=text NAME=Figure3 SIZE=5

RE: CFQUERY

2001-12-18 Thread Aidan Whitehall
what is a cascading delete? In a parent-child data relationship, you can specify that deleting a parent record deletes all of it's associated child records. It makes sure your database maintains its referential integrity. It also makes deleting records from multiple tables a doddle, as you just

Re: tricky form question

2001-12-18 Thread BEN MORRIS
Depending on how much info is collected in the form, and if you can do method=get, then you could post to the asp page and just have that process what it needs to process and then redirect to the cf page inserting the url vars. But really you should evaluate why you need to call the asp page

RE: SQL Server Union statement

2001-12-18 Thread Bob Imperial
How about CREATE VIEW AS SELECT FROM? I haven't failed, I've found 10,000 ways that don't work. --Ben Franklin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 5:45 PM To: CF-Talk Subject: OT: SQL Server Union statement Hi all, I

Re: tricky form question

2001-12-18 Thread Troy Montour
nope I can't replicate it.. well I could if I had the time but it was a utility we bought for inserting users into Imail and the ISP we are using here likes the security it has built into it. So I figured all I need to do is pass the form vars to it but only want my thank you page to pop up and

CF and mySQL Connectivity

2001-12-18 Thread Joshua Miller
Sorry for the cross-post - I thought the Linux folks may have a bit more experience with mySQL - but I'm doing it on Win2K so I didn't know where was best to post. I'm trying to connect ColdFusion to a mySQL database - I found a little how-to that said to just do it as a normal SQL connection

RE: tricky form question

2001-12-18 Thread Dave Wilson
Troy, will your isp let you use cfexecute?...and if so, do they have Imail on the same machine as your app? Imail has a command line utility for adding users called adduser.exe. It's fairly straightforward to build a cf based app for adding users with this. I did this on a site in the past, but

Re: CFMAIL and server

2001-12-18 Thread Howie Hamlin
You configure Apache to use ColdFusion. You configure ColdFusion to use a particular email server for CFMAIL. So, if you want to use ColdFusion and CFMAIL on Apache then the answer is yes. Regards, Howie - Original Message - From: loic jegouzo [EMAIL PROTECTED] To: CF-Talk [EMAIL

CF 5 errors come up as 500 error on Win 2k

2001-12-18 Thread Robert Everland
Anyone know how I can fix this. Never have seen this before, very annoying when I try to debug. Robert Everland III Dixon Ticonderoga This list and all House of Fusion resources hosted by CFHosting.com. The

RE: tricky form question

2001-12-18 Thread Joel Parramore
Troy: You should be able to bundle up the form and url scope variables available in the ColdFusion template and POST to the ASP page using CFHTTP without any problems. If you're posting but no values are getting to the ASP page, either you're not including them using CFHTTP and CFHTTPPARAM tags

RE: Calendar Custom Tag

2001-12-18 Thread Joshua Miller
I think Internet Automated had one - a really slick FLASH/CF one at that. http://www.iautomated.com/default.cfm Joshua Miller Web Development::Programming Eagle Technologies Group, Inc. www.eagletgi.com [EMAIL PROTECTED] (304) 622-4499 x320 (VMail) CONFIDENTIALITY NOTICE The information

Re: tricky form question

2001-12-18 Thread Troy Montour
Thing is I was going to do that but then they told me there moving the imail server this weekend and it will not be on the same server as CF server, which is what screwed me up cause thats what I was going to try to do because thought it would be easyier to have it all in CF and be able to

Re: tricky form question

2001-12-18 Thread Troy Montour
Joel, I was using version 5 server on my computer so I was using 127.0.0.1 as the url and of course to the file.. at the time I was just using a CF page to send to.. here is my example I was trying to pass and since I figure this will just load when the page loads I didn't see anything else I

Re: CF and mySQL Connectivity

2001-12-18 Thread Alex
make an ODBC datasource through the ODBC admin (NOT CF). Then use that datasource. On Tue, 18 Dec 2001, Joshua Miller wrote: Sorry for the cross-post - I thought the Linux folks may have a bit more experience with mySQL - but I'm doing it on Win2K so I didn't know where was best to post.

encrypting/decrypting...

2001-12-18 Thread Tyler Silcox
I remember a discussion a little while back about encrypting/decrypting variables etc and now I'm starting to encrypt some passed variables and was wondering if y'all could remember some of the finer points of the discussion, because I sure don't, and now I'm having some problems. I think my

RE: Calendar Custom Tag

2001-12-18 Thread Andre Turrettini
I've seen a pretty nice flash one. I could probably find it if you want to go that way. DRE -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 8:57 PM To: CF-Talk Subject: Calendar Custom Tag Hello everyone. I searched the tag

RE: CF and mySQL Connectivity

2001-12-18 Thread Dave Wilson
Joshua, Have you tried simply setting up the datasource in Win2K ODBC control panel? Datasources don't necessarily need to be set up within the CF Administrator in order to work with CF. HTH, Dave -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent: 18 December

RE: Calendar Custom Tag

2001-12-18 Thread Neil Clark
The Flash Tag you speak of, is an official Macromedia Tag and yes, it is a good one :-) Neil Team Macromedia what the web can be http://www.macromedia.com !-- Senior Applications Engineer ColdFusion / Spectra / Sitespring [T]: +44 (0) 20 8941 3232 [M]: +44 (0) 7719

RE: encrypting/decrypting...

2001-12-18 Thread Raymond Camden
Tyler, I ran your code exactly as you have it, and didn't get any errors. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a

RE: CF 5 errors come up as 500 error on Win 2k

2001-12-18 Thread Dave Watts
Anyone know how I can fix this. Never have seen this before, very annoying when I try to debug. Are you getting to that page from a form post? If so, you might look at the actual FORM tag to ensure that you've written it correctly. Possible errors that might cause this are leaving off the .cfm

Custom CF Directory

2001-12-18 Thread Bernd VanSkiver
Anyone out there ever make a tag could check and create parent directories of a specified directory if they do not exist? For example, if I try to create c:\inetpub\wwwroot\test\cf\ and if the directories above that \cf\ directory didn't exist they would be automatically created rather than

Counting the number of words in a field

2001-12-18 Thread Perez, Bismark
Is there a way to accomplish this? I have a database field for which I want to know the number of words it contains, I though that since a field could also be a list, I'll treat it as such and try to find the number of white spaces, and that will give me an approximation of how many words it

File upload on a Mac

2001-12-18 Thread Ian Lurie
My guess is that someone's run into this before. Does a multipart/form-data ENCTYPE work on a Mac? I've got a user on a G3 who can't use my file upload form... Ian Portent Interactive Using Process, Design and Content to create great web sites since 1995 Consulting, design, development,

Re: encrypting/decrypting...

2001-12-18 Thread Tyler Silcox
Did you run it as a UDF? Because that's where the problem starts...if you did, then something's screwy here (MS 2000 advanced server, CF5 (duh.)) I just added cfusion_encrypt and cfusion_decrypt into the mix between the encrypt and url functions in the UDFs and it seems to work fine

RE: File upload on a Mac

2001-12-18 Thread Mike Townend
I believe it to work.. However I believe you have to trim() the form field in the CFFile tag Although I might be wrong -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: 18 December 2001 15:22 To: CF-Talk Subject: File upload on a Mac My guess is that someone's run

RE: Counting the number of words in a field

2001-12-18 Thread Garza, Jeff
Try the ListLen() function. This should give you the number of elements (words) in your field. ListLen(List, [delimiter]) HTH, Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Perez,

Re: Custom CF Directory

2001-12-18 Thread Dave Hannum
You could do it with CFTRY/CFCATCH. Dave - Original Message - From: Bernd VanSkiver [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 10:13 AM Subject: Custom CF Directory Anyone out there ever make a tag could check and create parent directories of a

RE: Counting the number of words in a field

2001-12-18 Thread Phillip Broussard
Just see how long the list is. ListLen(mylist, ) Phillip -Original Message- From: Perez, Bismark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 9:20 AM To: CF-Talk Subject: Counting the number of words in a field Is there a way to accomplish this? I have a database

Re: Counting the number of words in a field

2001-12-18 Thread stas
Treat the field as a list with space as delimiters: cfset list = one twothree cfoutput#listlen(list, )#/cfoutput CF doesn't count empty list members, so no matter how much consecutive white space you have between words, this will still return the correct number.

Re: File upload on a Mac

2001-12-18 Thread corrigan
The documentation that I've read is that MS prevents file uploading in IE 5.x for Macs due to some security issues. We never have found a work around for that issue other then to have the user e-mail it to us in an attachment. If you do find a way to get around this please PLEASE let me

RE: File upload on a Mac

2001-12-18 Thread Ben Whalley
We definitely do this on some of our projects - I'll check it again in IE5 on a mac can get back to you. Ben -- From: [EMAIL PROTECTED] Reply To: [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 3:36 PM To: CF-Talk Subject: Re: File upload on a Mac

RE: encrypting/decrypting...

2001-12-18 Thread Raymond Camden
I'm telling ya, I ran the _exact_ same code you had. Here is my version: cfparam name=KeyName default=Do you accept third party out of state checks? cfscript function Encodify(encodeThis){ var encodedString = ; encodedString = URLEncodedFormat(Encrypt(encodeThis, KeyName)); return

Re: Counting the number of words in a field

2001-12-18 Thread Tony Schreiber
Wow, here's the one time when that behavoir (counting consecutive delimiters as one) would be appropriate! Treat the field as a list with space as delimiters: cfset list = one twothree cfoutput#listlen(list, )#/cfoutput CF doesn't count empty list members, so no

RE: CF and mySQL Connectivity

2001-12-18 Thread Joshua Miller
Yeah, I tried that moments after posting the message - sorry, should've thought of that first. Joshua Miller Web Development::Programming Eagle Technologies Group, Inc. www.eagletgi.com [EMAIL PROTECTED] (304) 622-4499 x320 (VMail) CONFIDENTIALITY NOTICE The information contained in this e-mail

RE: File upload on a Mac

2001-12-18 Thread Joshua Miller
No, you're 100% right ... and you'll want to trim all your formfields ... MAC IE5 adds whitespace to them all. Joshua Miller Web Development::Programming Eagle Technologies Group, Inc. www.eagletgi.com [EMAIL PROTECTED] (304) 622-4499 x320 (VMail) CONFIDENTIALITY NOTICE The information

Sending codes to the printer...

2001-12-18 Thread Kevin Langevin
DOes anyone know how to send printer config codes from an CF/HTML template? I guess I'm mainly looking for IE parameters. Example...I have a page that my client wants to be able to print from their browser, but when it prints, they want the margins to be set just so. They aren't using any kind

Re: Custom CF Directory

2001-12-18 Thread Jeffry Houser
At 09:13 AM 12/18/2001 -0600, you wrote: Anyone out there ever make a tag could check and create parent directories of a specified directory if they do not exist? It shouldn't be too hard. Take a look at the directoryexists function and the cfdirectory tag. For example, if I try to create

Re: File upload on a Mac

2001-12-18 Thread [EMAIL PROTECTED]
Wow! how odd... I have a user who had the exact same problem this morning. Here's the issue -- for some reason, the hidden fields aren't passed along with the file upload on Mac IE. Who knows why? At any rate, breaking the upload process into two separate template pages will take care of the

RE: Counting the number of words in a field

2001-12-18 Thread Raymond Camden
FYI, if anyone is interesting in a UDF that will convert: a,,b to a,,b Check out cflib.org. I posted a UDF, ListFix, last week that does this. It essentially takes care of lists that need to have null entries counted. ===

Cfparam fuction

2001-12-18 Thread Michel Gallant
Hi, I was wondering if there was a cfscript equivalient to the the cfparam Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

RE: File upload on a Mac

2001-12-18 Thread Mike Townend
The only thing I would say is to not trim the form collection... When there is no image uploading I loop over the collection trimming the field Ie CFLOOP COLLECTION=#FORM# ITEM=foo CFSET FORM.#foo# = Trim(FORM[foo]) /CFLOOP This works a treat as longs as there is no image file... If

RE: Cfparam fuction

2001-12-18 Thread Raymond Camden
Yes. http://www.cflib.org/udf.cfm?ID=144 It's a UDF though, not a 'real' built in equivalent. The current version doesn't do the validation that CFPARAM does. === Raymond Camden, Principal Spectra Compliance Engineer for

RE: File upload on a Mac

2001-12-18 Thread Kola Oyedeji
Dont know if this is the same issue ...but it may be worth a look http://lookclose.com/learnmore/faqs/macieuploads.htm Kola Kola Oyedeji |Web Developer |ekeda elthorne gate |64 high street |pinner |middx |ha55qa t +44(208)429 7333 f +44(208)429 7339 |www.ekeda.co.uk -Original

CFObject ADO the decimal datatype

2001-12-18 Thread Jon Hall
I am writing a script that uses ado to update a table, and in the process of debugging it I have run into a snag. My app doesn't need to get a recordset, but while I am writing this template it would be nice to be able to see the data I am working with. I have a decimal datatype field in my

Weeee. Tricky form is working Thank you everyone that helped

2001-12-18 Thread Troy Montour
Thanks Everyone for the help.. not sure why last night couldn't get it to work but I have both action pages working and it adds nicely to Imail.. Thanks again for the help Troy Montour Your ad could be here.

Stressing SQL server

2001-12-18 Thread Neil H.
Can anyone send me a block of code that I can use on a SQL 2000 server that will push CPU and memory to the limit? Thanks, Neil This list and all House of Fusion resources hosted by CFHosting.com. The place for

SOT: Using XML to Document Projects

2001-12-18 Thread C. Hatton Humphrey
Hey folks, this one is kinda off-topic, since I haven't gotten around to working on the front end (which will be in CF). Where I work we have been struggling for some time to come up with a standard for documenting our code, be it ASP, CF, VB or Stored Procedures. We're trying to build something

Re: Using XML to Document Projects

2001-12-18 Thread Don Vawter
I did this in an earlier project and it worked well. - Original Message - From: C. Hatton Humphrey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 9:29 AM Subject: SOT: Using XML to Document Projects Hey folks, this one is kinda off-topic, since I

RE: Using XML to Document Projects

2001-12-18 Thread Kurt Ward
There is something similar to JavaDoc already in the works: http://cfdoc.sourceforge.net/ -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 11:29 AM To: CF-Talk Subject: SOT: Using XML to Document Projects Hey folks, this one is

RE: Using XML to Document Projects

2001-12-18 Thread Zac Belado
There is something similar to JavaDoc already in the works: http://cfdoc.sourceforge.net/ Currently the link to the Zip file is broken so there doesn't appear to be any way to get the code. Get the mailserver

Re: CFObject ADO the decimal datatype

2001-12-18 Thread BILLY CRAVENS
GetRows() converts to a VBScript array; not a CF array. If you want to see the contents of the array, you'll need to write a wrapper object that makes the ADO calls and gets the results. Out of curiosity, why are you using ADO instead of CFQuery? --- Billy Cravens - Original Message -

RE: CreateODBCDate - SOLVED

2001-12-18 Thread ccook22
Just so everyone knows there were registry entries left-over in the Web Server OS which ODBC was looking at to pull an incorrect format ODBC date even after we had changed the server date/time to US English (date/time format was still pulling as British english). A call to Microsoft pointed us

RE: Stressing SQL server

2001-12-18 Thread Ron Anderson
In the SQL 2K resource Kit, there's a data hammer component that can be used for load testing SQL. It's in VB, simply compile and run. -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 8:27 AM To: CF-Talk Subject: Stressing SQL server Can

Re: Stressing SQL server

2001-12-18 Thread Neil H.
Simply compile? I am a CF developer, no compiling. How in the world would you think I would have the tools to compile? Neil - Original Message - From: Ron Anderson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 12:25 PM Subject: RE: Stressing SQL

Re: Stressing SQL server

2001-12-18 Thread Jeffry Houser
You sound offended by the suggestion. A lot of developers have many 'talents' or 'skills' and with those skills comes there own array of software and equipment. I don't think it is presumptuous to assume the developer may have additional skills and software. With VB being a fairly

CFGRID

2001-12-18 Thread Christine Kelley
Hi! Well, sorry to bring up the same subject that has been talked about before, but I'm having some problems with CFGRID. It works on some people's computers and not on others. Even in the same office, one computer will bring up everything just fine and the next computer brings up a gray box

Re: CFObject ADO the decimal datatype

2001-12-18 Thread Jon Hall
GetRows() converts to a native array which is handled by the interpreter, in this case CF. It only converts to a VBScript array, if called by VBScript. ADO is theorhetically platform independant. Basically I am trying to do an array update with ADO. This is easy with ASP or WSH, but with

Yahoo mail and Flash

2001-12-18 Thread Jeff Beer
According to macromedia's Rich Media E-mail Resource, Yahoo Mail can display Flash movies. I've sent several mails to Yahoo, and the HTML looks great. However, the Flash doesn't show. Viewing the source of the HTML, the OBJECT tag has been rewritten as xobject ... and the EMBED tag is

RE: Using XML to Document Projects

2001-12-18 Thread Andre Turrettini
also check out fusedocs. They already have a dtd and what not to docuemnt cfm pages. Though the parser hasnt been written yet to my knowledge The DTD describes all sorts of parameters like query recordsets and in and out required and optional variables and lots more. Its a fusbox methodology

Re: CFObject ADO the decimal datatype

2001-12-18 Thread BILLY CRAVENS
It could be done with CFQuery, but it would require you to loop over your data and do an insert each time (thought this could be easily wrapped into a single CFQuery or a stored procedure). You can take advantage of Java's or ADO's capabilities now - simply put them in a bean, COM object, or CFX

Allaire Partner upgrades...

2001-12-18 Thread Kevin Langevin
ANybody know when Allaire Alliance Partners (before they expire) should be recieving the upgrade to CF Studio5 and Homesite 5? I had been told soon, but got no firm date a while back. Kevin Langevin Web Guy In Charge UsWebGuys 954-327-5780 -Original Message- From: BILLY CRAVENS

Re: Stressing SQL server

2001-12-18 Thread BILLY CRAVENS
A search on Google returned 905 results - a few of them actually pointed to some valid resources. I'd post some URL's, but I don't want to presume that you have a web browser installed. --- Billy Cravens - Original Message - From: Neil H. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

RE: fusebox ?

2001-12-18 Thread Mark Stewart
That is correct. Since the original fusebox suggested not setting client cookies, they passed cfid and cftoken on the url line - So that's what the variable #caller.fusetoken# was for. Mark -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18,

problems with _date

2001-12-18 Thread Tyler Clendenin
has anyone seen this before? we arte having big problems with any form fields ending with _date please help =( Form Entries Incomplete or Invalid One or more problems exist with the data you have entered. a.. 12/20/2001 Use the Back button on your web browser to return to the previous

RE: SQL Server Union statement

2001-12-18 Thread thanh . nguyen
I was using the Enterprise Manager. Apparently, It does not let you create a view with union select statement. I wrote the view in query analyzer and it worked. Thanks -Original Message- From: Bob Imperial [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 5:41 AM To: CF-Talk

RE: cookies, Is this possible?

2001-12-18 Thread Mark Stewart
I'm pretty sure you CAN do this. cfcookie name=myCookie value=myValue expires=NEVER domain=.macromedia.com; .allaire.com; .cflib.org Mark -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 11:27 PM To: CF-Talk Subject: Re: cookies, Is

Re: Stressing SQL server

2001-12-18 Thread Neil H.
THAT is what I am missing. Shoot. You know where I can download a web browser? Man nice guy, with lots of help. Thought I would go to my peers but instead I get RTFM. Thanks a bunch! Neil - Original Message - From: BILLY CRAVENS [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Re: Stressing SQL server

2001-12-18 Thread Howie Hamlin
Ohh ohh - here's comes a lawsuit! And, if you say well - if you're stupid enought to do thi... Remember these: Lady that dried her doggie in a microwave (won a lawsuit against the manufacturer of the microwave - can you say crispy critter?) Lady that opened her steaming hot McDonald's coffee

Move cf mail folder?

2001-12-18 Thread Mark W. Breneman
My system drive is too small. Has any one had any luck moving the mail directory? I know that registry key should control where it goes. HKLM\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Mail\BaseDirectory Can anyone verify this? Also, are there other issues I should be aware of? Thanks!

Re: problems with _date

2001-12-18 Thread Howie Hamlin
That's by design in ColdFusion: The following table describes the hidden field suffixes that you can use to do validation: _integer Custom error message Verifies that the user entered a number. If the user enters a floating point value, it is rounded to an integer. _float

RE: problems with _date

2001-12-18 Thread Duane Boudreau
_date, _number, _required, and a couple more are reserved by ColdFusion. if a user enters an invalid date in a field ending in _date cf will report an error Duane -Original Message- From: Tyler Clendenin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 3:03 PM To: CF-Talk

Re: problems with _date

2001-12-18 Thread Michael Dinowitz
CF has an old data validation scheme where hidden form fields with special names will cause other form fields to be seen by the system as required. One of those special names is anything that ends in _date. So if the field was todays_date the CF server would think that you have a different

RE: Move cf mail folder?

2001-12-18 Thread Robert Everland
Why not just uninstall CF and reinstall to the larger drive. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 3:05 PM To: CF-Talk Subject: Move cf mail folder? My

Re: Move cf mail folder?

2001-12-18 Thread Howie Hamlin
That registry entry definitely works. I would do the following: 1 - shut down CF 2 - copy all files to new drive (make sure you have all the needed folders like UNDELIVR and LOGS) 3 - restart CF. HTH, Howie - Original Message - From: Mark W. Breneman [EMAIL PROTECTED] To: CF-Talk

RE: Stressing SQL server

2001-12-18 Thread Shawn Grover
As a developer, I routinely do Cold Fusion/HTML, Visual Basic, SQL Server, MS Access, Java/javascript, and some C/C++. needless to say I have the tools to handle these things. This data hammer sounds interesting, and I will check it out. Neil, if you don't have VB or whatever tools needed to

RE: Move cf mail folder?

2001-12-18 Thread Mark W. Breneman
Thanks! Mark W. Breneman -Macromedia Certified ColdFusion 5 Developer -Network / Web Server Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com 608.270.9770 -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 2:10 PM To:

Re: Move cf mail folder?

2001-12-18 Thread Howie Hamlin
NP - of course, step 1a is to change the registry setting :-) Forgot... Howie - Original Message - From: Mark W. Breneman [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 3:13 PM Subject: RE: Move cf mail folder? Thanks! Mark W. Breneman

Re: problems with _date

2001-12-18 Thread Tyler Clendenin
ok, but that does not explain why i am getting this error. the date seems to be a properly formatted date - Original Message - From: Howie Hamlin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 3:04 PM Subject: Re: problems with _date That's by design

Sending back to referer

2001-12-18 Thread Chris Luksha
I have an application that requires login. (newbie creation of mine) I am trying to make it so that if someone gets booted to the login page from say, a page that they bookmarked, that when they successfully log in, they are sent back to the page they were trying to get to in the first place.

Re: problems with _date

2001-12-18 Thread Tyler Clendenin
see the problem with that is that the formfield has to be the same name as the column in the database because of some javascripting i am doing. and it would go against all my programming moral fibers to do some crazy work around for an issue that should not be there =b - Original Message

RE: Sending back to referer

2001-12-18 Thread Keen
Do a check for a valid session as part the application.cfm. The code for the login is part of the application.cfm and if a valid session exist then it goes straight to the calling page. After a successful login they will also be directed to the page called. I can send you an example offline if

Verity Question

2001-12-18 Thread Smith, Daron [PA]
I don't know which is better in this situation. I am working on a new site that will be almost exclusively database driven. I need to associate three fields with the collection. CFINDEX only allows 2 custom1 and custom2. Is there any way using verity I can keep a third with the collection?

Re: Stressing SQL server

2001-12-18 Thread Jochem van Dieten
Ron Anderson wrote: In the SQL 2K resource Kit, there's a data hammer component that can be used for load testing SQL. It's in VB, simply compile and run. Much easier: join all your tables together in carthesian joins, put the query in a cfm and hit refresh 5 times after eachother. On a

RE: Sending back to referer

2001-12-18 Thread Mark Stewart
If you're familiar with fusebox at all, there is a custom tag that can do this for you - cf_returnfuseaction I'm sure you can just download the tag from fusebox.org and modify it yourself to fit your needs. Mark -Original Message- From: Chris Luksha [mailto:[EMAIL PROTECTED]] Sent:

Re: Move cf mail folder?

2001-12-18 Thread Jochem van Dieten
Robert Everland wrote: Why not just uninstall CF and reinstall to the larger drive. Because moving the mail spool folder is much easier ;) Mine runs on a separate disk together with the temp dir to make sure I have always enough room on the system disk. Common security precaution. Just

  1   2   >