SQL Server 2000 permissions problem

2003-03-31 Thread Kay Smoljak
Hi all, I'm having some wierd kind of permissions problem with our dev box SQL Server that I've never come across before, which makes me wonder if something has changed on the machine to cause it. So either a permanent solution or a temporary work around would be fantastic. This is using CF5. The

cf forum suggestions

2003-03-31 Thread Jas Panesar
Apologize for asking a question that has no doubt been asked before, couldn't find the search button on the houseoffusion.com site. I am presently bringing up a project manager to handle work with developers and clients. One of the requirements is to be able to attach a forum to an entire clie

RE: 'Like' statement for Merant?

2003-03-31 Thread Ian Lurie
Sorry, that was a typo on my part. My code is: WHERE message LIKE '%#form.keyword#%' -Original Message- From: Dina Hess [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 8:43 PM To: CF-Talk Subject: Re: 'Like' statement for Merant? > WHERE message IS LIKE '%#form.keywords#%' IS mi

Re: 'Like' statement for Merant?

2003-03-31 Thread Dina Hess
> WHERE message IS LIKE '%#form.keywords#%' IS might be the problem...change to: WHERE message LIKE '%#form.keyword#%' ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusi

RE: Javascript Guru?

2003-03-31 Thread Gunther Ahamer
just set the checked property of the radio to true. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, 1 April 2003 1:18 PM To: CF-Talk Subject: Javascript Guru? When I have a user the selects a dropdown, I want to use an onClick event handler to dynamica

RE: Javascript Guru? (fixed)

2003-03-31 Thread webmaster
For those who didn't know like myself... onClick="document.checkout.whattype[0].checked = true" Sorry for the premature post! Regards, Eric J. Hoffman DataStream Connexion www.datastreamconnexion.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday,

Javascript Guru?

2003-03-31 Thread webmaster
When I have a user the selects a dropdown, I want to use an onClick event handler to dynamically "select" an associated radio button on the same form. I am familiar with doing so with a text field and values...what would one hit up to make a radio button be selected? Thanks! Regards, Eric J. Hof

RE: NT Permissions & CF

2003-03-31 Thread Matthew Walker
Have you tried selecting ODBC Socket, and creating an ODBC data source? > -Original Message- > From: Sangeeta Karmokar [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 1 April 2003 1:12 p.m. > To: CF-Talk > Subject: NT Permissions & CF > > Matthew I did select the data source from Admin page, b

NT Permissions & CF

2003-03-31 Thread Sangeeta Karmokar
Matthew I did select the data source from Admin page, but when I go to select Drive I cannot see Microsoft Access, i can see SQL Server and others. Sangeeta ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 S

RE: NT Permissions & CF

2003-03-31 Thread Matthew Walker
Not quite sure what you mean, but you need to set up the data source - click Data Sources in CF administrator. > -Original Message- > From: Sangeeta Karmokar [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 1 April 2003 12:03 p.m. > To: CF-Talk > Subject: NT Permissions & CF > > Hi, > > I am t

NT Permissions & CF

2003-03-31 Thread Sangeeta Karmokar
Hi, I am trying to connect to database Access to Coldfusion MX, but I cannot see the DNS name as Microsoft Access in CF Administration. Can anyone help me. I have access 2000. Do I have to something in ODBC? Thanks Sangeeta ~|

Running the dev server

2003-03-31 Thread Parker, Kevin
Can anyone advise if the CF dev server bundled with Studio MX will run on a PC with Win 98 (not SE) and PWS. TIA! ** Kevin Parker Web Services Manager WorkCover Corporation e: [EMAIL PROTECTED] w: www.workcover.com p:+ 61 8 8233 2548 f: +61 8 8233 2282 m: 0418 806 166 ** ***

'Like' statement for Merant?

2003-03-31 Thread Ian Lurie
Hi all, I'm using this code: WHERE message IS LIKE '%#form.keywords#%' in a logfile with the Merant text driver. It's not finding keywords I know are there - does Merant's driver on CF 5 support 'Like'? Ian Portent Interactive An Internet Marketing Agency http://www.portentinteractive.com ht

OT: CF opportunity in NYC

2003-03-31 Thread Ciliotta, Mario
Hi, I know this is not the place but I figured I would just mention that I place a posting on CF-Jobs for a opportunity in New York if anyone is interested. Just not sure if everyone on this list is also on the CF-Jobs list. Thanks Mario This message is for the named person's use only. It ma

RE: Structure Loop

2003-03-31 Thread Simon Horwith
I don't know... It makes sense to me that you'd pass the name of the query you want to loop over ;) ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion MX Developer Certified Flash MX Developer CFDJList - List Administrator Fig Leaf Software 1400 16th St NW, #

Re: security (was: Fusebox circuits)

2003-03-31 Thread Matthew Walker
> way too casually. Can anybody recommend a checklist of best practices for > adequately securing your app? (Matthew answers himself): there is of course this, although it's mostly server settings: http://www.macromedia.com/devnet/security/articles/topten_tips.html The cross-site scripting point i

CFUN-03 tracks and topics

2003-03-31 Thread Michael Smith
Details on the CFUN-03 tracks and topics are below. And the Early Early Bird price of $179 ends today 3/31/03 Act today to save $70 on the regular rate! There are four tracks: * Advanced Topics - for gurus, XML, CFCs, SQL * MX Integration - Flash, Java, .Net, Webservices * Empowered Programming -

RE: Structure Loop

2003-03-31 Thread Raymond Camden
Hmm, isn't query stuff the _only_ stuff that is by name? isDefined is not a real example - since at least to me - it makes sense that you pass in the string since you are checking the _name_ of a variable. (I'm not even going to consider that old beast ParameterExists()) ==

RE: Structure Loop

2003-03-31 Thread Simon Horwith
Actually, I shouldn't have said "name/reference" - more properly I should have said "name/value". ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion MX Developer Certified Flash MX Developer CFDJList - List Administrator Fig Leaf Software 1400 16th St NW, # 2

RE: Structure Loop

2003-03-31 Thread Simon Horwith
Unfortunately, that's just life... Certain tags and functions require that a variable be passed by name (, , isdefined() for example) while others require that they be passed by reference (, , etc.). Remember #ParameterExists()#? Did the same thing as isDefined() only you passed object references

RE: Structure Loop

2003-03-31 Thread Brad Roberts
I've always thought that was strange... -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED] > Sent: Monday, March 31, 2003 4:23 PM > To: CF-Talk > Subject: RE: Structure Loop > > > You forgot the # signs. > > collection="#foo#" > > =

RE: Structure Loop

2003-03-31 Thread Jeff Chastain
Argh Thanks -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 3:23 PM To: CF-Talk Subject: Re: Structure Loop collection="#dGadgetSettings#" ;-) - Original Message - From: "Jeff Chastain" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMA

