Re: Errors on pushFile code block with search engine bots.

2004-10-09 Thread Nando
Dave, I'd need something like this in robots.txt  ... Disallow: *?*file=* Everything's dynamic, so i don't know the url's in advance. And i don't think that would work somehow. But your post gave me an idea ... maybe i could try to push a don't follow / don't index header up with the other cfco

Access type mismatch killing me - and also this website

2004-10-09 Thread stylo stylo
Ok, this is killing me. Acess db query fails if w2 has a decimal place. Works if an integer. SELECT  #ShipZonesCAUPS.Day3# AS d3, #ShipZonesCAUPS.Standard# AS st, weight FROM ShipCanUS WHERE (Weight >= #w2#) cfqueryparam shows a type mismatch using type float or numeric (not sure whic

Hot fix and J2EE session cookies: MM Please read

2004-10-09 Thread Bud
Hi all. I've been so busy and whacked out by all these hurricanes lately that I unsubscribed for awhile. Now I need your help or at least get this message to MM. A hot fix just came out on 10/7 I believe. It will update the Server.ColdFusion.ProductVersion to: 6,1,0,83762 This hot fix just br

Re: Errors on pushFile code block with search engine bots.

2004-10-09 Thread Nando
Does anyone know if this would work the same as this? I don't really understand the theory or background behind cfheader tags, and there's little documentation to go by. thanks, Nando On Sat, 9 Oct 2004 13:10:38 +0200, Nando <[EMAIL PROTECTED]> wrote: > Dave, > > I'd need something like this

Re: Access type mismatch killing me - and also this website

