RE: An Ode to ColdFusion

2002-09-26 Thread Samantha Stevens
You need more sleep mate. -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]] Sent: Thursday, 26 September 2002 4:24 PM To: CF-Talk Subject: RE: An Ode to ColdFusion Heh heh. Good one :) -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent:

RE: An Ode to ColdFusion

2002-09-26 Thread Joshua Miller
Now I know I'm tired ... I'm getting email from the Bewitched lady ;) Joshua Miller [EMAIL PROTECTED] -Original Message- From: Samantha Stevens [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 2:35 AM To: CF-Talk Subject: RE: An Ode to ColdFusion You need more sleep

RE: An Ode to ColdFusion

2002-09-26 Thread Samantha Stevens
Careful, I may get my mother onto you. ;) -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent: Thursday, 26 September 2002 4:39 PM To: CF-Talk Subject: RE: An Ode to ColdFusion Now I know I'm tired ... I'm getting email from the Bewitched lady ;) Joshua Miller

RE: cfcookie and cflocation

2002-09-26 Thread Mark Stephenson - Evolution Internet
Try CFCOOKIE NAME=someName VALUE=someValue CFHEADER NAME=Refresh VALUE=0; URL=someURL.cfm Regards, Mark Stephenson New Media Director Evolution Internet T: 0870 757 1631 F: 0870 757 1632 W: www.evolutioninternet.co.uk E: [EMAIL PROTECTED] WARNING: --- The

RE: Best coding techniques for use of Application variables

2002-09-26 Thread Adrian Lynch
It can be, but if you're doing a check for the variable rather than the value, you don't want a default which param would give. Ade -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: 26 September 2002 00:50 To: CF-Talk Subject: RE: Best coding techniques for use

Java custom tag

2002-09-26 Thread Craig Dudley
Hi all, Does any java programmer on here have 5 minutes to look this over for me? It's basically for sending XML packets via HTTP POST to our SMS provider, it follows their example but I've converted it into a CF custom tag, but to be honest JAVA is not my strong point and I can't figure out

Re: JOIN Query (with query)

2002-09-26 Thread Dina Hess
Try this: SELECT o.id, o.name, o.description FROM #request.optionTable# o LEFT OUTER JOIN #request.productOptionTable# po ON po.optionid = o.id WHERE o.id NOT EXISTS (SELECT * FROM #request.productOptionTable# po WHERE po.optionid ='#url.productid#') - Original Message - From: Paul

Extracting cfchart image from disk cache location

2002-09-26 Thread Dave Wilson
Hi all, I've built a dynamic charting application using CF 4.52 and Popchart (trial version) and am in the process of converting over to CFMX and cfchart, which is proving to be a breeze. All except for one thing. Popchart has a feature whereby you can specify to save the generated image to a

RE: Java custom tag

2002-09-26 Thread Adrian Lynch
Could it be it can't find the class you just wrote? Ade -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED]] Sent: 26 September 2002 12:35 To: CF-Talk Subject: Java custom tag Hi all, Does any java programmer on here have 5 minutes to look this over for me? It's

Re: Java custom tag