RE: Structure Loop

2003-03-31 Thread Josh Remus
I do believe that the collection needs to be enclosed in pound signs. IE: Maybe this is it? -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 4:22 PM To: CF-Talk Subject: Structure Loop Before I go chasing ghosts, I want to make sure I am rem

RE: Structure Loop

2003-03-31 Thread Raymond Camden
You forgot the # signs. collection="#foo#" === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email: [EMAIL PROTECTED]

Re: Structure Loop

2003-03-31 Thread Matthew Walker
collection="#dGadgetSettings#" ;-) - Original Message - From: "Jeff Chastain" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, April 01, 2003 9:21 AM Subject: Structure Loop > Before I go chasing ghosts, I want to make sure I am remembering this > correctly. If I hav

Structure Loop

2003-03-31 Thread Jeff Chastain
Before I go chasing ghosts, I want to make sure I am remembering this correctly. If I have the following code and the structure exists - even if it is empty - I should not get an error, right? #HTMLEditFormat(item)# I have done a http://www.houseoffusion.com/cf_lists/index

Re: security (was: Fusebox circuits)

2003-03-31 Thread Matthew Walker
> Not to be overly simplistic, but... > > If your files (web accessible or not) are accessible to FTP, then it would > follow that anyone who can FTP them down (which would reveal datasource > names, etc.), can create a file to do whatever they want (regardless of your > app security) to whatever t

