Re: CFOUTPUT question

2001-04-07 Thread Kym Kovan
Hi Bill, >even with > > > > #ucase(name)# > >   > > > >it still screws up half the time You are using the same variable "name" twice over, one is part of the name of the query, which should be fixed, the se

FIXED

2001-04-07 Thread William Wheatley
ok the problem was due to having a Space in the CFOUTPUT query="asdf basd" thats very weird that in a CFQUERY you can name it with a space but now a cfoutput query. Maybe they will fix that error in later versions Thx Bill Wheatley Director of Development Allaire Certified ColdFusion Develope

Another CFOUTPUT questions

2001-04-07 Thread William Wheatley
Another question this seems ODD you can do a CFQUERY and have the name be cfquery name="flight attendant" with a space but when you go and do a Loop error >The QUERY= attribute of a tag specifies the query 'qgetflight attendant'. A query by this >name is not available at this point in the templ

Re: CFOUTPUT question

2001-04-07 Thread William Wheatley
lol i meant it screws up all the time =) even though thats the name of the query Bill Wheatley Director of Development Allaire Certified ColdFusion Developer AEPS INC Allaire ColdFusion Consulting Partner www.aeps.com www.aeps2000.com 954-472-6684 X303 ICQ: 417645 - Original Message -

Re: CFOUTPUT question

2001-04-07 Thread William Wheatley
even with #ucase(name)#   it still screws up half the time Bill Wheatley Director of Development Allaire Certified ColdFusion Developer AEPS INC Allaire ColdFusion Consulting Partner www.aeps.com www.aeps2

Re: CFOUTPUT question