2004-10-09 Thread stylo stylo
>> WHERE (Weight >= #w2#) To clarify further, weight in the db column has even numbers. I'm getting 0 records returned if w2 has a decimal. 35.1 SHOULD return the values corresponding to 36 (as the single row >=35.1), but returns nothing for some reason. [Todays Threads] [This Message] [Sub

Re: Access type mismatch killing me - and also this website

2004-10-09 Thread stylo stylo
My last post clued me in. Somehow the weight column settings were changed on the one column. Who'd a thunk it? Ignore me. -Unless you can answer about the site login issue. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Expert Coder List Needed

2004-10-09 Thread Orlando . Correa
I appologize for posting this message here, but I'm looking for an expert Flash developers list.  I can't seem to get to flash coders at chattyfig.figleaf.com anymore.  You can contact me directly if you like. Thanks Orlando [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: CFMX 61 - J2EE Configuration

2004-10-09 Thread Michael Traher
looks useful - can it be adapted to other driver types? To other database types I mean. On Fri, 8 Oct 2004 12:37:28 +0100, Greg Stewart <[EMAIL PROTECTED]> wrote: > Here's a little snippet that I used to determine the version of drivers: > > > jdbcDriver = CreateObject("java", > "macromedia.jdbc

RE: CFMX 61 - J2EE Configuration

2004-10-09 Thread Dave Watts
> > > > jdbcDriver = CreateObject("java", > > "macromedia.jdbc.sqlserver.SQLServerDriver"); > > writeoutput(jdbcDriver.getMajorVersion() & "." & > > jdbcDriver.getMinorVersion()); > > looks useful - can it be adapted to other driver types? To > other database types I mean. I haven't tested it

RE: Expert Coder List Needed

2004-10-09 Thread Dave Watts
> I appologize for posting this message here, but I'm looking > for an expert Flash developers list.  I can't seem to get to > flash coders at chattyfig.figleaf.com anymore.  You can > contact me directly if you like. The list server was shut down this morning temporarily, because our building

Why does this function not return a variable of Type Query

2004-10-09 Thread Andy Ousterhout
Why does this: returnvariable="qryPostalCodes"/> #IsQuery("qryPostalCodes")# Where: returntype="query" displayname="Returns state list">        dbtype="ODBC" username="#instance.settings.DBRead.ID#" password="#instance.settings.DBRead.PW#" >     SELECT  State     FROM  tabZipCodes     GROUP

Re: Why does this function not return a variable of Type Query

2004-10-09 Thread Josh
Well,  the method you are calling is getPostalCodes and the name of the cffunction is getStates...seems like there is a mismatch in the code. Hope that helps. -Josh -- Exciteworks, Inc Expert Hosting for less! *Ask for a free 30 day trial!* http://exciteworks.com Plans starting at -$12.95- inc

RE: Why does this function not return a variable of Type Query

2004-10-09 Thread Andy Ousterhout
Sorry, just pulled the wrong component.  I've got the same thing for state. Rename the call and repeat.  Same problem.   -Original Message-   From: Josh [mailto:[EMAIL PROTECTED]   Sent: Saturday, October 09, 2004 6:08 PM   To: CF-Talk   Subject: Re: Why does this function not return a vari

RE: SQL stored procedure question

2004-10-09 Thread Joe Eugene
"I'd suggest sticking with cfquery for now.  SQL Server is going to better (faster,more stable) than Access even if you don't use stored procedures for everything." I would have to disagree, MS SQL Server has its limitations in Programming Stored Procedures but the things you point out can easily

Re: Why does this function not return a variable of Type Query

2004-10-09 Thread Dave Carabetta
On Sat, 9 Oct 2004 17:36:29 -0500, Andy Ousterhout <[EMAIL PROTECTED]> wrote: > Why does this: > > > returnvariable="qryPostalCodes"/> > #IsQuery("qryPostalCodes")# > Get rid of the quotes in the isQuery() function. You're asking the function to check the string "qryPostalCodes" instead of a po

Re: CFMX6.1 host that also supports JSP and Servlets and/or Java Beans?

2004-10-09 Thread Orlando . Correa
Thanks!  I'll check them out.  Have you seen any Windows platform hosts with the JSP offerings?  o > http://www.smarterlinux.com/ > > On Thu, 07 Oct 2004 14:08:32 -0400, Orlando. Correa @ mail. ihs. gov > Orlando. Correa @ mail. ihs. gov <[EMAIL PROTECTED]> wrote: > > Does anyone know of a good C

Re: Why does this function not return a variable of Type Query

2004-10-09 Thread Josh
Does it have anything to do with the fact that you are setting the query to the application scope, but not using the application scope in the isQuery function? -- Exciteworks, Inc Expert Hosting for less! *Ask for a free 30 day trial!* http://exciteworks.com Plans starting at -$12.95- including

RE: Why does this function not return a variable of Type Query

2004-10-09 Thread Andy Ousterhout
Yup, that's got it.  Stupid error.  Thanks.   -Original Message-   From: Dave Carabetta [mailto:[EMAIL PROTECTED]   Sent: Saturday, October 09, 2004 8:16 PM   To: CF-Talk   Subject: Re: Why does this function not return a variable of Type Query   On Sat, 9 Oct 2004 17:36:29 -0500, Andy Ous

Re: CFMX6.1 host that also supports JSP and Servlets and/or Java Beans?

2004-10-09 Thread Sean Corfield
On Sat, 09 Oct 2004 21:34:40 -0400, Orlando. Correa @ mail. ihs. gov Orlando. Correa @ mail. ihs. gov <[EMAIL PROTECTED]> wrote: > Thanks!  I'll check them out.  Have you seen any Windows platform hosts with the JSP offerings?  o Why would you want to host on Windows? (Sorry, I tried really hard

Re: CFMX6.1 host that also supports JSP and Servlets and/or Java Beans?

2004-10-09 Thread dave
LOL! Amen to that! ;) -- Original Message -- From: Sean Corfield <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date:  Sat, 9 Oct 2004 21:33:42 -0700 >On Sat, 09 Oct 2004 21:34:40 -0400, Orlando. Correa @ mail. ihs. gov >Orlando. Correa @ mail. ihs. gov <[

An extremely disturbing CF bug

2004-10-09 Thread Brian Meloche
I have just run across a very strange bug, one that I have never seen before. http://www.clevelandmmug.org/index.cfm?dsp=Meetings Do a View Source... How is it possible that I can see my CF code in the View Source?  I thought that was impossible. This server is running CFMX 6.1 on a Linux envir