Restart after X Unresponsive Requests (MX)

2003-03-31 Thread Andrew S. Peterson
Hi, Is the ability to Restart after X Unresponsive Requests available in MX? I don't see it in the docs or CFIDE. Thanks in advance. Sincerely, Andrew ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=

Error: Element SQLEXECUTIVE is undefined in REQUEST

2003-03-31 Thread Austin Govella
(Posting this as FYI and so it shows up in the archives.) CFMX was working fine until today when I kept getting datasource errors. Then when I went to datasources in the administrator, I got the following error: Element SQLEXECUTIVE is undefined in REQUEST. The Error Occurred in C:\CFusion

Re: security (was: Fusebox circuits)

2003-03-31 Thread jon hall
This is kind of ironic and not really on topic, but just today, one of my co-workers was browsing a financial planning web site (running Tomcat) and accidentally put an extra slash in the wrong place. Like this http://www.site.com/\content/page.jsp. All of the source code was displayed... -- jon

Re: security (was: Fusebox circuits)

2003-03-31 Thread Calvin Ward
Not to be overly simplistic, but... If your files (web accessible or not) are accessible to FTP, then it would follow that anyone who can FTP them down (which would reveal datasource names, etc.), can create a file to do whatever they want (regardless of your app security) to whatever they want.

RE: CFMX Updater 3 Available

2003-03-31 Thread Dave Watts
> The Access databases are small and simple- not worth taking > up resources on an expensive Oracle server. I would recommend that you reconsider. If you've already got the expensive Oracle server, you might as well use it; I expect you'd find an overall savings on resources. > We've always conn

Re: security (was: Fusebox circuits)

2003-03-31 Thread Matthew Walker
OK good points Raymond and Dave, although I'm not convinced that somebody being able to view my source code would really make it less secure. Is that hopelessly naive? I can answer that myself I guess: why take that risk, right? I can't help thinking that if I should be prepared for somebody with