2001-04-07 Thread Clint Tredway
try using the same variable to name the query as you are for naming the output. I have done this before where my query name was "lu#table#" and my cfoutput was named the same ie: name="lu#table#". HTH -- Original Message -- From: "William Wheatley" <[EMA

RE: Bizarre Client Variables problem

2001-04-07 Thread Peter Tilbrook
TIP: it can help to have two browser sessions open to track your applications. They should be different browsers (ie: one Navigator and the other IE) as CF identifies them is different "clients". Whack a header at the top of your pages (for testing purposes) displaying your applicats client varia

RE: Bizarre Client Variables problem

2001-04-07 Thread Peter Tilbrook
Try appending the CDIF and CFTOKEN to your transactions (eg: URL's, forms, etc) eg: This should ensure that your application can differentiate which client is making the request. You should use this method throughout your app. -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]]

CFOUTPUT question

2001-04-07 Thread William Wheatley
Anyone know a way to use a dynamic variable inside of a CFOUTPUT? #ucase(name)#   I tried using EVALUate() and playing aroudn with a few different ways but its being a pain. =) Thx Bill Wheatley Di

RE: update numeric SubString?

2001-04-07 Thread Michael Caulfield
I would do it this way: UPDATE mytable SET switch = left(switch, 3) + '1' + right(switch , len(switch) -4) WHERE po = 236107 In other words drop the single quotes from everything except the number you're swapping, otherwise, what you'll end up with is a string that literally concatenates your

Re: Weird page timeouts with Oracle

2001-04-07 Thread Wally Randall
Francisco, We had a similar problem. We were running an NT Server with Oracle 7.3. Our US based users had no trouble with timeouts but our users in Paris were experiencing a timeout like you described. This only occured on very large queries with 8-15 tables and several hundred rows returned.

RE: update numeric SubString?

2001-04-07 Thread Adrian Cesana
hmmm, I think I have the syntax correct , here is what Ive tried: UPDATE mytable SET switch = 'left(switch, 3)' + '1' + 'right(switch , len(switch) -4)' WHERE po = '236107' I also tried this which gives me the same results, . UPDATE mytable SET switch = CAST( left( cast(switch AS varch

Re: CFINCLUDE question

2001-04-07 Thread David Hannum
This will be on a dedicated server, so we can do whatever we want. Dave - Original Message - From: Bud <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: Saturday, April 07, 2001 7:09 PM Subject: Re: CFINCLUDE question > On 4/7/01, David Hannum penned: > >Here's one for you fol

RE: update numeric SubString?

2001-04-07 Thread Michael Caulfield
Actually I just tried it from CF on a test table, and it's working fine (i'm using CF5 Beta 1, but I don't think that matters). Maybe there was a slight difference in your syntax? Here's the cf query USE pubs UPDATE tbl SET col =left(col,3) + '0' + right(col, len(col) - 4) pubs

Re: CFINCLUDE question

2001-04-07 Thread Bud
On 4/7/01, David Hannum penned: >Here's one for you folks experienced in virtual hosting. If I have virtual >accounts (dot coms) off of my root directory, can I use CFINCLUDES that are >located in the root directory? If so, how? Just use the path. If the host has Enterprise with Sandbox Securit

Re: Random RPC service is unavailable error

2001-04-07 Thread Wally Randall
I just got this on my NT 4.0 workstation this week when I was trying to map to a network printer and it required my workstation to download the drivers for installation Two factors were related to this problem: 1. Microsoft knowledgebase revealed that there may have been a problem with some dll

Re: CFINCLUDE question

2001-04-07 Thread Paul Smith
You can do it if you're allowed to use CF mappings. best, paul At 05:20 PM 4/7/01 -0400, you wrote: >Here's one for you folks experienced in virtual hosting. If I have virtual >accounts (dot coms) off of my root directory, can I use CFINCLUDES that are >located in the root directory? If so, ho

Re: Oddest Server Error I have seen thus far.

2001-04-07 Thread Roger B .
On Fri, 06 Apr 2001 22:12:30 -0400, "Erik Yowell" <[EMAIL PROTECTED]> wrote: >Help! If anyone >has any answers or possible causes, please email me... I doubt I'll be >sleeping until I get it fixed. :) Erik, That's one of CF's "garbage errors"... it can indicate any number of potential problems,

CFINCLUDE question

2001-04-07 Thread David Hannum
Here's one for you folks experienced in virtual hosting. If I have virtual accounts (dot coms) off of my root directory, can I use CFINCLUDES that are located in the root directory? If so, how? Thanks, Dave ~~ Structure your ColdFusion code wi

RE: update numeric SubString?

2001-04-07 Thread Adrian Cesana
This works perfectly in T-SQL but in CF it makes the field , Ive tried a few different formatting options but they all err out. Any ideas on how to make CF happy with this? Thanks! Adrian -Original Message- From: Michael Caulfield [mailto:[EMAIL PROTECTED]] assuming all rows are at le

RE: CF Server parsing .js files...

2001-04-07 Thread I-Lin Kuo
Don't change your .js files to .cfm files or mess with your server extensions or them. That's not how the browser uses the .js files. If you want to include CF variables in your .js files, do this. In a separate WriteJSOutput.cfm file, process the CF variables, and then use CFFILE to write t

RE: Strategy Question - Site Searches

2001-04-07 Thread Douglas Malcolm
Eric, Verity can handle this. The cf-wacc has a chapter on how to build a search index against a db query, and this can be combined with searches against flat pages. Also cfhub has a great article on managing your indices programatically (http://cfhub.com/tutorials/verity/index.cfm). Assuming

Certified ColdFusion Developer Study Guide

2001-04-07 Thread Kelly
Has anyone picked it up yet? I think I am going to get a copy today. Just wanted to hear your thoughts if you got it. Kelly ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Ar

RE: CF Server parsing .js files...

2001-04-07 Thread ron
> > That's the way we do it... works like a champ. When your stylesheets get > > big, you really should link to them, rather than include them, so that > > browsers can cache them and speed up all your pages. Works for us in > > Netscape, too, vs. Steve's experience in the next post. > > > It's no

Re: Bizarre Client Variables problem

2001-04-07 Thread W Luke
I don't know why it helped - but the server was restarted by my hosters, and everything's working fine again. It suddenly woke up again, and I had no idea the server had been restartedvery weird. Will - Original Message - From: ""Jon Hall"" <[EMAIL PROTECTED]> Newsgroups: dotcom.li

Re: CF-Talk-list V1 #258

2001-04-07 Thread Brian Panulla
Is there a MIME type associated with .js files? You may need to throw a CFCONTENT tag at the beginning of your CFM file to tell the browser that it is definitely a JS file rather than a text or HTML file (which is default for CFM files I believe). The browser shouldn't care about the extension

RE: [HTML Email Detection]

2001-04-07 Thread Seth Ward
You should use multipart email as mentioned, IMS is good for that, this will work on MOST email clients whether plaintext or html. However, if you want to actually detect who can read HTML emails, you need to include an image in the HTML part of the email, that not only points to script on your

Re: Problem generating a query based on a specific date field

2001-04-07 Thread Bud
On 4/7/01, Johnny Boursiquot penned: > > SELECT * FROM Clock WHERE (StaffID = #session.StaffID#) AND >(ClockDate = >Now()) > Try ClockDate = #Now()# -- Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFusion Solutions / eCommerce Development [EMAIL PR

Re: Oddest Server Error I have seen thus far.

2001-04-07 Thread Bud
On 4/6/01, Erik Yowell penned: >CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode Strangely enough I had this one come up on me several weeks ago and it took me 18 hours to figure it out. This may not be the only situation in which it pops up, but I was told to look for a value with an em

Re: Bizarre Client Variables problem

2001-04-07 Thread Jon Hall
I've never seen anything like this...check your login script to make sure it is setting the proper client variables. Check your queries too...Use clientvariablelist() to view what the variables are being set to. Make sure your users are not logging in from the same computer without closing all bro

Re: [HTML Email Detection]

2001-04-07 Thread Howie Hamlin
Yes, our tag does do that. However, it only sends mail through an iMS server and not the CFMail spool. Regards, Howie - Original Message - From: "Jason" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, April 07, 2001 3:46 AM Subject: RE: [HTML Email Detection] >

RE: Oddest Server Error I have seen thus far.

2001-04-07 Thread Angel Stewart
This happens when you have automatic locking turned on in the server settings I believe and some variable or the other isn't locked correctly in the code. I got this when trying to use a custom Calendar control once, and solved the problem by removing the Automatic Locking settings on the server,

RE: Oddest Server Error I have seen thus far.

2001-04-07 Thread James Milks
That almost sounds like a joke...although I'm sure it isn't. How long can a variable name be? James -Original Message- From: Joseph Thompson [mailto:[EMAIL PROTECTED]] Sent: Friday, April 06, 2001 11:02 PM To: CF-Talk Subject: Re: Oddest Server Error I have seen thus far. Check for "va

Bizarre Client Variables problem

2001-04-07 Thread W Luke
Hi, I wrote a page last night, to allow Members to update their Personal Details that are on the DB. As with all the other pages on my site, I make them a) login, then b) query the DB by their login-email (client.email) and c) display information. Instead though, the query is displaying the las

Re: CF Server parsing .js files...

2001-04-07 Thread Freddy
Remember if the js file is included lik this: you have to wrap the include in a: In the preceding instance the src directory is on the root of the site and the site has a coldfusion mapping of dd. Hope that helps. Frederic Dave Hannum