2002-09-26 Thread Dina Hess
Did you compile your code?? Java source files are .java and Java compiled files are .class. - Original Message - From: Adrian Lynch [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 6:52 AM Subject: RE: Java custom tag Could it be it can't find the

RE: Java custom tag

2002-09-26 Thread Craig Dudley
Error message wouls seem to suggest that, but it's there in the right place, CFX is registered the same way as all the other java cfx's I run here, all looks ok to me. -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: 26 September 2002 12:53 To: CF-Talk Subject: RE:

RE: milonic menus question

2002-09-26 Thread Janine Jakim
It's the #attributes.variable# only--the one the user chooses. (this same thing has workded on other menus fine but not this one- but the other menus aren't good they run away from the user). It works fine with client variables (ie: #URLToken#/#Client.SchoolID#) Janine -Original Message-

RE: Java custom tag

2002-09-26 Thread Craig Dudley
Yes, I'm a newbie with java, but not quite that bad ;-) It compiles fine, no errors. -Original Message- From: Dina Hess [mailto:[EMAIL PROTECTED]] Sent: 26 September 2002 13:03 To: CF-Talk Subject: Re: Java custom tag Did you compile your code?? Java source files are .java and Java

RE: Java custom tag

2002-09-26 Thread Adrian Lynch
Do you get this error while running another class? I take it sendXMLDataToRM.java compiled and it's being called from another class? Ade (new to java too :O) -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED]] Sent: 26 September 2002 13:05 To: CF-Talk Subject: RE: Java

cfdirectory

2002-09-26 Thread FlashGuy
Where do I come up with these ideas! Argh I'm listing the contents of drive D:\ on the server. Here is an example listing: inetpub temp work test data I also have a preferences template where the user can type in directories into a input box which would then be saved to a database. The

RE: Java custom tag

2002-09-26 Thread Craig Dudley
Ok, I've rebooted the server (I had only been retsarting the service between updating the class) It now sends the XML (SMS arrives) but I get the following error, java.lang.UnknownError: Unknown error occurred in Java_com_allaire_cfx_NativeResponse_setVariable. Java exception occurred in call

RE: Java custom tag

2002-09-26 Thread Craig Dudley
While calling the custom tag, it complies fine. -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: 26 September 2002 13:12 To: CF-Talk Subject: RE: Java custom tag Do you get this error while running another class? I take it sendXMLDataToRM.java compiled and it's

Re: Java custom tag

2002-09-26 Thread Dina Hess
:) You probably know more about than I do...bowing out now...in over my head :) - Original Message - From: Craig Dudley [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 7:05 AM Subject: RE: Java custom tag Yes, I'm a newbie with java, but not quite

Re: JOIN Query (with query)

2002-09-26 Thread Jochem van Dieten
Paul Giesenhagen wrote: I am trying to run a query that joins two tables and returns all the items that are listed in the optionTable, BUT NOT the ones who have the productid of the url.productid in the productOption table. (o.id = po.optionid) Here is the query I have thus far and it returns

RE: cfdirectory

2002-09-26 Thread Dave Wilson
Why not simply do a quick check for existence of preferences, then just display what items are in the database for the user. No need for cfdirectory in this case, unless I'm missing something. So basically you can have a quick exception handler to use cfdirectory if no preferences are specified,

Re: milonic menus question

2002-09-26 Thread David Hannum
I guess I don't understand. How are you populating the attributes.variable? How about some code. Dave - Original Message - From: Janine Jakim [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 8:03 AM Subject: RE: milonic menus question It's the

Re: Advanced Statistical Analysis

2002-09-26 Thread Deanna Schneider
Thanks Dave, That bit of info helps. I checked with our stats person, and she thinks it's patently ridiculous to have the stats run in real time without interpretation. So, I think I'll be checking into an odbc connection to the completed datasets option. -d Deanna Schneider Interactive Media

RE: Looking for a GRID

2002-09-26 Thread Greg Luce
MultiRow. I've tried this, it produces a useable editable grid. (I attached it to your email also) Greg -Original Message- From: Ciliotta, Mario [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 25, 2002 8:07 PM To: CF-Talk Subject: Looking for a GRID Hi, I was wondering if

RE: Looking for a GRID

2002-09-26 Thread Greg Luce
My experience with CFGrid was horrible. This multirow tag worked a lot nicer for me. -Original Message- From: Greg Luce [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 8:42 AM To: CF-Talk Subject: RE: Looking for a GRID MultiRow. I've tried this, it produces a useable

Re: JOIN Query (with query)

2002-09-26 Thread Deanna Schneider
I'm not sure you need a join possibly a subquery? SELECT o.id, o.name, o.description FROM #request.optionTable# o WHERE o.id IN (SELECT optionid FROM #request.productOptionTable# WHERE productid NOT IN ('#url.productid#') Deanna Schneider Interactive Media Developer [EMAIL PROTECTED]

valuelist under CFMX bug?????

2002-09-26 Thread Adam Reynolds
Hi, I've been trying to use valuelist on a column containing integers. This returns a list containing integers converted to 1 decimal point numbers. In effect its manipulating the values. Anybody else had this issue? Example Table with item_id column contains one row with an entry of 1.

Re: JOIN Query (with query)

2002-09-26 Thread Paul Giesenhagen
Can't use a subquery, this has to work with mysql. Thanks Paul Giesenhagen QuillDesign Try this: SELECT o.id, o.name, o.description FROM #request.optionTable# o LEFT OUTER JOIN #request.productOptionTable# po ON po.optionid = o.id WHERE o.id NOT EXISTS (SELECT * FROM

RE: valuelist under CFMX bug?????

2002-09-26 Thread Raymond Camden
My testing isn't showing this. Anyone else see it? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original

CF Server Troubleshooting

2002-09-26 Thread Robert Shaw
Hi, My boss has asked me to make a document for troubleshooting ColdFusion, including a checklist, for my department in case any of the more experienced developers are not around. Aside from the typical troubleshooting Best Practices he also wants a checklist for troubleshooting a server

RE: JOIN Query

2002-09-26 Thread Greg Luce
Why NOT IN? Is the url.productid a list? Have you tried ? -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 25, 2002 11:40 PM To: CF-Talk Subject: OT: JOIN Query I am trying to run a query that joins two tables and returns all the items

cfdirectory

2002-09-26 Thread FlashGuy
The problem I'm having is the text being stored in the cookie could contain a list of directories separated by commas. So this Cfif ListFindNoCase(#COOKIE.DisplaySelect#,#DirectoryName#[i]#) would not work, correct? Wouldn't I have to do a cfloop somewhere? So the cookie could contain

RE: cfdirectory

2002-09-26 Thread Dave Wilson
Nathan, Just check if Cookie.displayselect exists. If it doesn't, simply use cfdirectory to list the directories, otherwise just output the cookie.displayselect list (change the delimiters to br using listchangedelims if you want it output in a vertical list). Pseudo code below should maybe

RE: valuelist under CFMX bug?????

2002-09-26 Thread Adam Reynolds
Damm. I'm running the query against an access db. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 26 September 2002 14:19 To: CF-Talk Subject: RE: valuelist under CFMX bug? My testing isn't showing this. Anyone else see it?

RE: valuelist under CFMX bug?????

2002-09-26 Thread Raymond Camden
My initial test had been against SQL Server, but I get the same results w/ Access as well. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a

Re: JOIN Query (revised)

2002-09-26 Thread Paul Giesenhagen
Yes, I have tried not in ... and no, it is not a list... Ok here is the table setup: (trimed with only useful info) OPTIONS: id, name, description PRODUCT OPTIONS optionid, productid I want a list of all the options that are not associated with the #url.productid# (found in the product

Mildly OT: CF MX Hosting

2002-09-26 Thread Russ
Hi All, I've sifted through the last week or so that I've been on the list and I haven't seen too much about this topic, and I'm hoping to find a reasonably priced host for my own business site (color me independent as I join the ranks of the unemployed; I guess it's either sit still or die), as

RE: valuelist under CFMX bug?????

2002-09-26 Thread Dave Wilson
Actually this is ringing a bell with me. Think I've seen it happen once a long time ago. It was down to the datatype in the datasource. Check you've not got a mask on your ident_id field and that your using the correct datatype (I've forgotten the access name for the datatype). -Original

RE: Mildly OT: CF MX Hosting

2002-09-26 Thread Tony Weeg
I use experthost.com for all my clients. great/fast tech support. great interface to sql server (Web based!!!) overall great service. I recommend 100% ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337

RE: Mildly OT: CF MX Hosting

2002-09-26 Thread Jillian Carroll
I just went to their site and I couldn't see where they offer CF hosting... I did a search for coldfusion and it produced no results. -Original Message- From: Russ [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 8:00 AM To: CF-Talk Subject: Mildly OT: CF MX Hosting Hi

RE: Ben Doom (was please do my work for me)

2002-09-26 Thread Yager, Brian T Contractor/Sverdrup
Ben, I've seen answers like this to other questions as well. I have never quite understood what is taking place. Do you mind spending a couple of minutes to explain what .*pcode=([^]+).*, \1 does? Thanks, Brian Yager President - North AL Cold Fusion Users Group http://www.nacfug.com Sr.

Re: Mildly OT: CF MX Hosting

2002-09-26 Thread Rex Wickham
Hi Try www.coldfusionhosts.net It's a worldwide search engine for ColdFusion hosts. Hope that helps. Regards Rex Site webmaster. - Original Message - From: Russ [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 2:59 PM Subject: Mildly OT: CF MX

RE: Mildly OT: CF MX Hosting

2002-09-26 Thread Bruce Sorge
I have been using ExpertHost.com for some time now and I really have had great experiences with them overall. There have been issues with the hosting service or email access once in a while, but they are quick to resolve and their customer support always respond in way less than 24 hours. I have

RE: JOIN Query (revised)

2002-09-26 Thread Greg Luce
No, the question was why not use instead of NOT IN. NOT IN is for lists. -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 9:59 AM To: CF-Talk Subject: Re: JOIN Query (revised) Yes, I have tried not in ... and no, it is not a

RE: CF/WML Compile error...HELP

2002-09-26 Thread Dave Watts
Message:Unknown element 'HTML' ... Okay, so it sounds to me, like ColdFusion is making html pages even though I placed a CFCONTENT in the first line which is supposed to change the mime type to WML (which I know is being served correctly) Am I on the right track? Does anyone have

RE: JOIN Query (revised)

2002-09-26 Thread Greg Luce
Maybe you'll just have to query a query. Is it CF5 at least? -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 9:59 AM To: CF-Talk Subject: Re: JOIN Query (revised) Yes, I have tried not in ... and no, it is not a list... Ok here

RE: Mildly OT: CF MX Hosting

2002-09-26 Thread Russ
http://www.experthost.com/plans/nt.html Jillian, try that... -Original Message- From: Jillian Carroll [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 9:05 AM To: CF-Talk Subject: RE: Mildly OT: CF MX Hosting I just went to their site and I couldn't see where

let me try again: Urgent need for help with CFHTTP again

2002-09-26 Thread Mitko Gerensky-Greene
Hello, I am still hoping somebody can at least try to help with this. We are still facing a problem reading txt files via CFHTTP on a remote server. This is from the ColdFusion log file: CFlog Error,13,09/25/02,22:38:24,,206.9.80.3, Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1), CFHTTPP

Uploading zero-length files

2002-09-26 Thread jgeorges
I am uploading a file (that the user has identified in an input type=file) using CFFILE. CFFILE does not allow zero length files. Is there a way I can get the filesize before attempting the upload? TIA, Sam Changed your e-mail? Keep your

RE: Mildly OT: CF MX Hosting

2002-09-26 Thread Tony Weeg
yes! they rock. plus that sql server web interface rocks! ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent: Thursday, September

Re: Production Server Security

2002-09-26 Thread Jochem van Dieten
Brook wrote: On a live server, is it advised to disable the component browser feature? It is advised to disable everything you don't need. Do you need it? Also, RDS used to be a service, I don't see it listed as a service anymore. How do you disable RDS? See Installation manual. Jochem

RE: Ben Doom (was please do my work for me)

2002-09-26 Thread Ben Doom
: I've seen answers like this to other questions as well. I have : never quite : understood what is taking place. Do you mind spending a couple : of minutes to : explain what .*pcode=([^]+).*, \1 does? Well, the 'pcode=' bit ought to be obvious. All it does is find that literal substring in

RE: Ben Doom (was please do my work for me)

2002-09-26 Thread Mike Wokasch
Brian - It's a regular expression. It says, find a part of the string that starts with 'pcode=' and is followed by 0 or many characters that are you which could be followed by anthing else. How's that? Mike Wokasch UW-Extension At 09:06 AM 9/26/2002 -0500, you wrote: Ben, I've seen answers

CFMAIL problems

2002-09-26 Thread Gyrus
A client is reporting a problem where PDF bulletins being mailed out are being delivered twice to some of their customers. I'm still trying to get to the root of the problem - which I can't replicate on my local test system - but I thought I'd ask: if I can't find any obvious code problems (and I

JS within CFscript

2002-09-26 Thread Kris Pilles
Is there anyway to have Cfscript open an JS alert box for me??? Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED] __ Structure your ColdFusion

RE: Mildly OT: CF MX Hosting

2002-09-26 Thread Jillian Carroll
Ahh! I was looking at their Unix/Linux hosting. -Original Message- From: Russ [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 8:17 AM To: CF-Talk Subject: RE: Mildly OT: CF MX Hosting http://www.experthost.com/plans/nt.html Jillian, try that... -Original

Re: let me try again: Urgent need for help with CFHTTP again

2002-09-26 Thread JLH All Turbo
Why don't you send like 450-451 of your code so we can see what's causing the error. J - Original Message - From: Mitko Gerensky-Greene [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 10:20 AM Subject: let me try again: Urgent need for help with CFHTTP

RE: Ben Doom (was please do my work for me)

2002-09-26 Thread S . Isaac Dealey
This is a Regular Expression (regex) -- a system of finding and replacing complex strings which originated ( i believe ) with PERL. There's a section of the ColdFusion user's manual titled Using Regular Expressions or something to that effect which gives an explanation of regex and how it works

RE: Ben Doom (was please do my work for me)

2002-09-26 Thread Jerry Johnson
I'll take a crack at it - then Ben (and everyone else) can correct me. The players: in this place and time, it means any single character * means zero or more pcode=means the literal string pcode= (but since we used rereplacenocase, it could be PCODE= or pCoDe=

RE: Ben Doom (was please do my work for me)

2002-09-26 Thread Yager, Brian T Contractor/Sverdrup
Thanks Ben...I think I will join. Brian Yager President - North AL Cold Fusion Users Group http://www.nacfug.com Sr. Systems Analyst Sverdrup/CIC [EMAIL PROTECTED] (256) 842-8342 -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 9:21 AM To:

RE: Uploading zero-length files

2002-09-26 Thread Greg Luce
I've done this: cfif cgi.content_length GT 3000 because someone told me about some 1 byte gif or something that causes ddamage. Also to limit huge files. -Original Message- From: jgeorges [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 10:21 AM To: CF-Talk Subject:

RE: let me try again: Urgent need for help with CFHTTP again

2002-09-26 Thread Adam Hope
Hi Mitko, Whenever I have had problems retreiving data from webservers using CFHTTP I have told it to save the files directly to disk instead of using cfhttp.filecontent. cfhttp url=http://webserver.com/thefile.txt; method=GET path=/tmp/ file=theremotefile.txt resolveurl=false Adam Hope

RE: JS within CFscript

2002-09-26 Thread Ben Doom
cfscript documentwrite(script language=javascriptalert('message!');/script); /cfscript That should work, shouldn't it? --Ben Doom Programmer General Lackey Moonbow Software : -Original Message- : From: Kris Pilles [mailto:[EMAIL PROTECTED]] : Sent: Thursday,

Re: let me try again: Urgent need for help with CFHTTP again

2002-09-26 Thread Jerry Johnson
A couple of suggestions, and maybe one answer. The answer: You are trying to use the cfhttp tag to create a query from the file your are httping. The file is not a text data file that can be placed in a query. The file does not have the top row as a definition of the columns to follow. And you

Re: JOIN Query (revised)

2002-09-26 Thread S . Isaac Dealey
Yes, I have tried not in ... and no, it is not a list... Ok here is the table setup: (trimed with only useful info) OPTIONS: id, name, description PRODUCT OPTIONS optionid, productid I want a list of all the options that are not associated with the #url.productid# (found in the

Re: JS within CFscript

2002-09-26 Thread Critter
oi Kris!! you could writeoutput(...) the javascript necessary for the alert box -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion Blog=http://blog.ctzc.com; Thursday, September 26,

RE: JVM setting?

2002-09-26 Thread Joe Eugene
Is there any reason why CFOBJECT Java Class file call would Very SLOW in CF4.5 and CF5.0 compared to CFMX... Maybe this some setting issue.. anybody got any ideas? am running J2SE SDK 1.4.1 in both machines. Joe -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]]

Re: JS within CFscript

2002-09-26 Thread Gyrus
- Original Message - From: Kris Pilles [EMAIL PROTECTED] Is there anyway to have Cfscript open an JS alert box for me??? --- CFSCRIPT is server-side, JS alert boxes pop up client-side. What are you trying to do? Do you mean you you want to write out some JS

CFMX and DB2 UDB for OS/390

2002-09-26 Thread Earl, George
Has anyone successfully connected CFMX to DB2 UDB for OS/390? I see that this is not officially supported, at least not in CFMX Enterprise for Windows . . . George [EMAIL PROTECTED] __ This list and all House of Fusion resources

RE: Muliple Environments

2002-09-26 Thread Kevin Graeme
I'm also looking at this, but with some slightly more advanced wants: 1. Code versioning. a. When people make changes to the test environment, it should version their code. b. When moving the code from test to production, it should do a versioning backup for rollback. 2. Server permission

Advanced Statistical Analysis

2002-09-26 Thread Phil Cruz
Graphpad.com offers several online stats calculators that are all done in CF. Check out http://www.graphpad.com/quickcalcs/ -Phil __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable

cf_TwoSelectsRelated initially selected values

2002-09-26 Thread Kay Smoljak
Hi all, Does anyone know of a replacement for/hack of cf_TwoSelectsRelated that will allow a value to be selected initially when the control loads? Think of an administration record editing type situation. Is this the kind of thing that qForms would be good for? Thanks, Kay.

Re: CFMAIL problems

2002-09-26 Thread Howie Hamlin
It's difficult to track these things down unless you have access to the email server. If you can look at the log files you can at least determine if the mail server sent the mail to the same person twice. If it did then you can determine if the server got the mail twice from the CF server or

Re: JOIN Query (revised)

2002-09-26 Thread Jochem van Dieten
Paul Giesenhagen wrote: I want a list of all the options that are not associated with the #url.productid# (found in the product options table, productid column). So if the option table has id's 1,2,3,4 and the product options table have optionid, productid 23 4

Re: Uploading zero-length files

2002-09-26 Thread S . Isaac Dealey
I think there are a couple cgi variables you can use to estimate it... cgi.content_length or maybe http_content_length ... not sure... If you have debugging turned on on the server, upload a file and then look at the list of cgi variables at the bottom of the page, the 1 or 2 you want should be

Re: JS within CFscript

2002-09-26 Thread Mike Wokasch
Kris - Well, you can have CFScript write the javascript that will do this. However, do not get the two confused. CFScript is still server side scripting. script language=javascript cfscript writeOutput(alert('hello world')); /cfscript /script Mike Wokasch UW-Extension At 10:25 AM

CFCONTENT and file downloads

2002-09-26 Thread ColdFusion (CFTalk)
[CF5 Server Pro, Windows 2000] I have a feeling I've forgotten something obvious, but... In a nutshell: I have a template which uses CFCONTENT to download the contents of a file on the server to the browser. The file save dialog on the browser pops up... but the name of the file shown is the

RE: Mildly OT: CF MX Hosting

2002-09-26 Thread Darren Marsland
Hi Russ, We provide CF MX hosting through CFhosting.ca (www.CFhosting.ca). We're based in Canada so you may be able to find some competitively priced packages relative to the US dollar. We also offer a 100% uptime guarantee. Take care, Darren Darren Marsland CFhosting.ca (p) 519-763-9660

Line Nibbler Alert!!!

2002-09-26 Thread Jerry Johnson
Line Nibbler Alert My message was stripped of leading periods. Any dot/period character in the following email was stripped if it was the first character on a line. Is this intentional? - here's one. . .. - here are two pairs in a row. Jerry Johnson [EMAIL PROTECTED] 09/26/02

Re: let me try again: Urgent need for help with CFHTTP again

2002-09-26 Thread WebMaster
In your original post, the code has the file you are trying to retrieve as http://www.hud.gov/offices/pih/pha/approved/#fiscalyear#/#statecode#_#fiscal year#.txt What is an example of fiscalyear and state code. I used this code and it worked fine. You might want to try different values for year

Re: let me try again: Urgent need for help with CFHTTP again

2002-09-26 Thread Mitko Gerensky-Greene
Sprry, here you go: cfif #fieldoffice# NEQ 0 cfhttp method=get name=PHAPlansQuery URL=http://www.hud.gov/offices/pih/pha/received/#fiscalyear#/#fieldoffice#-#fiscalyear#.txt; delimiter=; textqualifier= /cfhttp /cfif /cfoutput

RE: JS within CFscript

2002-09-26 Thread Haggerty, Mike
No. CFSCRIPT runs exclusively on the server-side and is incapable of interacting directly with the browser. You could have CFSCRIPT set the text for the alert box, and output it yourself like so: cfscript alert = 'hello there!'; /cfscript script language=javascript

RE: milonic menus question

2002-09-26 Thread Janine Jakim
The attributes.variable is made when a teacher chooses a student's name. (My page has the menu for subjects/navigation then underneath the menu is the class list- each student with a link. Once a subject is chosen the teacher can hit any student link and see the grades for that subject). I want

Re: JS within CFscript

2002-09-26 Thread Stephen Moretti
if (yourcondition is met) { alertmessage = 'script language=Javascript'; alertmessage = alertmessagechr(10)'alert(Your alert here)'; alertmessage = alertmessagechr(10)'/script'; } Then outside your cfscript do this : cfif IsDefined(alertmessage) cfhtmlhead text=#alertmessage#

Re: connectstring in CFMX

2002-09-26 Thread Bryan Stevenson
Thanks for the great info Samuel ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

RE: Java custom tag

2002-09-26 Thread Pete Freitag
You might get a better error message if you do something like this... try { response.setVariable( xmlResponse, answer.toString()); } catch(Exception e) { response.write(e.getMessage()); } just add that for debugging, then take it out. my guess would be that xmlResponse is not a

Re: Line Nibbler Alert!!!

2002-09-26 Thread Michael Dinowitz
I'll look into this. It's a bit strange as the list software doesn't do a line by line analysis of a message. It only looks for the footer and removes that. Line Nibbler Alert My message was stripped of leading periods. Any dot/period character in the following email was stripped if it

Re: JOIN Query (revised)

2002-09-26 Thread Paul Giesenhagen
Well .. that did the trick .. I had to tweak alittle, but that was the idea .. very backwards but works!! Thank You! Paul Giesenhagen QuillDesign - Original Message - From: S. Isaac Dealey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 9:36 AM

RE: Ben Doom (was please do my work for me)

2002-09-26 Thread S . Isaac Dealey
I subscribe to the CF-Regex list, and you should, too. :-) You can subscribe here: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=21 We've got an interesting session going over there about stripping or keeping tags based on a list, and S. Isaac Dealey has written a UDF based on

RE: Uploading zero-length files

2002-09-26 Thread Chris Lofback
Unless you go to a Java applet (or something similar), I don't think there's a way to get the file size info at the client end before uploading. The FileUpload form field doesn't provide file size and JavaScript can't get any info about files on the client system. Chris Lofback Sr. Web

RE: JS within CFscript

2002-09-26 Thread Kris Pilles
THANKS~! -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 10:49 AM To: CF-Talk Subject: Re: JS within CFscript - Original Message - From: Kris Pilles [EMAIL PROTECTED] Is there anyway to have Cfscript open an JS alert box for me???

Re: CFFILE PDF to Sybase?

2002-09-26 Thread Cathy Taylor
Deanna, Thanks for the reply. Actually, unfortunately that's not an option (that is, however, how I manage a photo album site elsewhere). My client is a government agency and their rules dictate that the files not be stored on the web server (it is *strictly* an application server) unless

RE: cfdirectory

2002-09-26 Thread FlashGuy
OK...this works but when I click on the link not it won't diplay any sub-directories within it only the datafiles? So...from this list: inetpub temp work test data I have test entered in my database and ONLY test is being displayed. If I click on test it won't show me the sub-directories

RE: cf_TwoSelectsRelated initially selected values

2002-09-26 Thread Mark Stephenson - Evolution Internet
Just create a new attribute in the tag called selected... psuedo At the dropdown code, if selected defined, then selected is attribute.selected /psuedo Not really into custom tags, but something along those lines should work?? Mark Stephenson New Media Director Evolution Internet T: 0870 757

Re: JOIN Query (revised)

2002-09-26 Thread Dina Hess
What about this? SELECT DISTINCT options.id, options.name, options.description, product_options.productid FROM options LEFT JOIN product_options ON options.id = product_options.optionid WHERE product_options.productid 3 - Original Message - From: Paul Giesenhagen [EMAIL PROTECTED]

RE: milonic menus questionRESOLVED

2002-09-26 Thread Janine Jakim
I've decided that it just doesn't work correctly with milonic menus. I found an hvmenu from dynamicdrive.com - it worked immediately and is stable with macs! Thanks for all the help. J -Original Message- From: Janine Jakim Sent: Wednesday, September 25, 2002 3:49 PM To: CF-Talk

RE: CFMAIL problems

2002-09-26 Thread Mosh Teitelbaum
I don't know that this is your specific problem, or even if it's remotely true, but I've been hearing reports of large scale email problems. I've been receiving duplicates or not receiving messages from a number of lists I subscribe to (as have others on the lists) and, sometimes, don't receive

application.applicationname caching?

2002-09-26 Thread Ian Tait
Hi, We're experencing what seems to be MX caching application.applicationname. This is on a new win2000/iis5/MX setup. Going from one site on that box to another, looking at the debugging info, shows the application.applicationname remain the same (unless you press refresh on the browser

Re: Line Nibbler Alert!!!

2002-09-26 Thread Howie Hamlin
It could be getting stripped at your end. - here's one . .. - two pairs - Original Message - From: Jerry Johnson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 11:10 AM Subject: Line Nibbler Alert!!! Line Nibbler Alert My message was

RE: CFCONTENT and file downloads

2002-09-26 Thread Dave Watts
Anyone any ideas on how to get the right filename down to the client. If necessary, I can use a fixed name - the important thing is getting the .pdf extension (as the files are PDF's). This might help: http://www.figleaf.com/demo/mimetest/ Dave Watts, CTO, Fig Leaf Software

Re: Line Nibbler Alert!!!

2002-09-26 Thread Michael Dinowitz
The archives have the post with the proper dots. As Howie said, it may be an issue of the mail reader. Anyone using Eudora or another non-outlook reader seeing this? It could be getting stripped at your end. - here's one . .. - two pairs - Original Message - From: Jerry Johnson

  1   2   3   >