RE: Fusebox circuits (was: CFCs - get'ers Vs. return object

2003-03-31 Thread Barney Boisvert
I'd recommend doing this: That'll flat out disallow templates other than index.cfm from running, which is what you typically want. It has the nice side effect of preventing you from circumventing the framework as well. However, if you really want to do it right, only put index.cfm in the w

RE: Fusebox circuits (was: CFCs - get'ers Vs. return object

2003-03-31 Thread Dave Watts
> > However, you should only put files in a web-accessible > > directory if you intend for people to be able to fetch > > or run them directly within their browser by entering > > the appropriate URL. If you have files that aren't > > intended to be used that way, they shouldn't be in a > > we

RE: Fusebox circuits (was: CFCs - get'ers Vs. return object

2003-03-31 Thread Raymond Camden
> I simply prefix any file that shouldn't be run directly with > dsp_ or act_ or similar, and add > > > > > > to application.cfm . Tell me why that's less secure. Let's say someone finds a security hole in your web server that allows people to get files under the web root - like the infamou

SOT: Testing bot/crawler

2003-03-31 Thread Ian Lurie
I'm sure this has been asked before but I can't seem to find an answer. I need a tool that'll crawl every link in a site, setting off any ColdFusion errors that might occur in the normal course of browsing. Basically, the tool should simulate a user clicking every link - if an error occurs I ca

Re: Fusebox circuits (was: CFCs - get'ers Vs. return object

2003-03-31 Thread Matthew Walker
> However, you should only put files in a web-accessible directory if you > intend for people to be able to fetch or run them directly within their > browser by entering the appropriate URL. If you have files that aren't > intended to be used that way, they shouldn't be in a web-accessible > direct

Re: Java 1.4.1 CFMXJ2EE for JRun Mac OS X

2003-03-31 Thread Sean A Corfield
On Monday, Mar 31, 2003, at 11:30 US/Pacific, Sean A Corfield wrote: > And as Dick Applebaum pointed out to me offlist, for some bizarre > reason, CFMX still thinks it has the 1.3.1 JVM behind it. As does > BlueDragon running on JRun. Yet I can't find any mention of 1.3.1 > anywhere in either the u

Re: Java 1.4.1 CFMXJ2EE for JRun Mac OS X

2003-03-31 Thread Sean A Corfield
On Sunday, Mar 30, 2003, at 12:19 US/Pacific, Sean A Corfield wrote: > Yup, this does indeed get CFMX / JRun up and running on 1.4.1 on Mac. And as Dick Applebaum pointed out to me offlist, for some bizarre reason, CFMX still thinks it has the 1.3.1 JVM behind it. As does BlueDragon running on J

Re: CF Temp files in \WINNT?

2003-03-31 Thread Jochem van Dieten
Reed Powell wrote: > Hello all - I've noticed that there is a ton (about 300mb worth) of files in > the WINNT directory with names of the format CFI*.tmp. Can these be from > Cold Fusion? This particular system is running CF 4.5. Check the ownership (you are running CF under its own account righ

Re: CFMX Updater 3 Available

2003-03-31 Thread Sean A Corfield
On Monday, Mar 31, 2003, at 10:05 US/Pacific, Ruggiero, Kevin D wrote: > If problems persist I could give the thin drivers a try and see > if that makes a difference. OK, let us know how you get on. > The Access databases are small and simple- not worth taking up > resources on > an expensive Or

RE: CF Temp files in \WINNT?

2003-03-31 Thread Matt Robertson
My CF 4.5 doesn't do that. All I get are jet*.tmp files which I assume are leftovers from the site or two I have still using Access. Matt Robertson [EMAIL PROTECTED] MSB Designs, Inc. http://mysecretbase.com - - - - - - - - - - -

CF Temp files in \WINNT?

2003-03-31 Thread Reed Powell
Hello all - I've noticed that there is a ton (about 300mb worth) of files in the WINNT directory with names of the format CFI*.tmp. Can these be from Cold Fusion? This particular system is running CF 4.5. They go back for a couple of years, and some are just a few days old. I'm going to trash t

RE: CFMX Updater 3 Available

2003-03-31 Thread Ruggiero, Kevin D
> -Original Message- > From: Sean A Corfield [mailto:[EMAIL PROTECTED] > Sent: Sunday, March 30, 2003 3:35 PM > To: CF-Talk > Subject: Re: CFMX Updater 3 Available > > > Databases we connect to are: > > Oracle 8i (8.1.7) on two separate Windows NT servers (connected to > > using > > Oracl

RE: Which Red Hat Linux install with Updater 3

2003-03-31 Thread Barney Boisvert
I've got it running on RH8 (unsupported, I know), and on RH7.2, both with Apache 2.0.44 and haven't had any problems. Updater 3 on both platforms. --- Barney Boisvert, Senior Development Engineer AudienceCentral (formerly PIER System, Inc.) [EMAIL PROTECTED] voice : 360.756.8080 x12 fax : 360.6

RE: DevCon 2003

2003-03-31 Thread Alexander Sherwood
At 10:10 AM 3/31/2003 -0600, you wrote: >Just out of curiosity, Kevin, what is your ethnicity, and religious >faith, if I may ask? > >As for Bryan's Comments: >I agree with Adam and Dave, that this list should not be subject to >Fantasyland, Tree-huggin communist views. I'm sure Mike D could set u

RE: CFCs - get'ers Vs. return object

2003-03-31 Thread Raymond Camden
However, if you don't put a RDS password up (which would be horrible in itself), a person can browse the descriptor of your CFC files. Just a reminder. ;) === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mind

CFCs - get'ers Vs. return object

2003-03-31 Thread Brad Howerter
I just put all the CFC's in a web accessible directory and then don't put 'access="remote"' on them if I don't want them to truly be accessible. >> Don't you want CFC's in a web accessible dir if you want to >> use them for web services? Or is that like a clueless newbie question? > >That's actu

RE: DevCon 2003

2003-03-31 Thread Russ
For the love of , can you please take this stuff off-list? Thank you. > Just out of curiosity, Kevin, what is your ethnicity, and religious > faith, if I may ask? > > As for Bryan's Comments: > I agree with Adam and Dave, that this list should not be subject to > Fantasyland, Tree-huggin communi

RE: DevCon 2003

2003-03-31 Thread Igor Ilyinsky
Just out of curiosity, Kevin, what is your ethnicity, and religious faith, if I may ask? As for Bryan's Comments: I agree with Adam and Dave, that this list should not be subject to Fantasyland, Tree-huggin communist views. I'm sure Mike D could set up "[EMAIL PROTECTED]" for you. Lastly, Karl Ma

Re: I've made two papers available

2003-03-31 Thread Bryan Stevenson
Thanks Simon 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: I've made two papers available

2003-03-31 Thread Sean A Corfield
Thanx! I'll have a read of the docs and then probably blog them! On Monday, Mar 31, 2003, at 07:20 US/Pacific, Simon Horwith wrote: > Sean, > Both papers are now posted in pdf format rather than Word format... > zip > files contain the pdf files, too. Thanks to Kevin Graeme for > converting t

NT Permissions & CF

2003-03-31 Thread Robert Shaw
Hi, I'm setting up NT Security with CF and would like to have regular users be able to access the ColdFusion Administrator, not just Windows NT Administrators - what steps do I take? I've followed these articles: http://www.macromedia.com/v1/handlers/index.cfm?ID=23734 http://www.macromedia.com/s

RE: Bean Class File caching

2003-03-31 Thread John McCosker
Ah right, I have done this everytime I have made any changes to class paths or even when I added files within the specified classes directories. Thanx for the URL. -Original Message- From: webguy [mailto:[EMAIL PROTECTED] Sent: 31 March 2003 16:47 To: CF-Talk Subject: RE: Bean Class File

RE: I've made two papers available

2003-03-31 Thread Simon Horwith
go to http://www.how2cf.com - there are two papers listed on that homepage. ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion MX Developer Certified Flash MX Developer CFDJList - List Administrator Fig Leaf Software 1400 16th St NW, # 220 Washington DC 20036

Error with JDBC bridge Driver

2003-03-31 Thread John McCosker
Technically I know this is a java question, but hey thought I'd throw it out here, I have a jsp file that is calling a bean to connect to MS SQL 2000, <% out.print(select.connect()); %> <% out.print(select.select()); %> Format results <%@ page import="java.util.Vector" %> <% Vector aResult

RE: Bean Class File caching

2003-03-31 Thread webguy
Recycle = Restart You chould use charlies script to recomplile everything to.. http://cfmxplus.blogspot.com/ WG -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED] Sent: 31 March 2003 16:29 To: CF-Talk Subject: RE: Bean Class File caching Sean what exactly do you mean by

Re: I've made two papers available

2003-03-31 Thread Bryan Stevenson
URL?? 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 ---

THANKS Re: AyyayAppend usage

2003-03-31 Thread Terry Troxel
Thanks to ALL of you who ALL gave me the correct answer. Now if only I could get vertical grid lines to appear in CFCHART. - Original Message - From: "Tony Weeg" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, March 30, 2003 6:59 PM Subject: RE: AyyayAppend usage >

RE: Bean Class File caching

2003-03-31 Thread John McCosker
Sean what exactly do you mean by cycle CFMX. -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED] Sent: 31 March 2003 16:12 To: CF-Talk Subject: Re: Bean Class File caching You probably need to cycle CFMX to get it to pick up the new class file. On Monday, Mar 31, 2003, at

Oracle 9iAS

2003-03-31 Thread Michael Hoffman
Hello I am having trouble connecting a CF page to a session bean deployed in Oracle 9iAS. I have CFMX running on 1 machine and the bean deployed in 9iAS on another machine so it is a remote call. Here is my code and here is my error. The 1099 port doesn't make any sense cause the rmi port is

RE: Remote Server Operations Failuer

2003-03-31 Thread Dave Watts
> What would cause this message with an HTTP Error: 404 to > start appearing when I am trying to use RDS? Windows 2000, > IIS 5, CF 5. The only thing I can think of offhand is this: if you've configured IIS to check for .cfm files' existence before running them, RDS won't work in CF 5, because t

RE: Fusebox circuits (was: CFCs - get'ers Vs. return object

2003-03-31 Thread Dave Watts
> > > If you do store application settings in xml they really > > > should be stored in a .cfm template so that the CF Server > > > will protect the data from someone attempting to get at > > > it from typing a URL into their browser, > > > > Why not put it outside the webroot? > > Lots of dev

RE: I've made two papers available

2003-03-31 Thread Simon Horwith
Sean, Both papers are now posted in pdf format rather than Word format... zip files contain the pdf files, too. Thanks to Kevin Graeme for converting the Word docs. ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion MX Developer Certified Flash MX Developer CF

Re: Bean Class File caching

2003-03-31 Thread Sean A Corfield
You probably need to cycle CFMX to get it to pick up the new class file. On Monday, Mar 31, 2003, at 03:32 US/Pacific, John McCosker wrote: > Greetings, > > I'm having problems here with a bean caching, > I was getting errors connecting to MS SQL server with the JDBC Bridge > Driver > I was usin

RE: I've made two papers available

2003-03-31 Thread Kevin Graeme
Whoops. My email was intended to go directly to you. I've sent it again and hopefully it works out this time. -Kevin > -Original Message- > From: Simon Horwith [mailto:[EMAIL PROTECTED] > Sent: Monday, March 31, 2003 8:36 AM > To: CF-Talk > Subject: RE: I've made two papers available > >

RE: I've made two papers available

2003-03-31 Thread Simon Horwith
thanks Kevin, I'll post them if you want to e-mail them to me... if not, I'm sure I'll get around to converting them on my own at some point. ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion MX Developer Certified Flash MX Developer CFDJList - List Administrat

RE: I've made two papers available

2003-03-31 Thread Simon Horwith
close - glasshaus. FoE, glasshaus, and WROX are all owned by the same company... all are fini. ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion MX Developer Certified Flash MX Developer CFDJList - List Administrator Fig Leaf Software 1400 16th St NW, # 220 W

RE: I've made two papers available

2003-03-31 Thread Haggerty, Mike
Friends of Ed, perhaps? M -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED] Sent: Sunday, March 30, 2003 11:48 PM To: CF-Talk Subject: RE: I've made two papers available Do keep in mind that I wrote these papers as chapters to a book - the publisher went under and I neve

Re: DevCon 2003

2003-03-31 Thread Alexander Sherwood
At 10:08 AM 3/30/2003 -0700, you wrote: You run a chance of not having decent snow in Nov. in Salt Lake. I think its a HUGE mistake to have it in Salt Lake. For one, not every one skis, and unless you want to bring your ski equipment with you, the cost of enjoying "other" events at the venue (

RE: I've made two papers available

2003-03-31 Thread Kevin Graeme
Simon, As thanks for making the papers freely available, I've gone ahead and converted them to PDF for you. Cheers, -Kevin > -Original Message- > From: Simon Horwith [mailto:[EMAIL PROTECTED] > Sent: Sunday, March 30, 2003 10:48 PM > To: CF-Talk > Subject: RE: I've made two papers availa

Bean Class File caching

2003-03-31 Thread John McCosker
Greetings, I'm having problems here with a bean caching, I was getting errors connecting to MS SQL server with the JDBC Bridge Driver I was using, So I have put in some code to check before and after the JDBC driver is being called for debugging purposes to connect to MS SQL, the recompiled bean

RE: AyyayAppend usage

2003-03-31 Thread Philip Arnold
> How do I stop ArrayAppend(array, value) from returning a > Boolean value ie: "YES" to the page? As well as using , you could always do it in CFSCRIPT, then you get zero white-space (around the code that's in it) ~| Archives: h

Re: Which Red Hat Linux install with Updater 3

2003-03-31 Thread Stephen Moretti
Running CFMX U3 on Redhat 7.2 with Apache 1.3.x with no problems. > > Have you tried the CF-Linux list? I haven't installed U3 yet, but am > running U2 on redhat 7.2 without any problems... > > > > > We are just about to configure three new servers. Anyone got > > thoughts on which version o

Re: white space

2003-03-31 Thread Jochem van Dieten
S. Isaac Dealey wrote: > > You were recommending using before the doctype declaration to > eliminate white space before the beginning of the content. Doesn't that > preclude using further down the page to deliver another kind of > file or document like a zip archive? No. Jochem ~~