RE: New CF site

2001-06-04 Thread Dylan Bromby
that's ok. i think most of us figured that one out on our own. :) -Original Message- From: Clint Tredway [mailto:[EMAIL PROTECTED]] Sent: Monday, June 04, 2001 8:06 AM To: CF-Talk Subject: Re: New CF site I apologize... I mispelled the url... this is the correct one..

RE: Radiant Communications

2001-06-04 Thread Dylan Bromby
i've been with various co-lo facilities for 5+ years. i've been at epoch for the past year and it has been infallible. i pay just over $1000/month for a half-cabinet and i can burst up to 10Mbps. mind you i purposefully negotiated my contract on the last day of the month when all the sales people

RE: Windows 2000 NLB

2001-06-01 Thread Dylan Bromby
client variables can be stored in a database, not sessions. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 7:12 AM To: CF-Talk Subject: Re: Windows 2000 NLB Store session info in a database instead of in CF memory. Robert -

RE: Windows 2000 NLB

2001-06-01 Thread Dylan Bromby
want to make sure i worded my previous response more correctly; session variables are stored in memory only. client variables however, can be stored in a database (or the registry) as specified in the CF admin. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent:

RE: COOKIE expiration :((

2001-05-31 Thread Dylan Bromby
. ;) or maybe not... -Original Message- From: Andrew Tyrone [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 7:36 AM To: CF-Talk Subject: RE: COOKIE expiration :(( -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 9:38 AM To: CF

RE: CF5 released - Macromedia?

2001-05-31 Thread Dylan Bromby
i was notified this week. however, i don't know if that's because i signed up on the home page. -Original Message- From: Peter Tilbrook [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 4:37 PM To: CF-Talk Subject: CF5 released - Macromedia? Has anyone actually received an email

RE: CF Wireless

2001-05-31 Thread Dylan Bromby
steve; obviously i run the cf-wireless list, but i subscribe to other wireless lists as well. i have to say the quality of the ones i belong to is not that great. when the cf-wireless one gets going on certain topics it's very good because there are a number of developers that have been

RE: COOKIE expiration :((

2001-05-30 Thread Dylan Bromby
post the code. otherwise - and you may already know this: remember...if you load a page with CFCOOKIE (or write a cookie any other way) then quit the browser, the cookie *is not* set. you need to load a subsequent page. for example, consider the path: page1.cfm --- page2.cfm --- page3.cfm

RE: CF5 review in eWEEK

2001-05-30 Thread Dylan Bromby
as far as being *proactive*, you could have signed up for the CF5.0 beta test and learned all about it for months before its release. is it allaire's responsibility to make sure *you're* up to speed? i can't imagine what my business would be like if i waited for others to educate me about

RE: CFHTTP??

2001-05-30 Thread Dylan Bromby
you can use Find() and Mid() to extract specific code. assume text.txt contains the string this is my dog and he likes to eat cats. !- * SNIPPET * - CFHTTP URL=text.txt METHOD=GET CFSET string = #CFHTTP.FileContent# CFSET start = #Find(eat, string)# + 4 CFSET end = #Find(cats,

RE: CF5 review in eWEEK

2001-05-30 Thread Dylan Bromby
is rising and Macromedia's isn't... ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Dylan Bromby [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 9:49 AM To: CF-Talk Subject:RE: CF5 review in eWEEK

RE: COOKIE expiration :((

2001-05-30 Thread Dylan Bromby
to: scriptlocation.href='/sectionthatneedscookie/index.cfm'/script just for checking, and still - it didn't work. Thanks alot for trying thou, got any more tips?? Michael. - Original Message - From: Dylan Bromby [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 30, 2001 3:37 PM

RE: RealAudio and ColdFusion

2001-05-30 Thread Dylan Bromby
isn't the extension .ram? not sure if that matters... -Original Message- From: David Grabbe [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 9:47 AM To: CF-Talk Subject: RE: RealAudio and ColdFusion Still stumped on this. I tried using the 'FileExists()' method, but

RE: WhoIs tag that returns a variable

2001-05-29 Thread Dylan Bromby
try one of these? http://devex.allaire.com/developer/gallery/SearchResults.cfm?keywords=whois -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 7:22 AM To: CF-Talk Subject: WhoIs tag that returns a variable Hey all, I need a free WhoIs tag

RE: WhoIs tag that returns a variable

2001-05-29 Thread Dylan Bromby
there's a version of CFX_ShellExec or something similar that lets you return the output in a var. let me hunt around and see if i can find which tag it was. -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 8:39 AM To: CF-Talk Subject: RE:

RE: DTS from Stored Procedure MSSQL 7.0

2001-05-28 Thread Dylan Bromby
this might help: http://www.swynk.com/friends/green/dtsole.asp -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, May 28, 2001 6:44 PM To: CF-Talk Subject: RE: DTS from Stored Procedure MSSQL 7.0 Is is possible to execute a DTS package from a stored

RE: FTP Server

2001-05-24 Thread Dylan Bromby
i've used serv-u for 5 years. it's excellent. and DIRT cheap. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 11:17 AM To: CF-Talk Subject: OT: FTP Server All, Can anyone suggest a decent and moderatly priced (~ $250) FTP server that

RE: Dynamic variable names

2001-05-24 Thread Dylan Bromby
yes you can do it. i use Evaluate() with dynamic values all the time. try removing the from #id#. if that doesn't work (it should), try something like: cfset thelist = cfloop from=1 to=3 index=id cfset tempvalue = form.fieldnum#id# cfset thevalue = Evaluate(tempvalue)

RE: Configuring CF45 for Java

2001-05-22 Thread Dylan Bromby
your web server sends the applet to the browser. if it works on one machine and not another, it sounds like it's a problem on the client side. CF has nothing to do with this inherently unless you're using CFAPPLET, in which case you register the class with CF. if you're using a servlet however,

RE: Is it possible to send attach with cfmail ?

2001-05-21 Thread Dylan Bromby
right from the docs: MIMEATTACH=path as in: CFMAIL TO=recipient FROM=sender CC=copy_to BCC=blind_copy_to SUBJECT=msg_subject MIMEATTACH=path -Original Message- From: Chiraporn [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 9:02 PM To: CF-Talk Subject:

RE: CF-Notes database connection

2001-05-17 Thread Dylan Bromby
i'm pretty sure you can exchange data between notes and SQL using XML. do some searches on this on the net and you'll find a good amount of resources. this isn't a full article, but look at the summary: http://www.advisor.com/Articles.nsf/aid/SOBCM04 it seems to resemble what you're trying to

RE: CF_DOWNLOAD -- need fix ASAP

2001-05-14 Thread Dylan Bromby
i'm not sure what the original request was, but if what you want to do is force the browser to open a save as dialog instead of try to display the file in the browser, Fig Leaf has some code on their site explaining how to force a download with the header info. maybe dave can post the URL again

RE: the dbl devil

2001-05-14 Thread Dylan Bromby
if using CF 4.5.x, why not use: CFSET temp=CFUSION_DISABLE_DBCONNECTIONS(DSN, 1) to release the DSN, and: CFSET temp=CFUSION_DISABLE_DBCONNECTIONS(DSN, 0) to re-enable it. just replace DSN with your actual DSN. -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]]

RE: Evaluating strung together variables

2001-05-14 Thread Dylan Bromby
i don't know if fully get what you're trying to do, but it seems you could use some LIST functions with your separator as a delimiter. then it wouldn't matter how long each element of the list is. -Original Message- From: Josh R [mailto:[EMAIL PROTECTED]] Sent: Monday, May 14, 2001 10:24

RE: Anybody Williams Sonoma folks on this list working on the Pottery Barn Kids site?

2001-05-14 Thread Dylan Bromby
you're kidding, right? the sentence in your subject doesn't even make sense. -Original Message- From: Shawnea Carter [mailto:[EMAIL PROTECTED]] Sent: Monday, May 14, 2001 5:34 PM To: CF-Talk Subject: Re: Anybody Williams Sonoma folks on this list working on the Pottery Barn Kids site?

RE: the dbl devil

2001-05-11 Thread Dylan Bromby
just keep in mind (as simon pointed out) this is specific to CF 4.5.x and later. -Original Message- From: Jon Scherdin [mailto:[EMAIL PROTECTED]] Sent: Friday, May 11, 2001 6:39 AM To: CF-Talk Subject: Re: the dbl devil There is another way to get rid of the .ldb file so that you can

RE: New Cold Fusion book, O'riely Press

2001-05-11 Thread Dylan Bromby
i'll let ben give the formal answer, but i think he passed on 4.5 to do a full release for 5.0. -Original Message- From: PEREZ, RICHARD RINGO (SBCSI) [mailto:[EMAIL PROTECTED]] Sent: Friday, May 11, 2001 10:11 AM To: CF-Talk Subject: RE: New Cold Fusion book, O'riely Press Is BEn Forta

RE: insert problem

2001-05-10 Thread Dylan Bromby
Replace(1,110.00, ,, , ALL) or Replace(thevar, ,, , ALL) if it's in a variable. -Original Message- From: Metzy Martinez [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 10:23 AM To: CF-Talk Subject: insert problem i'm trying to same a number that has been formatted as dollar

RE: insert problem

2001-05-10 Thread Dylan Bromby
]Line 9: Incorrect syntax near '110.00'. The error occurred while processing an element with a general identifier of (CFQUERY), occupying document position (377:2) to (377:63). Date/Time: 05/10/01 11:20:05 ... -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent

RE: Pinging an email address

2001-05-09 Thread Dylan Bromby
you can telnet to a mail server (they usually have exposure to the internet). 1) lookup the MX record for a domain 2) telnet to that mail server (usually on port 25) 3) do VRFY (username) or EXPN (username) however, those commands are unavailable sometimes for privacy/security reasons.

RE: disabling RDS

2001-05-09 Thread Dylan Bromby
on NT? if so, set the service to Disabled. -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 1:42 PM To: CF-Talk Subject: disabling RDS I have disabled the RDS service on our NT server but get the following error in the executive log:

RE: disabling RDS

2001-05-09 Thread Dylan Bromby
woops. i guess i should've read all of the message huh? :) -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 2:10 PM To: CF-Talk Subject: RE: disabling RDS on NT? if so, set the service to Disabled. -Original Message- From: Brook

RE: Replace #'s Function!!

2001-05-09 Thread Dylan Bromby
cfset session.source = Replace(temp, ##, , ALL) -Original Message- From: bfalloon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 11:07 PM To: CF-Talk Subject: Replace #'s Function!! Hello all, I've encounter a stumbling block... I'm performing a CFFILE action to read a text

RE: CF-Studio registration number

2001-05-08 Thread Dylan Bromby
just enter the serial number when you install it. you can uninstall and reinstall with the number. -Original Message- From: CF-Talk (SD Solutions) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 08, 2001 5:13 AM To: CF-Talk Subject: CF-Studio registration number Hi, is there a way to

RE: CFFILE BTW

2001-05-08 Thread Dylan Bromby
Here they are: CFFILE.AttemptedServerFile CFFILE.ClientDirectory CFFILE.ClientFile CFFILE.ClientFileExt CFFILE.ClientFileName CFFILE.ContentSubType CFFILE.ContentType CFFILE.DateLastAccessed CFFILE.FileExisted CFFILE.FileSize CFFILE.FileWasAppended CFFILE.FileWasOverwritten CFFILE.FileWasRenamed

RE: SQL query help

2001-05-08 Thread Dylan Bromby
you should try to avoid using SELECT * in a production environment. it's unnecessary process utilization. it's more efficient for SQL to look up specified row names. might take longer to type, but it's the better way to go. ;) -Original Message- From: Kevin Mansel [mailto:[EMAIL

RE: CF Server Locking?

2001-05-07 Thread Dylan Bromby
i think it's less of a performance hit to lock at the code level rather than the administrator level. -Original Message- From: Matt Eschenbaum [mailto:[EMAIL PROTECTED]] Sent: Friday, May 04, 2001 10:22 AM To: CF-Talk Subject: CF Server Locking? I have a client who has problems with

RE: CFMAIL Errors..whats going on??

2001-05-07 Thread Dylan Bromby
that's an easy one. your mail server is set to not relay for that site. what mail server are you using? i get this with IMail when i forget to allow a web site to use the mail gateway by IP. -Original Message- From: Angél Stewart [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001

RE: CFMAIL Errors..whats going on??

2001-05-07 Thread Dylan Bromby
hahahah. i didn't read the logs before i responded. i thought these were HIS sites. heh. this is a good thing then, if indeed someone is trying to use the mail server as a relay. good in the sense the mails aren't being sent. -Original Message- From: Kevin Schmidt [mailto:[EMAIL

RE: Blocking IP Range on UU net User

2001-05-07 Thread Dylan Bromby
i had a similar problem a few years ago, and here's what i did: require a cookie for the form submission. make the value of the cookie unique for each user. whenever that person submits an email, block them by cookie. if you knew the IP range, you could do something like CFIF #CGI.REMOTE_ADDR#

RE: CFMAILPARAM and X-Mailer

2001-05-07 Thread Dylan Bromby
you don't need CFX_Mail if you're running CF 4.5. use the MAILERID attribute of CFMAIL to set the mailer to whatever you want. -Original Message- From: Paul Mone [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 4:19 PM To: CF-Talk Subject: RE: CFMAILPARAM and X-Mailer I think

RE: Spell Checking??

2001-05-04 Thread Dylan Bromby
1. How do you know if a cfx tag is thread safe? More like how do you know when it's not? When it starts crashing your sever. :) Seriously though, some are more thread-safe than others, but there's no way of knowing that unless the author of the tag tells you, or you may or may not see memory

RE: Delimiters

2001-05-03 Thread Dylan Bromby
are you suggesting setting DELIMITER=*** will break up a string by *, **, AND ***? -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 6:50 AM To: CF-Talk Subject: RE: Delimiters Besides commas and pipes, what are the next best choices for

RE: How to Force https vs http

2001-05-03 Thread Dylan Bromby
you can do it on the server. which web server are you using? -Original Message- From: Chris Montgomery [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 6:57 AM To: CF-Talk Subject: How to Force https vs http Howdy all, Quick questionis it possible to have a URL redirect to

RE: CF mail -looking for the bottleneck

2001-05-03 Thread Dylan Bromby
if they're stacking up in CF's mail spool directory or undeliverable, it's a good chance it's not your mail server. do you have a zero-length file in the CF mail spool directory? -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 7:07 AM

RE: CF mail -looking for the bottleneck

2001-05-03 Thread Dylan Bromby
what are you talking about? 1) he didn't say he's sending millions of emails. 2) he also didn't indicate he was spamming everyone. i send 50,000+ emails regularly using ColdFusion and it works fine. ColdFusion is not a SMTP server. my point is you need a dedicated mail server package no matter

RE: Random Password

2001-05-03 Thread Dylan Bromby
there are some tags in allaire's tag gallery that do that. -Original Message- From: Chris Badouin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 9:24 AM To: CF-Talk Subject: Random Password All- Sorry I am pressed for time today, but does any one have script for generating

RE: Access ldb files w/a twist

2001-05-03 Thread Dylan Bromby
if you're using CF 4.5.x, you can try the following to force the release of the DSN (and therefore the access file): CFSET temp=CFUSION_DISABLE_DBCONNECTIONS(DSN, 1) and to re-enable the DSN, you have to use: CFSET temp=CFUSION_DISABLE_DBCONNECTIONS(DSN, 0) of course, replace DSN with the

RE: CFX_HTTP thread safe?

2001-05-02 Thread Dylan Bromby
i've used it for quite some time without any trouble. -Original Message- From: Admin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 02, 2001 9:07 AM To: CF-Talk Subject: CFX_HTTP thread safe? I would just like to ask if CFX_HTTP is thread safe? I will be useing it for online

RE: Update in CFquery is failing, somone code check this ?

2001-05-01 Thread Dylan Bromby
access has its own query tool. you can even do it within CF studio. -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 5:46 AM To: CF-Talk Subject: RE: Update in CFquery is failing, somone code check this ? Get the value of the vars and

RE: Update in CFquery is failing, somone code check this ?

2001-05-01 Thread Dylan Bromby
have you tried outputting those variables to make sure they're what you expect (ie - not null)? -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 3:43 AM To: CF-Talk Subject: Update in CFquery is failing, somone code check this ? I have:

RE: Update in CFquery is failing, somone code check this ?

2001-05-01 Thread Dylan Bromby
no need to get testy :) it's perplexing. i checked the reserved word list for access (i thought NOTE might be) but nothing is in the reserved word list that you're using. what about the code immediately before or after the CFQUERY? anything there that looks suspicious? if you could post more of

RE: Update in CFquery is failing, somone code check this ?

2001-05-01 Thread Dylan Bromby
that may be, but i don't think that would throw a SYNTAX error. it just wouldn't update the field. -Original Message- From: Jason Lees (National Express) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 8:01 AM To: CF-Talk Subject: RE: Update in CFquery is failing, somone code

RE: Update in CFquery is failing, somone code check this ?

2001-05-01 Thread Dylan Bromby
heh no doubt. :) -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 8:00 AM To: CF-Talk Subject: RE: Update in CFquery is failing, somone code check this ? woah...touchy.that'll teach you to offer help Dylan! Can you tell us exactly what

RE: I'm sure this worked earlier

2001-05-01 Thread Dylan Bromby
can you provide the datatypes of the fields? -Original Message- From: Darren Adams [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 8:04 AM To: CF-Talk Subject: I'm sure this worked earlier Hello Folks, Can any of you eagle eyed people spot why I am getting a ODBC Error Code =

RE: Update in CFquery is failing, somone code check this ?

2001-05-01 Thread Dylan Bromby
i already checked. according to MS, it's not. here's a list of what are reserved: http://support.microsoft.com/support/kb/articles/Q109/3/12.asp -Original Message- From: Howarth, Craig (IBK-NY) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 8:10 AM To: CF-Talk Subject: RE:

RE: Update in CFquery is failing, somone code check this ?

2001-05-01 Thread Dylan Bromby
you have skill and skill_level. my guess is *you* mixed them up. -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 8:22 AM To: CF-Talk Subject: RE: Update in CFquery is failing, somone code check this ? I think you might find that the

RE: Update in CFquery is failing, somone code check this ? FIXED

2001-05-01 Thread Dylan Bromby
someone better tell MS to update their list of reserved words for access. ;) it wasn't in the list. maybe that's new to access2000 (if that's what you're using). -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 8:46 AM To: CF-Talk

RE: Update in CFquery is failing, somone code check this ?

2001-05-01 Thread Dylan Bromby
i sent this email at 8:56am this morning and got it at 9:55am from the list. zoiks! -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 8:56 AM To: CF-Talk Subject: RE: Update in CFquery is failing, somone code check this ? i already checked

RE: Update in CFquery is failing, somone code check this ?

2001-05-01 Thread Dylan Bromby
my guess - now that we all know the answer - is i'm wrong :). darn list speed :). -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 9:04 AM To: CF-Talk Subject: RE: Update in CFquery is failing, somone code check this ? you have skill

RE: List Request

2001-04-30 Thread Dylan Bromby
works fine for me, just filter based on the recipient containing cf-talk. -Original Message- From: Eugen Notter [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 6:27 AM To: CF-Talk Subject: List Request To the Listmaster (and everybody who's concerned) I shortly subscribed to

RE: Help me! My brain won't start

2001-04-30 Thread Dylan Bromby
you can use CF_Whatever and as long as whatever.cfm is in the same directory OR in the custom tags directory you should be fine. -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 8:00 AM To: CF-Talk Subject: Help me! My brain won't start I'm

RE: CF-Partners List

2001-04-30 Thread Dylan Bromby
mike; why don't you sign up for paypal? i'd donate and i'm sure a number of others would. HDs are so cheap these days. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 8:17 AM To: CF-Talk Subject: Re: CF-Partners List

RE: Help me! My brain won't start

2001-04-30 Thread Dylan Bromby
you. -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 10:11 To: CF-Talk Subject: RE: Help me! My brain won't start you can use CF_Whatever and as long as whatever.cfm

CF5 announced

2001-04-30 Thread Dylan Bromby
CF5 was announced this morning. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

RE: Creating a Dynamic Menu

2001-04-30 Thread Dylan Bromby
view source. -Original Message- From: Steven A. del Sol [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 9:32 AM To: CF-Talk Subject: Creating a Dynamic Menu I would like to create a Dynamic Menu like the one on MSNBC.COM using CF. Does anybody have any ideas?

RE: Creating a Dynamic Menu - SMART @SS

2001-04-30 Thread Dylan Bromby
i'll caution you to refrain from the slanderous comments. my point is this: your request is about as generic as hey i want to make a web page, any ideas? well, do you want to make a DHTML menu? will it be only for IE or do you want it for IE and NN? do you want it to work on macs or just PCs?

RE: Creating a Dynamic Menu - SMART @SS

2001-04-30 Thread Dylan Bromby
i think this only works in IE. -Original Message- From: Greg Jordan [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 1:13 PM To: CF-Talk Subject: RE: Creating a Dynamic Menu - SMART @SS forta's CF_DHTMLMenu

RE: Creating a Dynamic Menu

2001-04-30 Thread Dylan Bromby
i'm not sure you need to incur the overhead of using WDDX. the cross-browser, cross-platform DHTML menu i ended up writing is only 10 lines of JS composed of 2 functions. the menu elements themselves are all data-driven via CF. -Original Message- From: Steven A. del Sol [mailto:[EMAIL

RE: Creating a Dynamic Menu

2001-04-30 Thread Dylan Bromby
- From: Tom Davison [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 6:44 PM To: CF-Talk Subject: Re: Creating a Dynamic Menu Is there a way others can view your tag? - Original Message - From: Dylan Bromby [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 30, 2001 7

RE: NNTP and CF Forums

2001-04-29 Thread Dylan Bromby
when a message is sent to your forum, use CFX_NNTP to send a copy to your news server. http://www.fuseware.com for details. -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 29, 2001 3:04 AM To: CF-Talk Subject: NNTP and CF Forums We created a

RE: Storage Solutions

2001-04-29 Thread Dylan Bromby
do you want it to be your hardware or theirs? it's probably be cheaper for you to buy the hardware and co-locate it with someone like exodus, epoch, xo, etc. 500GB-1TB isn't that large anymore considering you can buy 40GB, 7200rpm drives for $150 or less. it does, however, get expensive if you

RE: HTTP Compressing w/ IIS

2001-04-29 Thread Dylan Bromby
there are some issues with compression itself in IIS 5.0. your question is pretty broad in scope, but you might want to start here: http://www.microsoft.com/TechNet/iis/httpcomp.asp -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 28, 2001 5:31

ADV: wireless CF announcement

2001-04-29 Thread Dylan Bromby
i'm posting this after quickly running it by our esteemed m. dinowitz. that said, i just want to let everyone know we're about to launch a service for wireless CF apps. we're going to be offering resources and guidelines for wireless application creation and maintenance, in addition to hosting.

RE: FAQ POSTED: New CF5 Partner Hosting License

2001-04-28 Thread Dylan Bromby
also check out dynamo at www.atg.com. -Original Message- From: Seva Petrov [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 28, 2001 11:28 AM To: CF-Talk Subject: RE: FAQ POSTED: New CF5 Partner Hosting License Can you provide a few concrete examples of these alternative solutions

RE: FAQ POSTED: New CF5 Partner Hosting License

2001-04-28 Thread Dylan Bromby
- Original Message - From: Dylan Bromby [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, April 28, 2001 3:05 PM Subject: RE: FAQ POSTED: New CF5 Partner Hosting License also check out dynamo at www.atg.com. ~~ Structure

RE: New CF5 Partner Hosting License

2001-04-28 Thread Dylan Bromby
i've been creating web-based apps since january 1996 and i started with coldfusion 1.0 when it came on floppies with website 1.0 from o'reilly. i remember when CF was US$995. it's increased 5-6 fold in price since then. i've never had a problem convincing clients to pay for it and making enough

RE: Cfmail

2001-04-27 Thread Dylan Bromby
: Thursday, April 26, 2001 11:02 AM To: [EMAIL PROTECTED] Subject: RE: Cfmail Why would it be more efficient to loop opposed to just using the query attribute? jeff -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 6:50 AM To: CF-Talk Subject: RE

RE: New CF5 Partner Hosting License

2001-04-27 Thread Dylan Bromby
this topic brings up another, related topic. you can never go wrong learning more than one development language. i really like CF, but being able to create applications in ASP or JSP (we're learning PHP in-house now) has been of great benefit. when clients ask for an app and they're indifferent

RE: New CF5 Partner Hosting License

2001-04-27 Thread Dylan Bromby
sean; don't you mean your ONLY 3 clients? just kiddin. we should get together sometime and see what the hell we're each doin. i don't think figleaf is a CF-only shop. autobytel is more or less a CF-only shop (i worked there for a year and a half) but they're not in the business of hosting

RE: Cfmail

2001-04-26 Thread Dylan Bromby
try specifying the the IP of the server instead of the domain. -Original Message- From: Heidi Belal [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 1:11 AM To: CF-Talk Subject: RE: Cfmail Thanks for all your help! I do have a correct from field entry. And my mail server is

RE: Cfmail

2001-04-26 Thread Dylan Bromby
you might also want to try changing the x-mailer value. some sites filter out allaire coldfusion as the mailer because they think it might be a bulk mailer and/or spam. -Original Message- From: Heidi Belal [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 1:11 AM To: CF-Talk

RE: Cfmail

2001-04-26 Thread Dylan Bromby
actually, i send out 50,000+ emails and when i do, i found it's more efficient to CFLOOP over the query. -Original Message- From: Daniel H [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 6:45 AM To: CF-Talk Subject: RE: Cfmail Heidi: You also may want to stremline your code

RE: Syntax error or sharing violation

2001-04-26 Thread Dylan Bromby
live = 0, should be live =0 no comma. -Original Message- From: Darren Adams [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 6:52 AM To: CF-Talk Subject: Syntax error or sharing violation can anyone here see what the problem with this statement is ? cfquery name=news

RE: uploading multiple files

2001-04-26 Thread Dylan Bromby
i do this a lot. in your form, CFLOOP to create each upload form element. use the INDEX value as part of each form element name. then, in the code that handles the form, CFLOOP over the name of each form element using Evaluate() to get the actual value of each var name. -Original

RE: uploading multiple files

2001-04-26 Thread Dylan Bromby
get the actual file name of each one? (ex:myPicture.gif) Thank you!!! -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 12:26 PM To: CF-Talk Subject: RE: uploading multiple files i do this a lot. in your form, CFLOOP to create each

RE: is cf-talk down?

2001-04-26 Thread Dylan Bromby
just you apparently. -Original Message- From: Mak Wing Lok [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 5:06 PM To: CF-Talk Subject: is cf-talk down? is cf-talk down or it is just me? ~~ Structure your ColdFusion code with

RE: New CF5 Partner Hosting License

2001-04-26 Thread Dylan Bromby
i agree with your latter sentiments. we've been developing more and more non-CF (jsp, php, asp) applications for a variety of reasons. and now i'm very, very glad. i also agree this doesn't appear to be headed in a positive direction, but i suppose we need to wait and see what MM comes up with.

RE: New CF5 Partner Hosting License

2001-04-26 Thread Dylan Bromby
wow. i'm not sure this is a good idea. if macromedia increases the cost of CF dramatically, it makes it easier to choose alternatives whether they're free or in the same price range of whatever the pricing under these new terms turns out to be. -Original Message- From: Chris Colón

RE: Whats happening to Spectra

2001-04-25 Thread Dylan Bromby
there was a post a day or 2 ago saying it's not being continued. 1.5 is the last release. -Original Message- From: Haroon Williams [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 25, 2001 6:15 AM To: CF-Talk Subject: Whats happening to Spectra Is it just a rumour, or has Spectra been

RE: Speed comparison information

2001-04-25 Thread Dylan Bromby
performance and reliablility are subjective and dependent on your network provider. speed is, to a degree, as well. for example if you get a T1 or a frac T1, you want to find out what the CIR (committed information rate) is. a full T1 is 1.544Mbps, but if the CIR is 512Kbps, then they don't have

RE: Cfmail

2001-04-25 Thread Dylan Bromby
i think you're talking about 2 totally different things. the earthlink issue sounds like they're disabling their mail relay which is a good, smart thing to do for anyone running a mail server. that way you can't use *their* mail server to send mail. the original issue sounds like mail isn't

RE: database.ldb

2001-04-25 Thread Dylan Bromby
if you're using CF 4.5.x, you can use: CFSET temp=CFUSION_DISABLE_DBCONNECTIONS({DSN}, 1) that will force the release of the datasource. just replace {DSN} with catlingalleries (using your DSN below). to re-enable the DSN, use: CFSET temp=CFUSION_DISABLE_DBCONNECTIONS({DSN}, 0) -Original

RE: Character code for a TAB

2001-04-24 Thread Dylan Bromby
9. in the future, if you need to know a CHR value, Asc() will work. for this example, CFOUTPUT#Asc( )#/CFOUTPUT will return 9. the quotes contain a TAB. -Original Message- From: Chad McCue [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 5:55 AM To: CF-Talk Subject:

RE: Character code for a TAB

2001-04-24 Thread Dylan Bromby
yes, we should definitely cut down on the amount of people willing to help others. i count 5 responses. good thing you didn't overexaggerate. -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 7:14 AM To: CF-Talk Subject: Re: Character code

RE: Character code for a TAB

2001-04-24 Thread Dylan Bromby
speed. From: Dylan Bromby [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: Character code for a TAB Date: Tue, 24 Apr 2001 06:28:12 -0700 yes, we should definitely cut down on the amount of people willing to help others. i count 5 responses. good thing you

RE: Character code for a TAB

2001-04-24 Thread Dylan Bromby
i still disagree with this. here's why: 1) sometimes answers are wrong 2) some people post really innovative solutions even after the problem might have been solved some people might be frustrated when the SAME answer is posted over and over. well...delete the thread. i don't think the answer

RE: Character code for a TAB

2001-04-24 Thread Dylan Bromby
let us know when it's up. -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 9:48 AM To: CF-Talk Subject: Re: Character code for a TAB What about a CHAT solution? CHAT ROOM would be great!!! - Original Message - From: Dylan Bromby

RE: slightly OT: html formatted e-mails

2001-04-24 Thread Dylan Bromby
he's intimating HTML readers will not display the content within the !--- and ---. -Original Message- From: McAtee, Malcolm [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 9:26 AM To: CF-Talk Subject: RE: slightly OT: html formatted e-mails I am sorry Michael I didn't quite

RE: Character code for a TAB

2001-04-24 Thread Dylan Bromby
if the list were fast, you would be correct. -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 9:41 AM To: CF-Talk Subject: Re: Character code for a TAB - Original Message - From: Dylan Bromby [EMAIL PROTECTED] To: CF-Talk [EMAIL

<    1   2   3   4   5   6   >